diff options
Diffstat (limited to 'libavcodec/cllc.c')
-rw-r--r-- | libavcodec/cllc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/cllc.c b/libavcodec/cllc.c index ab8d46aa52..797d07b8ee 100644 --- a/libavcodec/cllc.c +++ b/libavcodec/cllc.c @@ -410,8 +410,11 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data, avctx->pix_fmt = AV_PIX_FMT_YUV422P; avctx->bits_per_raw_sample = 8; - if ((ret = ff_get_buffer(avctx, pic, 0)) < 0) + ret = ff_get_buffer(avctx, pic, 0); + if (ret < 0) { + av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n"); return ret; + } ret = decode_yuv_frame(ctx, &gb, pic); if (ret < 0) |