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
r1007: Make configure detect and work on amd64.
[cinelerra_cv/mob.git]
/
quicktime
/
make_streamable.c
blob
0b47c0104b15b235961e3fbf1602e64936175878
1
#include
"quicktime.h"
2
3
int
main
(
int
argc
,
char
*
argv
[])
4
{
5
int
i
;
6
if
(
argc
<
3
||
argv
[
1
][
0
] ==
'-'
)
7
{
8
printf
(
"usage: %s <in filename> <out filename>
\n
"
,
argv
[
0
]);
9
exit
(
1
);
10
}
11
12
if
(
quicktime_make_streamable
(
argv
[
1
],
argv
[
2
]))
13
exit
(
1
);
14
15
return
0
;
16
}