Browse Source

avcodec/mscc: fix several bugs

Fixes #6342.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n4.1
Paul B Mahol 8 years ago
parent
commit
c84a57d1a2
1 changed files with 41 additions and 14 deletions
  1. +41
    -14
      libavcodec/mscc.c

+ 41
- 14
libavcodec/mscc.c View File

@@ -37,10 +37,15 @@ typedef struct MSCCContext {
unsigned int uncomp_size; unsigned int uncomp_size;
uint8_t *uncomp_buf; uint8_t *uncomp_buf;
z_stream zstream; z_stream zstream;

uint32_t pal[256];
} MSCCContext; } MSCCContext;


static int rle_uncompress(AVCodecContext *avctx, GetByteContext *gb, PutByteContext *pb, int bpp)
static int rle_uncompress(AVCodecContext *avctx, GetByteContext *gb, PutByteContext *pb)
{ {
MSCCContext *s = avctx->priv_data;
unsigned x = 0, y = 0;

while (bytestream2_get_bytes_left(gb) > 0) { while (bytestream2_get_bytes_left(gb) > 0) {
uint32_t fill; uint32_t fill;
int j; int j;
@@ -78,19 +83,22 @@ static int rle_uncompress(AVCodecContext *avctx, GetByteContext *gb, PutByteCont
break; break;
} }
} }
x += run;
} else { } else {
unsigned copy = bytestream2_get_byte(gb); unsigned copy = bytestream2_get_byte(gb);


if (copy == 1) {
if (copy == 0) {
x = 0;
y++;
bytestream2_seek_p(pb, y * avctx->width * s->bpp, SEEK_SET);
} else if (copy == 1) {
return 0; return 0;
} else if (copy == 2) { } else if (copy == 2) {
unsigned x, y;


x = bytestream2_get_byte(gb);
y = bytestream2_get_byte(gb);
x += bytestream2_get_byte(gb);
y += bytestream2_get_byte(gb);


bytestream2_skip_p(pb, x * bpp);
bytestream2_skip_p(pb, y * bpp * avctx->width);
bytestream2_seek_p(pb, y * avctx->width * s->bpp + x * s->bpp, SEEK_SET);
} else { } else {
for (j = 0; j < copy; j++) { for (j = 0; j < copy; j++) {
switch (avctx->bits_per_coded_sample) { switch (avctx->bits_per_coded_sample) {
@@ -108,6 +116,10 @@ static int rle_uncompress(AVCodecContext *avctx, GetByteContext *gb, PutByteCont
break; break;
} }
} }

if (s->bpp == 1 && (copy & 1))
bytestream2_skip(gb, 1);
x += copy;
} }
} }
} }
@@ -128,7 +140,8 @@ static int decode_frame(AVCodecContext *avctx,
int ret, j; int ret, j;


if (avpkt->size < 3) if (avpkt->size < 3)
return AVERROR_INVALIDDATA;
return buf_size;

if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
return ret; return ret;


@@ -138,6 +151,20 @@ static int decode_frame(AVCodecContext *avctx,
buf_size -= 2; buf_size -= 2;
} }


if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
int size;
const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, &size);

if (pal && size == AVPALETTE_SIZE) {
frame->palette_has_changed = 1;
for (j = 0; j < 256; j++)
s->pal[j] = 0xFF000000 | AV_RL32(pal + j * 4);
} else if (pal) {
av_log(avctx, AV_LOG_ERROR, "Palette size %d is wrong\n", size);
}
memcpy(frame->data[1], s->pal, AVPALETTE_SIZE);
}

ret = inflateReset(&s->zstream); ret = inflateReset(&s->zstream);
if (ret != Z_OK) { if (ret != Z_OK) {
av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", ret); av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", ret);
@@ -156,7 +183,7 @@ static int decode_frame(AVCodecContext *avctx,
bytestream2_init(&gb, s->decomp_buf, s->zstream.total_out); bytestream2_init(&gb, s->decomp_buf, s->zstream.total_out);
bytestream2_init_writer(&pb, s->uncomp_buf, s->uncomp_size); bytestream2_init_writer(&pb, s->uncomp_buf, s->uncomp_size);


ret = rle_uncompress(avctx, &gb, &pb, s->bpp);
ret = rle_uncompress(avctx, &gb, &pb);
if (ret) if (ret)
return ret; return ret;


@@ -176,10 +203,10 @@ static int decode_frame(AVCodecContext *avctx,
static av_cold int decode_init(AVCodecContext *avctx) static av_cold int decode_init(AVCodecContext *avctx)
{ {
MSCCContext *s = avctx->priv_data; MSCCContext *s = avctx->priv_data;
int zret;
int stride, zret;


switch (avctx->bits_per_coded_sample) { switch (avctx->bits_per_coded_sample) {
case 8: avctx->pix_fmt = AV_PIX_FMT_GRAY8; break;
case 8: avctx->pix_fmt = AV_PIX_FMT_PAL8; break;
case 16: avctx->pix_fmt = AV_PIX_FMT_RGB555; break; case 16: avctx->pix_fmt = AV_PIX_FMT_RGB555; break;
case 24: avctx->pix_fmt = AV_PIX_FMT_BGR24; break; case 24: avctx->pix_fmt = AV_PIX_FMT_BGR24; break;
case 32: avctx->pix_fmt = AV_PIX_FMT_BGRA; break; case 32: avctx->pix_fmt = AV_PIX_FMT_BGRA; break;
@@ -189,13 +216,13 @@ static av_cold int decode_init(AVCodecContext *avctx)
} }


s->bpp = avctx->bits_per_coded_sample >> 3; s->bpp = avctx->bits_per_coded_sample >> 3;
memset(&s->zstream, 0, sizeof(z_stream));
stride = 4 * ((avctx->width * avctx->bits_per_coded_sample + 31) / 32);


s->decomp_size = 4 * avctx->height * ((avctx->width * avctx->bits_per_coded_sample + 31) / 32);
s->decomp_size = 2 * avctx->height * stride;
if (!(s->decomp_buf = av_malloc(s->decomp_size))) if (!(s->decomp_buf = av_malloc(s->decomp_size)))
return AVERROR(ENOMEM); return AVERROR(ENOMEM);


s->uncomp_size = 4 * avctx->height * ((avctx->width * avctx->bits_per_coded_sample + 31) / 32);
s->uncomp_size = avctx->height * stride;
if (!(s->uncomp_buf = av_malloc(s->uncomp_size))) if (!(s->uncomp_buf = av_malloc(s->uncomp_size)))
return AVERROR(ENOMEM); return AVERROR(ENOMEM);




Loading…
Cancel
Save