summaryrefslogtreecommitdiff
path: root/libavcodec/cljr.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-11-05 20:40:43 +0000
committerPaul B Mahol <onemda@gmail.com>2012-11-05 20:47:13 +0000
commitefbe162f7dc23123a798a7a820f8ae48c00bb1cd (patch)
treeb2b1abc27f626300e7fcf10d3fab14cc41a92e09 /libavcodec/cljr.c
parent282a6308bfd20e092e470547cf60d3bd6b507314 (diff)
cljr: use meaningful error code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r--libavcodec/cljr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index 2834ff6b17..87c8fc24fb 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -57,7 +57,7 @@ static int decode_frame(AVCodecContext *avctx,
GetBitContext gb;
AVFrame *picture = data;
AVFrame * const p = &a->picture;
- int x, y;
+ int x, y, ret;
if (p->data[0])
avctx->release_buffer(avctx, p);
@@ -74,9 +74,9 @@ static int decode_frame(AVCodecContext *avctx,
}
p->reference = 0;
- if (avctx->get_buffer(avctx, p) < 0) {
+ if ((ret = avctx->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;