mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-28 11:27:30 +08:00
anm: convert to bytestream2 API
Protects from overreads. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:

committed by
Ronald S. Bultje

parent
f1ce053cd0
commit
5b4d026a03
@ -30,25 +30,25 @@
|
|||||||
typedef struct AnmContext {
|
typedef struct AnmContext {
|
||||||
AVFrame frame;
|
AVFrame frame;
|
||||||
int palette[AVPALETTE_COUNT];
|
int palette[AVPALETTE_COUNT];
|
||||||
|
GetByteContext gb;
|
||||||
int x; ///< x coordinate position
|
int x; ///< x coordinate position
|
||||||
} AnmContext;
|
} AnmContext;
|
||||||
|
|
||||||
static av_cold int decode_init(AVCodecContext *avctx)
|
static av_cold int decode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
AnmContext *s = avctx->priv_data;
|
AnmContext *s = avctx->priv_data;
|
||||||
const uint8_t *buf;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
avctx->pix_fmt = PIX_FMT_PAL8;
|
avctx->pix_fmt = PIX_FMT_PAL8;
|
||||||
|
|
||||||
if (avctx->extradata_size != 16*8 + 4*256)
|
s->frame.reference = 1;
|
||||||
|
bytestream2_init(&s->gb, avctx->extradata, avctx->extradata_size);
|
||||||
|
if (bytestream2_get_bytes_left(&s->gb) < 16 * 8 + 4 * 256)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
s->frame.reference = 1;
|
bytestream2_skipu(&s->gb, 16 * 8);
|
||||||
|
|
||||||
buf = avctx->extradata + 16*8;
|
|
||||||
for (i = 0; i < 256; i++)
|
for (i = 0; i < 256; i++)
|
||||||
s->palette[i] = bytestream_get_le32(&buf);
|
s->palette[i] = bytestream2_get_le32u(&s->gb);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -56,7 +56,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
|||||||
/**
|
/**
|
||||||
* Perform decode operation
|
* Perform decode operation
|
||||||
* @param dst, dst_end Destination image buffer
|
* @param dst, dst_end Destination image buffer
|
||||||
* @param buf, buf_end Source buffer (optional, see below)
|
* @param gb, GetByteContext (optional, see below)
|
||||||
* @param pixel Fill color (optional, see below)
|
* @param pixel Fill color (optional, see below)
|
||||||
* @param count Pixel count
|
* @param count Pixel count
|
||||||
* @param x Pointer to x-axis counter
|
* @param x Pointer to x-axis counter
|
||||||
@ -64,24 +64,22 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
|||||||
* @param linesize Destination image buffer linesize
|
* @param linesize Destination image buffer linesize
|
||||||
* @return non-zero if destination buffer is exhausted
|
* @return non-zero if destination buffer is exhausted
|
||||||
*
|
*
|
||||||
* a copy operation is achieved when 'buf' is set
|
* a copy operation is achieved when 'gb' is set
|
||||||
* a fill operation is acheived when 'buf' is null and pixel is >= 0
|
* a fill operation is acheived when 'gb' is null and pixel is >= 0
|
||||||
* a skip operation is acheived when 'buf' is null and pixel is < 0
|
* a skip operation is acheived when 'gb' is null and pixel is < 0
|
||||||
*/
|
*/
|
||||||
static inline int op(uint8_t **dst, const uint8_t *dst_end,
|
static inline int op(uint8_t **dst, const uint8_t *dst_end,
|
||||||
const uint8_t **buf, const uint8_t *buf_end,
|
GetByteContext *gb,
|
||||||
int pixel, int count,
|
int pixel, int count,
|
||||||
int *x, int width, int linesize)
|
int *x, int width, int linesize)
|
||||||
{
|
{
|
||||||
int remaining = width - *x;
|
int remaining = width - *x;
|
||||||
while(count > 0) {
|
while(count > 0) {
|
||||||
int striplen = FFMIN(count, remaining);
|
int striplen = FFMIN(count, remaining);
|
||||||
if (buf) {
|
if (gb) {
|
||||||
striplen = FFMIN(striplen, buf_end - *buf);
|
if (bytestream2_get_bytes_left(gb) < striplen)
|
||||||
if (*buf >= buf_end)
|
|
||||||
goto exhausted;
|
goto exhausted;
|
||||||
memcpy(*dst, *buf, striplen);
|
bytestream2_get_bufferu(gb, *dst, striplen);
|
||||||
*buf += striplen;
|
|
||||||
} else if (pixel >= 0)
|
} else if (pixel >= 0)
|
||||||
memset(*dst, pixel, striplen);
|
memset(*dst, pixel, striplen);
|
||||||
*dst += striplen;
|
*dst += striplen;
|
||||||
@ -110,9 +108,7 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
AVPacket *avpkt)
|
AVPacket *avpkt)
|
||||||
{
|
{
|
||||||
AnmContext *s = avctx->priv_data;
|
AnmContext *s = avctx->priv_data;
|
||||||
const uint8_t *buf = avpkt->data;
|
|
||||||
const int buf_size = avpkt->size;
|
const int buf_size = avpkt->size;
|
||||||
const uint8_t *buf_end = buf + buf_size;
|
|
||||||
uint8_t *dst, *dst_end;
|
uint8_t *dst, *dst_end;
|
||||||
int count;
|
int count;
|
||||||
|
|
||||||
@ -123,35 +119,37 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
dst = s->frame.data[0];
|
dst = s->frame.data[0];
|
||||||
dst_end = s->frame.data[0] + s->frame.linesize[0]*avctx->height;
|
dst_end = s->frame.data[0] + s->frame.linesize[0]*avctx->height;
|
||||||
|
|
||||||
if (buf[0] != 0x42) {
|
bytestream2_init(&s->gb, avpkt->data, buf_size);
|
||||||
|
|
||||||
|
if (bytestream2_get_byte(&s->gb) != 0x42) {
|
||||||
av_log_ask_for_sample(avctx, "unknown record type\n");
|
av_log_ask_for_sample(avctx, "unknown record type\n");
|
||||||
return buf_size;
|
return buf_size;
|
||||||
}
|
}
|
||||||
if (buf[1]) {
|
if (bytestream2_get_byte(&s->gb)) {
|
||||||
av_log_ask_for_sample(avctx, "padding bytes not supported\n");
|
av_log_ask_for_sample(avctx, "padding bytes not supported\n");
|
||||||
return buf_size;
|
return buf_size;
|
||||||
}
|
}
|
||||||
buf += 4;
|
bytestream2_skip(&s->gb, 2);
|
||||||
|
|
||||||
s->x = 0;
|
s->x = 0;
|
||||||
do {
|
do {
|
||||||
/* if statements are ordered by probability */
|
/* if statements are ordered by probability */
|
||||||
#define OP(buf, pixel, count) \
|
#define OP(gb, pixel, count) \
|
||||||
op(&dst, dst_end, (buf), buf_end, (pixel), (count), &s->x, avctx->width, s->frame.linesize[0])
|
op(&dst, dst_end, (gb), (pixel), (count), &s->x, avctx->width, s->frame.linesize[0])
|
||||||
|
|
||||||
int type = bytestream_get_byte(&buf);
|
int type = bytestream2_get_byte(&s->gb);
|
||||||
count = type & 0x7F;
|
count = type & 0x7F;
|
||||||
type >>= 7;
|
type >>= 7;
|
||||||
if (count) {
|
if (count) {
|
||||||
if (OP(type ? NULL : &buf, -1, count)) break;
|
if (OP(type ? NULL : &s->gb, -1, count)) break;
|
||||||
} else if (!type) {
|
} else if (!type) {
|
||||||
int pixel;
|
int pixel;
|
||||||
count = bytestream_get_byte(&buf); /* count==0 gives nop */
|
count = bytestream2_get_byte(&s->gb); /* count==0 gives nop */
|
||||||
pixel = bytestream_get_byte(&buf);
|
pixel = bytestream2_get_byte(&s->gb);
|
||||||
if (OP(NULL, pixel, count)) break;
|
if (OP(NULL, pixel, count)) break;
|
||||||
} else {
|
} else {
|
||||||
int pixel;
|
int pixel;
|
||||||
type = bytestream_get_le16(&buf);
|
type = bytestream2_get_le16(&s->gb);
|
||||||
count = type & 0x3FFF;
|
count = type & 0x3FFF;
|
||||||
type >>= 14;
|
type >>= 14;
|
||||||
if (!count) {
|
if (!count) {
|
||||||
@ -163,11 +161,11 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
pixel = type == 3 ? bytestream_get_byte(&buf) : -1;
|
pixel = type == 3 ? bytestream2_get_byte(&s->gb) : -1;
|
||||||
if (type == 1) count += 0x4000;
|
if (type == 1) count += 0x4000;
|
||||||
if (OP(type == 2 ? &buf : NULL, pixel, count)) break;
|
if (OP(type == 2 ? &s->gb : NULL, pixel, count)) break;
|
||||||
}
|
}
|
||||||
} while (buf + 1 < buf_end);
|
} while (bytestream2_get_bytes_left(&s->gb) > 0);
|
||||||
|
|
||||||
memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
|
memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user