repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r609: Make it compile with xorg
[cinelerra_cv/mob.git]
/
quicktime
/
dump.c
blob
09e84e6ff5850c1f6779f3840f29e3f4484cab60
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
}