提交 7825cbeb 编写于 作者: H Hajo Nils Krabbenhöft

buffer_size should be in bytes, not bits

上级 d38fee75
......@@ -226,7 +226,7 @@ bool TiffDecoder::readData( Mat& img )
bpp = 8;
ncn = 4;
}
const size_t buffer_size = bpp * ncn * tile_height0 * tile_width0;
const size_t buffer_size = (bpp/bitsPerByte) * ncn * tile_height0 * tile_width0;
AutoBuffer<uchar> _buffer( buffer_size );
uchar* buffer = _buffer;
ushort* buffer16 = (ushort*)buffer;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册