From fa0c9d69d3d70ab81400c54a7a7d1446c678ef7a Mon Sep 17 00:00:00 2001 From: Tobias Rapp Date: Mon, 26 Feb 2018 08:38:53 +0100 Subject: fftools/ffmpeg: replace call to av_strerror with av_err2str Signed-off-by: Tobias Rapp --- fftools/ffmpeg.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'fftools/ffmpeg.c') diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 32caa4bfb2..3a45f43c1d 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -2175,10 +2175,7 @@ static int ifilter_send_frame(InputFilter *ifilter, AVFrame *frame) ret = reap_filters(1); if (ret < 0 && ret != AVERROR_EOF) { - char errbuf[128]; - av_strerror(ret, errbuf, sizeof(errbuf)); - - av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", errbuf); + av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret)); return ret; } @@ -4638,10 +4635,7 @@ static int transcode(void) ret = transcode_step(); if (ret < 0 && ret != AVERROR_EOF) { - char errbuf[128]; - av_strerror(ret, errbuf, sizeof(errbuf)); - - av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", errbuf); + av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret)); break; } -- cgit v1.2.3