diff snow.c @ 3920:3a151ccc6ed7 libavcodec

Remove unused variables and the corresponding warnings along with them.
author diego
date Tue, 03 Oct 2006 17:12:48 +0000
parents acf9ca729bd2
children c8c591fe26f8
line wrap: on
line diff
--- a/snow.c	Mon Oct 02 11:55:24 2006 +0000
+++ b/snow.c	Tue Oct 03 17:12:48 2006 +0000
@@ -2938,7 +2938,6 @@
     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 @@
     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;