mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
qpeg: return a meaningful error code.
This commit is contained in:
parent
3344f5cb74
commit
62d9655217
@ -247,7 +247,7 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
QpegContext * const a = avctx->priv_data;
|
QpegContext * const a = avctx->priv_data;
|
||||||
AVFrame * const p = &a->pic;
|
AVFrame * const p = &a->pic;
|
||||||
uint8_t* outdata;
|
uint8_t* outdata;
|
||||||
int delta;
|
int delta, ret;
|
||||||
const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);
|
const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);
|
||||||
|
|
||||||
if (avpkt->size < 0x86) {
|
if (avpkt->size < 0x86) {
|
||||||
@ -257,9 +257,9 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
|
|
||||||
bytestream2_init(&a->buffer, avpkt->data, avpkt->size);
|
bytestream2_init(&a->buffer, avpkt->data, avpkt->size);
|
||||||
p->reference = 3;
|
p->reference = 3;
|
||||||
if (avctx->reget_buffer(avctx, p) < 0) {
|
if ((ret = avctx->reget_buffer(avctx, p)) < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
||||||
return -1;
|
return ret;
|
||||||
}
|
}
|
||||||
outdata = a->pic.data[0];
|
outdata = a->pic.data[0];
|
||||||
bytestream2_skip(&a->buffer, 4);
|
bytestream2_skip(&a->buffer, 4);
|
||||||
|
Loading…
Reference in New Issue
Block a user