OSDN Git Service

COSMETICS Part 3 and final of Kenan Gillet's QCELP silence handling patch.
authorReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>
Fri, 26 Dec 2008 16:50:21 +0000 (16:50 +0000)
committerReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>
Fri, 26 Dec 2008 16:50:21 +0000 (16:50 +0000)
Originally committed as revision 16338 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/qcelpdec.c

index 5b1a9e3..c862928 100644 (file)
@@ -544,10 +544,10 @@ static void apply_pitch_filters(QCELPContext *q, float *cdn_vector)
 
             if (q->bitrate == I_F_Q)
             {
-            if (q->erasure_count < 3)
-                max_pitch_gain = 0.9 - 0.3 * (q->erasure_count - 1);
-             else
-                max_pitch_gain = 0.0;
+                  if (q->erasure_count < 3)
+                      max_pitch_gain = 0.9 - 0.3 * (q->erasure_count - 1);
+                  else
+                      max_pitch_gain = 0.0;
             }else
             {
                 assert(q->bitrate == SILENCE);