mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 02:12:28 +00:00
cljr: use meaningful error code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
282a6308bf
commit
efbe162f7d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user