From b277ebd508a0ceeb187d5ae8c463ce6ffb06b4c8 Mon Sep 17 00:00:00 2001
From: Justin Ruggles <justin.ruggles@gmail.com>
Date: Wed, 26 Oct 2011 21:03:49 -0400
Subject: [PATCH] cook: remove pointless return statements

---
 libavcodec/cook.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libavcodec/cook.c b/libavcodec/cook.c
index 7157a8ce017..462a8c40fc9 100644
--- a/libavcodec/cook.c
+++ b/libavcodec/cook.c
@@ -658,14 +658,12 @@ static void interpolate_float(COOKContext *q, float* buffer,
         for(i=0 ; i<q->gain_size_factor ; i++){
             buffer[i]*=fc1;
         }
-        return;
     } else {                                        //smooth gain
         fc2 = q->gain_table[11 + (gain_index_next-gain_index)];
         for(i=0 ; i<q->gain_size_factor ; i++){
             buffer[i]*=fc1;
             fc1*=fc2;
         }
-        return;
     }
 }
 
-- 
GitLab