Browse code

Fix indentation.

Originally committed as revision 22721 to svn://svn.ffmpeg.org/ffmpeg/trunk

Reimar Döffinger authored on 2010/03/30 05:58:19
Showing 1 changed files
... ...
@@ -226,7 +226,7 @@ static int dv_init_dynamic_tables(const DVprofile *d)
226 226
         } else {
227 227
             iweight1 = &dv_iweight_1080_y[0];
228 228
             iweight2 = &dv_iweight_1080_c[0];
229
-            }
229
+        }
230 230
         if (DV_PROFILE_IS_HD(d)) {
231 231
             for (c = 0; c < 4; c++) {
232 232
                 for (s = 0; s < 16; s++) {
... ...
@@ -244,12 +244,12 @@ static int dv_init_dynamic_tables(const DVprofile *d)
244 244
                         for (; i < dv_quant_areas[c]; i++) {
245 245
                             *factor1   = iweight1[i] << (dv_quant_shifts[s][c] + 1);
246 246
                             *factor2++ = (*factor1++) << 1;
247
-        }
248
-    }
247
+                        }
248
+                    }
249
+                }
249 250
             }
250 251
         }
251 252
     }
252
-}
253 253
 
254 254
     return 0;
255 255
 }