diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2016-04-27 20:32:04 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-04-28 00:01:35 +0200 |
commit | 55e6323090610c5bb5faf29a32bc023c588ec598 (patch) | |
tree | f9c63c24a1fd70057e7039dbec4bf50a69ff4754 /libavformat | |
parent | c4312b1cf44bda8c8e86a4616554a27b67f244e2 (diff) | |
download | ffmpeg-streaming-55e6323090610c5bb5faf29a32bc023c588ec598.zip ffmpeg-streaming-55e6323090610c5bb5faf29a32bc023c588ec598.tar.gz |
avformat/riff: assign g721 and g723 codec tags to g726 decoder
Diffstat (limited to 'libavformat')
-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 5150f4d..5bc8491 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -444,6 +444,8 @@ const AVCodecTag ff_codec_wav_tags[] = { { AV_CODEC_ID_AMR_NB, 0x0038 }, /* rogue format number */ { AV_CODEC_ID_G723_1, 0x0042 }, { AV_CODEC_ID_ADPCM_G726, 0x0045 }, + { AV_CODEC_ID_ADPCM_G726, 0x0014 }, + { AV_CODEC_ID_ADPCM_G726, 0x0040 }, { AV_CODEC_ID_MP2, 0x0050 }, { AV_CODEC_ID_MP3, 0x0055 }, { AV_CODEC_ID_AMR_NB, 0x0057 }, |