From b903a9285e82d56ffeee290dae70843e55e88a40 Mon Sep 17 00:00:00 2001
From: Vitor Sessak <vitor1001@gmail.com>
Date: Sun, 13 Jul 2008 20:41:09 +0000
Subject: [PATCH] Simplify

Originally committed as revision 14218 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/ra288.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index 60e985498a4..0a1d2e4965e 100644
--- a/libavcodec/ra288.c
+++ b/libavcodec/ra288.c
@@ -69,9 +69,7 @@ static void decode(Real288_internal *glob, float gain, int cb_coef)
     for (x=0; x < 5; x++)
         buffer[x] = codetable[cb_coef][x] * sumsum;
 
-    sum = scalar_product_float(buffer, buffer, 5) / 5;
-
-    sum = FFMAX(sum, 1);
+    sum = FFMAX(1, scalar_product_float(buffer, buffer, 5) / 5);
 
     /* shift and store */
     memmove(glob->lhist, glob->lhist - 1, 10 * sizeof(*glob->lhist));
-- 
GitLab