[FFmpeg-soc] [soc]: r721 - dirac/libavcodec/dirac.c

marco subversion at mplayerhq.hu
Sun Aug 12 12:54:50 CEST 2007


Author: marco
Date: Sun Aug 12 12:54:49 2007
New Revision: 721

Log:
fix indentation

Modified:
   dirac/libavcodec/dirac.c

Modified: dirac/libavcodec/dirac.c
==============================================================================
--- dirac/libavcodec/dirac.c	(original)
+++ dirac/libavcodec/dirac.c	Sun Aug 12 12:54:49 2007
@@ -2311,13 +2311,13 @@ static int dirac_motion_compensation(AVC
        specification.  */
     {
         START_TIMER;
-    for (y = 0; y < height; y++)
-        for (x = 0; x < width; x++) {
-            coeffs[y * s->padded_width + x] += motion_comp(avctx, x, y,
-                                                           ref1, ref2,
-                                                           coeffs, comp);
-        }
-    STOP_TIMER("motioncomp");
+        for (y = 0; y < height; y++)
+            for (x = 0; x < width; x++) {
+                coeffs[y * s->padded_width + x] += motion_comp(avctx, x, y,
+                                                               ref1, ref2,
+                                                               coeffs, comp);
+            }
+        STOP_TIMER("motioncomp");
     }
 
     av_free(s->ref1data);



More information about the FFmpeg-soc mailing list