diff h264.c @ 11162:d9725977b699 libavcodec

h264: Remove unused variables.
author astrange
date Sat, 13 Feb 2010 21:09:38 +0000
parents af73d215879d
children e251be458ac3
line wrap: on
line diff
--- a/h264.c	Sat Feb 13 21:08:17 2010 +0000
+++ b/h264.c	Sat Feb 13 21:09:38 2010 +0000
@@ -979,8 +979,6 @@
 
 static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int xchg, int simple){
     MpegEncContext * const s = &h->s;
-    int temp8, i;
-    uint64_t temp64;
     int deblock_left;
     int deblock_top;
     int mb_xy;
@@ -2165,7 +2163,7 @@
     if(h->deblocking_filter) {
         for(mb_x= 0; mb_x<s->mb_width; mb_x++){
             for(mb_y=end_mb_y - FRAME_MBAFF; mb_y<= end_mb_y; mb_y++){
-                int list, mb_xy, mb_type;
+                int mb_xy, mb_type;
                 mb_xy = h->mb_xy = mb_x + mb_y*s->mb_stride;
                 h->slice_num= h->slice_table[mb_xy];
                 mb_type= s->current_picture.mb_type[mb_xy];