diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2011-05-03 17:22:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 22:52:55 +0200 |
commit | 1a7090bfafe986d4470ba8059c815939171ddb74 (patch) | |
tree | a806f1a8fc384eb8c99a9c6414ea0311bf8e4984 | |
parent | a0a4b1332281d37c1e940984d6b6bd5d42f965e6 (diff) | |
download | ffmpeg-1a7090bfafe986d4470ba8059c815939171ddb74.tar.gz |
mov: support eac3 audio
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 782b1396f3..1060c89cab 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -256,6 +256,7 @@ const AVCodecTag codec_movaudio_tags[] = { { CODEC_ID_AC3, MKTAG('s', 'a', 'c', '3') }, /* Nero Recode */ { CODEC_ID_DTS, MKTAG('d', 't', 's', 'c') }, /* mp4ra.org */ { CODEC_ID_DTS, MKTAG('D', 'T', 'S', ' ') }, /* non-standard */ + { CODEC_ID_EAC3, MKTAG('e', 'c', '-', '3') }, /* E-AC3 */ { CODEC_ID_AMR_NB, MKTAG('s', 'a', 'm', 'r') }, /* AMR-NB 3gp */ { CODEC_ID_AMR_WB, MKTAG('s', 'a', 'w', 'b') }, /* AMR-WB 3gp */ |