30_clean_up_global_header_flag.patch by (Calcium | calcium nurs or jp)

Originally committed as revision 4072 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Calcium 2005-03-23 12:52:24 +00:00 committed by Michael Niedermayer
parent 649b918c9f
commit c64d476ccd
3 changed files with 9 additions and 3 deletions

View file

@ -1497,6 +1497,7 @@ static AVOutputFormat mov_oformat = {
mov_write_header,
mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
};
static AVOutputFormat _3gp_oformat = {
@ -1510,6 +1511,7 @@ static AVOutputFormat _3gp_oformat = {
mov_write_header,
mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
};
static AVOutputFormat mp4_oformat = {
@ -1523,6 +1525,7 @@ static AVOutputFormat mp4_oformat = {
mov_write_header,
mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
};
static AVOutputFormat psp_oformat = {
@ -1536,6 +1539,7 @@ static AVOutputFormat psp_oformat = {
mov_write_header,
mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
};
static AVOutputFormat _3g2_oformat = {
@ -1549,6 +1553,7 @@ static AVOutputFormat _3g2_oformat = {
mov_write_header,
mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
};
int movenc_init(void)