diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-04-06 11:50:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-04-07 13:41:23 +0200 |
commit | c169062073d77803713877cef746f61abbc95f20 (patch) | |
tree | c58ffa4ae25643ed463b840d95089179f019a7b9 | |
parent | 2d720069a91b48dc201a43cc11e8d55fc332df48 (diff) | |
download | ffmpeg-c169062073d77803713877cef746f61abbc95f20.tar.gz |
swscale/utils: Remove unused variable
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 08937fec79..b81661f6ea 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1142,7 +1142,7 @@ static enum AVPixelFormat alphaless_fmt(enum AVPixelFormat fmt) av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, SwsFilter *dstFilter) { - int i, j; + int i; int usesVFilter, usesHFilter; int unscaled; SwsFilter dummyFilter = { NULL, NULL, NULL, NULL }; |