diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-29 22:23:16 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-30 22:18:07 +0100 |
commit | d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188 (patch) | |
tree | 36f5aff04d79a9b5825f0d17b15b3f6671ab4ab7 /libavcodec/ra144enc.c | |
parent | f486fb338e36e674c2b72fc7c859967538cf1b47 (diff) | |
download | ffmpeg-d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188.tar.gz |
cosmetics: Drop unnecessary parentheses around return values.
Diffstat (limited to 'libavcodec/ra144enc.c')
-rw-r--r-- | libavcodec/ra144enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra144enc.c b/libavcodec/ra144enc.c index ee38bd5c54..c970a26465 100644 --- a/libavcodec/ra144enc.c +++ b/libavcodec/ra144enc.c @@ -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; } |