summaryrefslogtreecommitdiff
path: root/libavcodec/snowdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-09 15:48:25 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-05-09 16:50:18 +0200
commitea627dc0949c91e3ee3f98ec3ad6b4df8e96a69e (patch)
treebbfee27fe2a7d80bf6ca0a78a18ae775917d7e80 /libavcodec/snowdec.c
parent3f5a68533decdfb4757207e8d7b5af06e1dcd197 (diff)
avcodec/snowdec: Remove unneeded {}
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/snowdec.c')
-rw-r--r--libavcodec/snowdec.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c
index 97f55288c1..8c35e3e084 100644
--- a/libavcodec/snowdec.c
+++ b/libavcodec/snowdec.c
@@ -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;