From 5da714699d6e16f3a915fbe2cef9f5e9d8d77172 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Fri, 7 Jul 2006 22:42:36 +0000 Subject: simplify the voc demuxer using av_get_bits_per_sample() Originally committed as revision 5663 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/voc.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'libavformat/voc.c') diff --git a/libavformat/voc.c b/libavformat/voc.c index 7fb8550071..00eeac4e32 100644 --- a/libavformat/voc.c +++ b/libavformat/voc.c @@ -93,18 +93,6 @@ static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap) return 0; } -static int voc_get_bps(int codec_id) -{ - switch (codec_id) { - case CODEC_ID_PCM_S16LE: - return 16; - case CODEC_ID_ADPCM_CT: - return 4; - default: - return 8; - } -} - int voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size) { @@ -130,7 +118,7 @@ voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size) dec->sample_rate = sample_rate; dec->channels = channels; dec->codec_id = codec_get_id(voc_codec_tags, get_byte(pb)); - dec->bits_per_sample = voc_get_bps(dec->codec_id); + dec->bits_per_sample = av_get_bits_per_sample(dec->codec_id); voc->remaining_size -= 2; max_size -= 2; channels = 1; -- cgit v1.2.3