diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-03 22:40:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-03 22:40:31 +0200 |
commit | 8cc77646c071e3c21600050b3a88d4a2b44b3185 (patch) | |
tree | ea845bfc101c228e32bffe43346f8c4293af9bdb | |
parent | b0dc4286a960a8a6e87ef7904006f7948a5af6b0 (diff) | |
download | ffmpeg-8cc77646c071e3c21600050b3a88d4a2b44b3185.tar.gz |
yadif: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_yadif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 9f949f800a..5318379f60 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -138,7 +138,6 @@ static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic, int mrefs = y ?-refs : refs; if(y<=1 || y+2>=h) { - int j; uint8_t *tmp = yadif->temp_line + 64 + 2*absrefs; if(mode<2) memcpy(tmp+2*mrefs, cur+2*mrefs, w*df); |