summaryrefslogtreecommitdiff
path: root/libavcodec/xl.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-11-16 11:32:09 +0100
committerAnton Khirnov <anton@khirnov.net>2013-01-06 13:31:40 +0100
commit84f2847de394ac447f53306bd4dd73e1af6ea5e4 (patch)
treedc483fa2dedd49fac9b236ba836d64b56e0a9e1b /libavcodec/xl.c
parentd47dabbac24e1a00ce15079a5d3dc9d5be79e6b2 (diff)
xl: return a meaningful error code.
Diffstat (limited to 'libavcodec/xl.c')
-rw-r--r--libavcodec/xl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c
index 1cadeab561..ab45a5e35a 100644
--- a/libavcodec/xl.c
+++ b/libavcodec/xl.c
@@ -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;