1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

xl: return a meaningful error code.

This commit is contained in:
Anton Khirnov 2012-11-16 11:32:09 +01:00
parent d47dabbac2
commit 84f2847de3

View File

@ -49,7 +49,7 @@ static int decode_frame(AVCodecContext *avctx,
VideoXLContext * const a = avctx->priv_data;
AVFrame * const p = &a->pic;
uint8_t *Y, *U, *V;
int i, j;
int i, j, ret;
int stride;
uint32_t val;
int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
@ -58,9 +58,9 @@ static int decode_frame(AVCodecContext *avctx,
avctx->release_buffer(avctx, p);
p->reference = 0;
if(ff_get_buffer(avctx, p) < 0){
if ((ret = ff_get_buffer(avctx, p)) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return -1;
return ret;
}
p->pict_type= AV_PICTURE_TYPE_I;
p->key_frame= 1;