diff options
Diffstat (limited to 'libavcodec/avrndec.c')
-rw-r--r-- | libavcodec/avrndec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/avrndec.c b/libavcodec/avrndec.c index 882ee50769..40aca178d1 100644 --- a/libavcodec/avrndec.c +++ b/libavcodec/avrndec.c @@ -93,10 +93,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, return AVERROR_INVALIDDATA; } - if((ret = ff_get_buffer(avctx, p, 0)) < 0){ - av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); + if ((ret = ff_get_buffer(avctx, p, 0)) < 0) return ret; - } p->pict_type= AV_PICTURE_TYPE_I; p->key_frame= 1; |