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

Finishes fixing ticket #6171
This commit is contained in:
James Almer 2017-02-21 20:21:52 -03:00
parent dde1bf074c
commit d04e0a6bcf
1 changed files with 2 additions and 2 deletions

View File

@ -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);