From d0802926511602cadf954ec8461cb2451ecb7f01 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 24 Nov 2012 21:21:50 +0100 Subject: [PATCH] Support u8 in aiff. Fixes ticket #1960. Reviewed-by; Paul B Mahol --- libavformat/aiff.h | 1 + 1 file changed, 1 insertion(+) 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') },