On 03/18/2012 01:15 PM, Ronald S. Bultje wrote:

> ---
>  libavcodec/adpcm.c |    7 ++++---
>  1 files changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
> index 0891040..e0e9923 100644
> --- a/libavcodec/adpcm.c
> +++ b/libavcodec/adpcm.c
> @@ -859,9 +859,10 @@ static int adpcm_decode_frame(AVCodecContext *avctx, 
> void *data,
>          }
>          break;
>      case CODEC_ID_ADPCM_IMA_EA_SEAD:
> -        for (n = nb_samples >> (1 - st); n > 0; n--, src++) {
> -            *samples++ = adpcm_ima_expand_nibble(&c->status[0], src[0] >> 4, 
> 6);
> -            *samples++ = adpcm_ima_expand_nibble(&c->status[st],src[0]&0x0F, 
> 6);
> +        for (n = nb_samples >> (1 - st); n > 0; n--) {
> +            int byte = bytestream2_get_byteu(&gb);
> +            *samples++ = adpcm_ima_expand_nibble(&c->status[0],  byte >> 4,  
>  6);
> +            *samples++ = adpcm_ima_expand_nibble(&c->status[st], byte & 
> 0x0F, 6);
>          }
>          break;
>      case CODEC_ID_ADPCM_EA:


LGTM

-Justin

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to