Browse Source

cook: remove pointless return statements

Justin Ruggles 13 years ago
parent
commit
b277ebd508
1 changed files with 0 additions and 2 deletions
  1. 0 2
      libavcodec/cook.c

+ 0 - 2
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;
     }
 }