diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c
index 357d5b5bbc6ff50fd46a1cfd91930432ba31ea6e..6a8349492b3ebc138f76eb3493cf775468766efb 100644
--- a/libavcodec/ra144.c
+++ b/libavcodec/ra144.c
@@ -204,11 +204,8 @@ static void do_output_subblock(RA144Context *ractx, const uint16_t  *lpc_coefs,
     memcpy(ractx->curr_sblock, ractx->curr_sblock + 40,
            10*sizeof(*ractx->curr_sblock));
 
-    if (ff_acelp_lp_synthesis_filter(
-                                     ractx->curr_sblock + 10, lpc_coefs,
-                                     block, BLOCKSIZE,
-                                     10, 1, 0xfff)
-        )
+    if (ff_acelp_lp_synthesis_filter(ractx->curr_sblock + 10, lpc_coefs,
+                                     block, BLOCKSIZE, 10, 1, 0xfff))
         memset(ractx->curr_sblock, 0, 50*sizeof(*ractx->curr_sblock));
 }