Commit d04e0a6b authored by James Almer's avatar James Almer

avcodec/qdrw: don't overwrite bpp when checking its value

Finishes fixing ticket #6171
parent dde1bf07
......@@ -405,9 +405,9 @@ static int decode_frame(AVCodecContext *avctx,
if (avctx->pix_fmt == AV_PIX_FMT_RGB555)
ret = decode_rle16(avctx, p, &gbc);
else if (bpp = 2)
else if (bpp == 2)
ret = decode_rle_bpp2(avctx, p, &gbc);
else if (bpp = 4)
else if (bpp == 4)
ret = decode_rle_bpp4(avctx, p, &gbc);
else
ret = decode_rle(avctx, p, &gbc, bppcnt);
......
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