[FFmpeg-soc] [soc]: r923 - jpeg2000/j2kdec.c

k.nowosad subversion at mplayerhq.hu
Fri Aug 17 22:02:27 CEST 2007


Author: k.nowosad
Date: Fri Aug 17 22:02:27 2007
New Revision: 923

Log:
fixed indentation


Modified:
   jpeg2000/j2kdec.c

Modified: jpeg2000/j2kdec.c
==============================================================================
--- jpeg2000/j2kdec.c	(original)
+++ jpeg2000/j2kdec.c	Fri Aug 17 22:02:27 2007
@@ -1038,12 +1038,12 @@ static int decode_tile(J2kDecoderContext
                         int y, x;
                         decode_cblk(s, &t1, band->cblk + cblkno, xx1 - xx0, yy1 - yy0, bandpos);
                         if (comp->transform == J2K_DWT53){
-                        for (y = yy0; y < yy1; y++){
-                            int *ptr = t1.data[y-yy0];
-                            for (x = xx0; x < xx1; x++){
-                                comp->data[(comp->x1 - comp->x0) * y + x] = *ptr++ >> 1;
+                            for (y = yy0; y < yy1; y++){
+                                int *ptr = t1.data[y-yy0];
+                                for (x = xx0; x < xx1; x++){
+                                    comp->data[(comp->x1 - comp->x0) * y + x] = *ptr++ >> 1;
+                                }
                             }
-                        }
                         } else{
                             for (y = yy0; y < yy1; y++){
                                 int *ptr = t1.data[y-yy0];



More information about the FFmpeg-soc mailing list