]> git.sesse.net Git - ffmpeg/commitdiff
Cosmetics: Reindent after r19943.
authorAlex Converse <alex.converse@gmail.com>
Mon, 21 Sep 2009 03:42:54 +0000 (03:42 +0000)
committerAlex Converse <alex.converse@gmail.com>
Mon, 21 Sep 2009 03:42:54 +0000 (03:42 +0000)
Originally committed as revision 19944 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/aaccoder.c

index 4f0e58d0475bf1c3f99061d42273cbbc47177ea9..b32c854722ff961ea759df65297ec38a39aee681 100644 (file)
@@ -174,11 +174,11 @@ static float quantize_band_cost(struct AACEncContext *s, const float *in,
                     float t = fabsf(in[i+k]);
                     float di;
                     if (vec[k] == 64.0f) { //FIXME: slow
-                    //do not code with escape sequence small values
-                    if (t < 39.0f*IQ) {
-                        rd = INFINITY;
-                        break;
-                    }
+                        //do not code with escape sequence small values
+                        if (t < 39.0f*IQ) {
+                            rd = INFINITY;
+                            break;
+                        }
                         if (t >= CLIPPED_ESCAPE) {
                             di = t - CLIPPED_ESCAPE;
                             curbits += 21;
@@ -289,11 +289,11 @@ static void quantize_and_encode_band(struct AACEncContext *s, PutBitContext *pb,
                     float t = fabsf(in[i+k]);
                     float di;
                     if (vec[k] == 64.0f) { //FIXME: slow
-                    //do not code with escape sequence small values
-                    if (t < 39.0f*IQ) {
-                        rd = INFINITY;
-                        break;
-                    }
+                        //do not code with escape sequence small values
+                        if (t < 39.0f*IQ) {
+                            rd = INFINITY;
+                            break;
+                        }
                         if (t >= CLIPPED_ESCAPE) {
                             di = t - CLIPPED_ESCAPE;
                             curbits += 21;