Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-12-01 13:26:36 +0400
committerPaul B Mahol <onemda@gmail.com>2012-12-01 14:17:16 +0400
commit24e5cb4836e49d547bf01747507416009adb4f0b (patch)
treeb77f1b80af57c8b35db78ca931e12b7888493f5b /libavcodec/xl.c
parent3b56ed3478f91a9314ae6b539e63185ad0b89722 (diff)
xldec: return meaningful error code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
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 1620c855c8..53b95f4201 100644
--- a/libavcodec/xl.c
+++ b/libavcodec/xl.c
@@ -48,7 +48,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;
@@ -67,9 +67,9 @@ static int decode_frame(AVCodecContext *avctx,
avctx->release_buffer(avctx, p);
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;