diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-24 01:09:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-24 01:09:14 +0200 |
commit | 6c87b2be7257615126f82e372e66ee5d633e9978 (patch) | |
tree | 1312993a6fa82c400c4bd54d6fbe3e7e4fd038bd | |
parent | 3556e7ce737edade8c5e628a19e2b5da0809928d (diff) | |
download | ffmpeg-6c87b2be7257615126f82e372e66ee5d633e9978.tar.gz |
swscale_unscaled: remove unused variables
Fixes CID739472
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswscale/swscale_unscaled.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c index 76c91420b2..e27eaa1309 100644 --- a/libswscale/swscale_unscaled.c +++ b/libswscale/swscale_unscaled.c @@ -531,8 +531,6 @@ static rgbConvFn findRgbConvFn(SwsContext *c) const int srcId = c->srcFormatBpp; const int dstId = c->dstFormatBpp; rgbConvFn conv = NULL; - const AVPixFmtDescriptor *desc_src = av_pix_fmt_desc_get(srcFormat); - const AVPixFmtDescriptor *desc_dst = av_pix_fmt_desc_get(dstFormat); #define IS_NOT_NE(bpp, desc) \ (((bpp + 7) >> 3) == 2 && \ |