Mercurial > libavformat.hg
changeset 2980:672d72727b20 libavformat
finally set codec tags for mov/mp4/3gp muxers, this should not break anything, if it breaks anything, yell
author | bcoudurier |
---|---|
date | Mon, 28 Jan 2008 16:03:50 +0000 |
parents | 1bc4c9ca1b04 |
children | 3c0b2165d82c |
files | movenc.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/movenc.c Mon Jan 28 15:23:37 2008 +0000 +++ b/movenc.c Mon Jan 28 16:03:50 2008 +0000 @@ -1634,6 +1634,7 @@ mov_write_packet, mov_write_trailer, .flags = AVFMT_GLOBALHEADER, + .codec_tag = (const AVCodecTag*[]){codec_movvideo_tags, codec_movaudio_tags, 0}, }; #endif #ifdef CONFIG_TGP_MUXER @@ -1649,6 +1650,7 @@ mov_write_packet, mov_write_trailer, .flags = AVFMT_GLOBALHEADER, + .codec_tag = (const AVCodecTag*[]){codec_3gp_tags, 0}, }; #endif #ifdef CONFIG_MP4_MUXER @@ -1664,6 +1666,7 @@ mov_write_packet, mov_write_trailer, .flags = AVFMT_GLOBALHEADER, + .codec_tag = (const AVCodecTag*[]){ff_mp4_obj_type, 0}, }; #endif #ifdef CONFIG_PSP_MUXER @@ -1679,6 +1682,7 @@ mov_write_packet, mov_write_trailer, .flags = AVFMT_GLOBALHEADER, + .codec_tag = (const AVCodecTag*[]){ff_mp4_obj_type, 0}, }; #endif #ifdef CONFIG_TG2_MUXER @@ -1694,5 +1698,6 @@ mov_write_packet, mov_write_trailer, .flags = AVFMT_GLOBALHEADER, + .codec_tag = (const AVCodecTag*[]){codec_3gp_tags, 0}, }; #endif