diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-02-28 03:02:25 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-02-28 03:02:25 +0000 |
commit | 770128c44824984f4dda10aad6591f913c395961 (patch) | |
tree | 2b67c31c80138c1a37adc35e4ccf015a2f1955d4 /libavcodec/vp3.c | |
parent | dacd7842d545ccf41a577924c984454c6df83bcb (diff) | |
download | ffmpeg-770128c44824984f4dda10aad6591f913c395961.tar.gz |
Remove declaration of unused variables.
Originally committed as revision 22102 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 24cc01dd74..38e63a16cf 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -256,9 +256,6 @@ static int init_block_mapping(Vp3DecodeContext *s) int superblock_row_inc = 0; int mapping_index = 0; - int current_macroblock; - int c_fragment; - static const signed char travel_width[16] = { 1, 1, 0, -1, 0, 0, 1, 0, @@ -664,7 +661,6 @@ static int unpack_modes(Vp3DecodeContext *s, GetBitContext *gb) for (j = 0; j < 4; j++) { int mb_x = 2*sb_x + (j>>1); int mb_y = 2*sb_y + (((j>>1)+j)&1); - int frags_coded = 0; current_macroblock = mb_y * s->macroblock_width + mb_x; if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height) |