diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-24 21:21:50 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-24 21:21:50 +0100 |
commit | d0802926511602cadf954ec8461cb2451ecb7f01 (patch) | |
tree | e90fa2fddb10943cf3cc10f2295721c4d9399786 | |
parent | 807fa714f05c584ac027c36841315cea98f329d3 (diff) | |
download | ffmpeg-d0802926511602cadf954ec8461cb2451ecb7f01.tar.gz |
Support u8 in aiff.
Fixes ticket #1960.
Reviewed-by; Paul B Mahol
-rw-r--r-- | libavformat/aiff.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/aiff.h b/libavformat/aiff.h index 6ece0e0ce3..bd428029c0 100644 --- a/libavformat/aiff.h +++ b/libavformat/aiff.h @@ -33,6 +33,7 @@ static const AVCodecTag ff_codec_aiff_tags[] = { { AV_CODEC_ID_PCM_S16BE, MKTAG('N','O','N','E') }, { AV_CODEC_ID_PCM_S8, MKTAG('N','O','N','E') }, + { AV_CODEC_ID_PCM_U8, MKTAG('r','a','w',' ') }, { AV_CODEC_ID_PCM_S24BE, MKTAG('N','O','N','E') }, { AV_CODEC_ID_PCM_S32BE, MKTAG('N','O','N','E') }, { AV_CODEC_ID_PCM_F32BE, MKTAG('f','l','3','2') }, |