diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-02-16 00:09:23 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-02-16 00:09:23 +0000 |
commit | 2433f24f60bc4087907fee57b3b1a8f04b2b37b2 (patch) | |
tree | d938e0d3d7a8f76f70cb71815e525680c696ed08 /libavformat/voc.c | |
parent | dcadd216f116b6a4b83d41c0cfe36b3986daae15 (diff) | |
download | ffmpeg-2433f24f60bc4087907fee57b3b1a8f04b2b37b2.tar.gz |
add Creative 8 bits ADPCM schemes support
Originally committed as revision 5024 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/voc.c')
-rw-r--r-- | libavformat/voc.c | 3 |
1 files changed, 3 insertions, 0 deletions
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}, |