You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
tiff: correctly decode saparate planes with horizontal differencing predictor
Closes #2648. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -1178,16 +1178,22 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
if (s->predictor == 2) {
|
if (s->predictor == 2) {
|
||||||
dst = p->data[plane];
|
dst = p->data[plane];
|
||||||
soff = s->bpp >> 3;
|
soff = s->bpp >> 3;
|
||||||
|
if (s->planar)
|
||||||
|
soff = FFMAX(soff / s->bppcount, 1);
|
||||||
ssize = s->width * soff;
|
ssize = s->width * soff;
|
||||||
if (s->avctx->pix_fmt == AV_PIX_FMT_RGB48LE ||
|
if (s->avctx->pix_fmt == AV_PIX_FMT_RGB48LE ||
|
||||||
s->avctx->pix_fmt == AV_PIX_FMT_RGBA64LE) {
|
s->avctx->pix_fmt == AV_PIX_FMT_RGBA64LE ||
|
||||||
|
s->avctx->pix_fmt == AV_PIX_FMT_GBRP16LE ||
|
||||||
|
s->avctx->pix_fmt == AV_PIX_FMT_GBRAP16LE) {
|
||||||
for (i = 0; i < s->height; i++) {
|
for (i = 0; i < s->height; i++) {
|
||||||
for (j = soff; j < ssize; j += 2)
|
for (j = soff; j < ssize; j += 2)
|
||||||
AV_WL16(dst + j, AV_RL16(dst + j) + AV_RL16(dst + j - soff));
|
AV_WL16(dst + j, AV_RL16(dst + j) + AV_RL16(dst + j - soff));
|
||||||
dst += stride;
|
dst += stride;
|
||||||
}
|
}
|
||||||
} else if (s->avctx->pix_fmt == AV_PIX_FMT_RGB48BE ||
|
} else if (s->avctx->pix_fmt == AV_PIX_FMT_RGB48BE ||
|
||||||
s->avctx->pix_fmt == AV_PIX_FMT_RGBA64BE) {
|
s->avctx->pix_fmt == AV_PIX_FMT_RGBA64BE ||
|
||||||
|
s->avctx->pix_fmt == AV_PIX_FMT_GBRP16BE ||
|
||||||
|
s->avctx->pix_fmt == AV_PIX_FMT_GBRAP16BE) {
|
||||||
for (i = 0; i < s->height; i++) {
|
for (i = 0; i < s->height; i++) {
|
||||||
for (j = soff; j < ssize; j += 2)
|
for (j = soff; j < ssize; j += 2)
|
||||||
AV_WB16(dst + j, AV_RB16(dst + j) + AV_RB16(dst + j - soff));
|
AV_WB16(dst + j, AV_RB16(dst + j) + AV_RB16(dst + j - soff));
|
||||||
|
Reference in New Issue
Block a user