]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ra144enc.c
Simplify RGB32 png encoding.
[ffmpeg] / libavcodec / ra144enc.c
index 2436bac147b674ddea8fcaa1364e4aeb50ac0dbf..725abc2f381d801ddd39fe8484084f9cdbb954fd 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;
 }