allow ffmpeg video to resample curr_pos, add bluray format
[goodguy/history.git] / cinelerra-5.0 / quicktime / dump.c
1 #include "quicktime.h"
2
3
4
5
6
7
8
9 main(int argc, char *argv[])
10 {
11         quicktime_t *file;
12         int result = 0;
13         
14         if(argc < 2)
15         {
16                 printf("Dump all tables in movie.\n");
17                 exit(1);
18         }
19
20         if(!(file = quicktime_open(argv[1], 1, 0)))
21         {
22                 printf("Open failed\n");
23                 exit(1);
24         }
25
26         quicktime_dump(file);
27
28         quicktime_close(file);
29 }