OSDN Git Service

avcodec/snowdec: Remove unneeded {}
authorMichael Niedermayer <michael@niedermayer.cc>
Tue, 9 May 2017 13:48:25 +0000 (15:48 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 9 May 2017 14:50:18 +0000 (16:50 +0200)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/snowdec.c

index 97f5528..8c35e3e 100644 (file)
@@ -512,14 +512,12 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
             }
         }
 
-        {
         for(level=0; level<s->spatial_decomposition_count; level++){
             for(orientation=level ? 1 : 0; orientation<4; orientation++){
                 SubBand *b= &p->band[level][orientation];
                 unpack_coeffs(s, b, b->parent, orientation);
             }
         }
-        }
 
         {
         const int mb_h= s->b_height << s->block_max_depth;