diff options
author | hwrenx <hwrenx@126.com> | 2019-03-23 14:08:00 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-03-23 14:08:00 +0800 |
commit | 5252d594a155cdb0a0e2529961b999cda96f0fa5 (patch) | |
tree | 6f61db80f8643f5254ac2577a50aa7eea268fb26 | |
parent | bf05f621d583728749224a81778258f1b84bafa8 (diff) | |
download | ffmpeg-5252d594a155cdb0a0e2529961b999cda96f0fa5.tar.gz |
lavc/libdavs2: fix frame dumping error description
Reviewed-by: Steven Liu <lq@chinaffmpeg.org>
Signed-off-by: hwrenx <hwrenx@126.com>
-rw-r--r-- | libavcodec/libdavs2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index b0eb4fd342..218f3ec239 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -107,7 +107,7 @@ static int davs2_dump_frames(AVCodecContext *avctx, davs2_picture_t *pic, int *g frame->buf[plane] = av_buffer_alloc(size_line * pic->lines[plane]); if (!frame->buf[plane]){ - av_log(avctx, AV_LOG_ERROR, "dump error: alloc failed.\n"); + av_log(avctx, AV_LOG_ERROR, "Decoder error: allocation failure, can't dump frames.\n"); return AVERROR(ENOMEM); } |