diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:12:48 +0000 |
commit | 36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (patch) | |
tree | 4c9121aea216399330a7448f303bb29a36076cbb /libavcodec/snow.c | |
parent | f8d611285025cae8c933dc1228a2b1db5de5cf85 (diff) | |
download | ffmpeg-36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740.tar.gz |
Remove unused variables and the corresponding warnings along with them.
Originally committed as revision 6536 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index c154f4ebc7..e3497ef07d 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -2938,7 +2938,6 @@ static int get_block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index, con Plane *p= &s->plane[plane_index]; const int block_size = MB_SIZE >> s->block_max_depth; const int block_w = plane_index ? block_size/2 : block_size; - const uint8_t *obmc = plane_index ? obmc_tab[s->block_max_depth+1] : obmc_tab[s->block_max_depth]; const int obmc_stride= plane_index ? block_size : 2*block_size; const int ref_stride= s->current_picture.linesize[plane_index]; uint8_t *dst= s->current_picture.data[plane_index]; @@ -3041,7 +3040,6 @@ static int get_4block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index){ uint8_t *src= s-> input_picture.data[plane_index]; static const DWTELEM zero_dst[4096]; //FIXME const int b_stride = s->b_width << s->block_max_depth; - const int b_height = s->b_height<< s->block_max_depth; const int w= p->width; const int h= p->height; int distortion= 0; |