summaryrefslogtreecommitdiff
path: root/libavcodec/h264_loopfilter.c
diff options
context:
space:
mode:
authorAlexander Strange <astrange@ithinksw.com>2010-02-13 21:09:38 +0000
committerAlexander Strange <astrange@ithinksw.com>2010-02-13 21:09:38 +0000
commit78998bf217ba427ec4fbb5d3ae82fff31ab81f2e (patch)
tree4432eded4ff689adc2543290158d900ccea1962f /libavcodec/h264_loopfilter.c
parent677dab59cb2bf6b2a3fa1eb941331ad3892ee7f4 (diff)
h264: Remove unused variables.
Originally committed as revision 21815 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264_loopfilter.c')
-rw-r--r--libavcodec/h264_loopfilter.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/h264_loopfilter.c b/libavcodec/h264_loopfilter.c
index 2f14bde9fd..cef256ad7d 100644
--- a/libavcodec/h264_loopfilter.c
+++ b/libavcodec/h264_loopfilter.c
@@ -514,7 +514,7 @@ static av_always_inline void filter_mb_dir(H264Context *h, int mb_x, int mb_y, u
)
*(uint64_t*)bS= 0x0004000400040004ULL;
} else {
- int i, l;
+ int i;
int mv_done;
if( dir && FRAME_MBAFF && IS_INTERLACED(mb_type ^ mbm_type)) {
@@ -590,7 +590,7 @@ static av_always_inline void filter_mb_dir(H264Context *h, int mb_x, int mb_y, u
if( IS_INTRA(mb_type)) {
*(uint64_t*)bS= 0x0003000300030003ULL;
} else {
- int i, l;
+ int i;
int mv_done;
if( edge & mask_edge ) {
@@ -657,7 +657,6 @@ void ff_h264_filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint
const int mvy_limit = IS_INTERLACED(mb_type) ? 2 : 4;
int first_vertical_edge_done = 0;
av_unused int dir;
- int list;
if (FRAME_MBAFF
// and current and left pair do not have the same interlaced type