diff options
author | Alexander Strange <astrange@ithinksw.com> | 2010-02-13 21:09:38 +0000 |
---|---|---|
committer | Alexander Strange <astrange@ithinksw.com> | 2010-02-13 21:09:38 +0000 |
commit | 78998bf217ba427ec4fbb5d3ae82fff31ab81f2e (patch) | |
tree | 4432eded4ff689adc2543290158d900ccea1962f /libavcodec/h264.c | |
parent | 677dab59cb2bf6b2a3fa1eb941331ad3892ee7f4 (diff) | |
download | ffmpeg-78998bf217ba427ec4fbb5d3ae82fff31ab81f2e.tar.gz |
h264: Remove unused variables.
Originally committed as revision 21815 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 60cf395467..10ef9d6b94 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -979,8 +979,6 @@ static inline void backup_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src 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 @@ static void loop_filter(H264Context *h){ 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]; |