]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ra144enc.c
RELEASE_NOTES: mention some notable API changes in 0.8
[ffmpeg] / libavcodec / ra144enc.c
index ee38bd5c544a34f9df311bd1c0cb209d00c14a91..c970a26465cde1d88a7abedda6d50f76b416fd5e 100644 (file)
@@ -214,7 +214,7 @@ static int adaptive_cb_search(const int16_t *adapt_cb, float *work,
     ff_celp_lp_synthesis_filterf(work, coefs, exc, BLOCKSIZE, LPC_ORDER);
     for (i = 0; i < BLOCKSIZE; i++)
         data[i] -= best_gain * work[i];
-    return (best_vect - BLOCKSIZE / 2 + 1);
+    return best_vect - BLOCKSIZE / 2 + 1;
 }