]> git.sesse.net Git - ffmpeg/commitdiff
Remove unused variable, fixes warnings of the type:
authorDiego Biurrun <diego@biurrun.de>
Sun, 21 Feb 2010 15:29:17 +0000 (15:29 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sun, 21 Feb 2010 15:29:17 +0000 (15:29 +0000)
libavcodec/h264.h:816: warning: unused variable `mb_xy'

Originally committed as revision 21941 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/h264.h

index 2c677c88b415efd92ca6906d212b5cc632c2bc88..67b7558c3402f41c08a00414479277e2c5f6f311 100644 (file)
@@ -813,7 +813,6 @@ static void fill_decode_neighbors(H264Context *h, int mb_type){
 
 static void fill_decode_caches(H264Context *h, int mb_type){
     MpegEncContext * const s = &h->s;
-    const int mb_xy= h->mb_xy;
     int topleft_xy, top_xy, topright_xy, left_xy[2];
     int topleft_type, top_type, topright_type, left_type[2];
     const uint8_t * left_block= h->left_block;