diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-01-29 00:48:50 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-01-29 00:48:50 +0100 |
commit | bf9a8d183ddcc65b5ae473bb048a3d38bd6df9f3 (patch) | |
tree | 167912dca18929bd66280c742e9b36f5088267fb /libavformat/riff.c | |
parent | 862174ec831d5fb01c44e8e3f7d3cd28002329bf (diff) | |
download | ffmpeg-bf9a8d183ddcc65b5ae473bb048a3d38bd6df9f3.tar.gz |
Support writing E-AC3 in wav.
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 671baa6138..5e01be7cf4 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -413,6 +413,8 @@ const AVCodecTag ff_codec_wav_tags[] = { { AV_CODEC_ID_AAC, 0x1600 }, { AV_CODEC_ID_AAC_LATM, 0x1602 }, { AV_CODEC_ID_AC3, 0x2000 }, + /* There is no Microsoft Format Tag for E-AC3, the GUID has to be used */ + { AV_CODEC_ID_EAC3, 0x2000 }, { AV_CODEC_ID_DTS, 0x2001 }, { AV_CODEC_ID_SONIC, 0x2048 }, { AV_CODEC_ID_SONIC_LS, 0x2048 }, |