From 2433f24f60bc4087907fee57b3b1a8f04b2b37b2 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Thu, 16 Feb 2006 00:09:23 +0000 Subject: add Creative 8 bits ADPCM schemes support Originally committed as revision 5024 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/voc.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavformat/voc.c') diff --git a/libavformat/voc.c b/libavformat/voc.c index 712f71a725..7fb8550071 100644 --- a/libavformat/voc.c +++ b/libavformat/voc.c @@ -41,6 +41,9 @@ static const unsigned char voc_magic[] = "Creative Voice File\x1A"; static const CodecTag voc_codec_tags[] = { {CODEC_ID_PCM_U8, 0x00}, + {CODEC_ID_ADPCM_SBPRO_4, 0x01}, + {CODEC_ID_ADPCM_SBPRO_3, 0x02}, + {CODEC_ID_ADPCM_SBPRO_2, 0x03}, {CODEC_ID_PCM_S16LE, 0x04}, {CODEC_ID_PCM_ALAW, 0x06}, {CODEC_ID_PCM_MULAW, 0x07}, -- cgit v1.2.3