aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorCalcium <calcium@nurs.or.jp>2005-03-23 12:52:24 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-03-23 12:52:24 +0000
commitc64d476ccde1682728e693c750bcc96129defd0c (patch)
tree2a7e13bd256927d1ad71c541ce2c0792a3bcd86d /libavformat/movenc.c
parent649b918c9f0ad4699ae756a9deace5806c6d683c (diff)
downloadffmpeg-c64d476ccde1682728e693c750bcc96129defd0c.tar.gz
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
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index ed9700fcdd..e7b66cdee2 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -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)