Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-03 03:26:57 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-09-03 03:26:57 +0400
commit5d5583038866cbc2280b893c39e1885d77fdf243 (patch)
tree6c6da80008386a23d70f5d7ba44e6f27c2ca3f82 /libavcodec/snowdec.c
parent0b23452c01c5f8145de111f09c0e9a7d5bd82068 (diff)
snowdec: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snowdec.c')
-rw-r--r--libavcodec/snowdec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c
index 0a7f9df146..22d4f9200c 100644
--- a/libavcodec/snowdec.c
+++ b/libavcodec/snowdec.c
@@ -467,7 +467,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
{
const int mb_h= s->b_height << s->block_max_depth;
const int block_size = MB_SIZE >> s->block_max_depth;
- const int block_w = plane_index ? block_size>>s->chroma_h_shift : block_size;
const int block_h = plane_index ? block_size>>s->chroma_v_shift : block_size;
int mb_y;
DWTCompose cs[MAX_DECOMPOSITIONS];