From 74d7ac95fbf4913406a81f85e2f020867e771b0e Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sat, 17 Mar 2012 14:07:20 -0700 Subject: adpcm: convert adpcm_ima_apc to bytestream2. --- libavcodec/adpcm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/adpcm.c') diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 16044d882e..90caf6563a 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -802,8 +802,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data, } break; case CODEC_ID_ADPCM_IMA_APC: - while (src < buf + buf_size) { - uint8_t v = *src++; + while (bytestream2_get_bytes_left(&gb) > 0) { + int v = bytestream2_get_byteu(&gb); *samples++ = adpcm_ima_expand_nibble(&c->status[0], v >> 4 , 3); *samples++ = adpcm_ima_expand_nibble(&c->status[st], v & 0x0F, 3); } -- cgit v1.2.3