diff movenc.c @ 715:e214703e4b76 libavformat

30_clean_up_global_header_flag.patch by (Calcium | calcium nurs or jp)
author michael
date Wed, 23 Mar 2005 12:52:24 +0000
parents 03157dc4ac6f
children e7f1b5842878
line wrap: on
line diff
--- a/movenc.c	Wed Mar 23 12:42:12 2005 +0000
+++ b/movenc.c	Wed Mar 23 12:52:24 2005 +0000
@@ -1497,6 +1497,7 @@
     mov_write_header,
     mov_write_packet,
     mov_write_trailer,
+    .flags = AVFMT_GLOBALHEADER,
 };
 
 static AVOutputFormat _3gp_oformat = {
@@ -1510,6 +1511,7 @@
     mov_write_header,
     mov_write_packet,
     mov_write_trailer,
+    .flags = AVFMT_GLOBALHEADER,
 };
 
 static AVOutputFormat mp4_oformat = {
@@ -1523,6 +1525,7 @@
     mov_write_header,
     mov_write_packet,
     mov_write_trailer,
+    .flags = AVFMT_GLOBALHEADER,
 };
 
 static AVOutputFormat psp_oformat = {
@@ -1536,6 +1539,7 @@
     mov_write_header,
     mov_write_packet,
     mov_write_trailer,
+    .flags = AVFMT_GLOBALHEADER,
 };
 
 static AVOutputFormat _3g2_oformat = {
@@ -1549,6 +1553,7 @@
     mov_write_header,
     mov_write_packet,
     mov_write_trailer,
+    .flags = AVFMT_GLOBALHEADER,
 };
 
 int movenc_init(void)