diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2014-10-07 14:57:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-10 19:07:08 +0200 |
commit | 5e6fd132ff5611b8af2d3c7506f0328858fc3de1 (patch) | |
tree | 0635703af2c109524bec4a6c8b0bd3430a9eb971 /libavformat/isom.c | |
parent | 5402d1bce5ee03e441fd314d516d0c0fda30bdfd (diff) | |
download | ffmpeg-5e6fd132ff5611b8af2d3c7506f0328858fc3de1.tar.gz |
avformat/movenc: add EAC3 muxing support.
Support only one independent substream right now, and only syncframes
containing 6 blocks.
Fixes part of ticket #3074
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index d768c32b63..150902198b 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -57,6 +57,7 @@ const AVCodecTag ff_mp4_obj_type[] = { { AV_CODEC_ID_VC1 , 0xA3 }, { AV_CODEC_ID_DIRAC , 0xA4 }, { AV_CODEC_ID_AC3 , 0xA5 }, + { AV_CODEC_ID_EAC3 , 0xA6 }, { AV_CODEC_ID_DTS , 0xA9 }, /* mp4ra.org */ { AV_CODEC_ID_VORBIS , 0xDD }, /* non standard, gpac uses it */ { AV_CODEC_ID_DVD_SUBTITLE, 0xE0 }, /* non standard, see unsupported-embedded-subs-2.mp4 */ |