[FFmpeg-devel] [PATCH 1/5] ra144: use scalarproduct_int16

Christophe Gisquet christophe.gisquet at gmail.com
Fri May 10 11:39:04 CEST 2013


2013/5/10 Christophe Gisquet <christophe.gisquet at gmail.com>:
> @@ -374,7 +376,7 @@ static void ra144_encode_subblock(RA144Context *ractx,
>          memcpy(cba, work + LPC_ORDER, sizeof(cba));
>
>          ff_copy_and_dup(cba_vect, ractx->adapt_cb, cba_idx + BLOCKSIZE / 2 - 1);
> -        m[0] = (ff_irms(cba_vect) * rms) >> 12;
> +        m[0] = (ff_irms(&ractx->dsp, cba_vect) * rms) >> 12;
>      }
>      fixed_cb_search(work + LPC_ORDER, coefs, data, cba_idx, &cb1_idx, &cb2_idx);
>      for (i = 0; i < BLOCKSIZE; i++) {

I think this hunk is wrong. What's the name of the fate test for encoding ra144?

I've run fate-ra-144 fate-lossless-wma fate-lossless-tak so far.

--
Christophe


More information about the ffmpeg-devel mailing list