diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-10-18 19:53:47 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-10-18 19:53:47 +0200 |
commit | 9860fb445a90fdfbeaa6e66e813eae3031236ad0 (patch) | |
tree | 90288e9d6136961b19652f9933377f72e62de250 /libavformat/aiff.h | |
parent | 6e65e3483706d969d176909fae9e216919f59277 (diff) | |
download | ffmpeg-9860fb445a90fdfbeaa6e66e813eae3031236ad0.tar.gz |
Fix decoding of G.726 in AIFF.
Fixes ticket #1973.
Diffstat (limited to 'libavformat/aiff.h')
-rw-r--r-- | libavformat/aiff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aiff.h b/libavformat/aiff.h index c13bcc065d..4470254022 100644 --- a/libavformat/aiff.h +++ b/libavformat/aiff.h @@ -46,7 +46,7 @@ static const AVCodecTag ff_codec_aiff_tags[] = { { AV_CODEC_ID_MACE6, MKTAG('M','A','C','6') }, { AV_CODEC_ID_GSM, MKTAG('G','S','M',' ') }, { AV_CODEC_ID_ADPCM_G722, MKTAG('G','7','2','2') }, - { AV_CODEC_ID_ADPCM_G726, MKTAG('G','7','2','6') }, + { AV_CODEC_ID_ADPCM_G726LE, MKTAG('G','7','2','6') }, { AV_CODEC_ID_PCM_S16BE, MKTAG('t','w','o','s') }, { AV_CODEC_ID_PCM_S16LE, MKTAG('s','o','w','t') }, { AV_CODEC_ID_ADPCM_IMA_QT, MKTAG('i','m','a','4') }, |