[FFmpeg-cvslog] fftools/ffmpeg: replace call to av_strerror with av_err2str
Tobias Rapp
git at videolan.org
Tue Feb 27 09:36:29 EET 2018
ffmpeg | branch: master | Tobias Rapp <t.rapp at noa-archive.com> | Mon Feb 26 08:38:53 2018 +0100| [fa0c9d69d3d70ab81400c54a7a7d1446c678ef7a] | committer: Tobias Rapp
fftools/ffmpeg: replace call to av_strerror with av_err2str
Signed-off-by: Tobias Rapp <t.rapp at noa-archive.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fa0c9d69d3d70ab81400c54a7a7d1446c678ef7a
---
fftools/ffmpeg.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
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;
}
More information about the ffmpeg-cvslog
mailing list