Commit 995013eb authored by Stefano Sabatini's avatar Stefano Sabatini

tiffenc: fix bpp value for monow/monob formats

parent d8297ca4
...@@ -282,7 +282,7 @@ static int encode_frame(AVCodecContext * avctx, unsigned char *buf, ...@@ -282,7 +282,7 @@ static int encode_frame(AVCodecContext * avctx, unsigned char *buf,
return -1; return -1;
} }
if (!is_yuv) if (!is_yuv)
s->bpp_tab_size = (s->bpp >> 3); s->bpp_tab_size = ((s->bpp + 7) >> 3);
if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE || s->compr == TIFF_LZW) if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE || s->compr == TIFF_LZW)
//best choose for DEFLATE //best choose for DEFLATE
......
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