mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-30 00:17:44 +00:00
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:
parent
649b918c9f
commit
c64d476ccd
3 changed files with 9 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue