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:
authorBenjamin Larsson <banan@ludd.ltu.se>2009-05-02 13:12:03 +0400
committerBenjamin Larsson <banan@ludd.ltu.se>2009-05-02 13:12:03 +0400
commit241f5eab32fc8e22fecbf1a1c3c2d0d878d1b352 (patch)
tree0a9639eafdf335b32196687cae44599fc728120b /libavcodec/vp3.c
parent10c773c12ff2db5894fd8f76f5575cee1793d1c4 (diff)
Remove dead assignments found by CSA
Originally committed as revision 18731 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 40f802de9f..982ca2fb23 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -254,7 +254,6 @@ static int init_block_mapping(Vp3DecodeContext *s)
int right_edge = 0;
int bottom_edge = 0;
int superblock_row_inc = 0;
- int *hilbert = NULL;
int mapping_index = 0;
int current_macroblock;
@@ -366,7 +365,6 @@ static int init_block_mapping(Vp3DecodeContext *s)
current_height = 0;
superblock_row_inc = s->macroblock_width -
(s->y_superblock_width * 2 - s->macroblock_width);
- hilbert = hilbert_walk_mb;
mapping_index = 0;
current_macroblock = -1;
for (i = 0; i < s->u_superblock_start; i++) {