Commit 6c87b2be authored by Michael Niedermayer's avatar Michael Niedermayer

swscale_unscaled: remove unused variables

Fixes CID739472
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3556e7ce
...@@ -531,8 +531,6 @@ static rgbConvFn findRgbConvFn(SwsContext *c) ...@@ -531,8 +531,6 @@ static rgbConvFn findRgbConvFn(SwsContext *c)
const int srcId = c->srcFormatBpp; const int srcId = c->srcFormatBpp;
const int dstId = c->dstFormatBpp; const int dstId = c->dstFormatBpp;
rgbConvFn conv = NULL; 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) \ #define IS_NOT_NE(bpp, desc) \
(((bpp + 7) >> 3) == 2 && \ (((bpp + 7) >> 3) == 2 && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment