[FFmpeg-cvslog] avconv: Print the avfilter errors
Luca Barbato
git at videolan.org
Fri Mar 20 20:43:39 CET 2015
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Wed Mar 11 01:44:47 2015 +0100| [22a6d48b0d7367b3a45dd6db245f8ffaaa364995] | committer: Luca Barbato
avconv: Print the avfilter errors
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=22a6d48b0d7367b3a45dd6db245f8ffaaa364995
---
avconv.c | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/avconv.c b/avconv.c
index 30c1ea8..da9bc93 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1292,8 +1292,12 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
ret = poll_filters();
- if (ret < 0 && (ret != AVERROR_EOF && ret != AVERROR(EAGAIN)))
- av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
+ if (ret < 0 && (ret != AVERROR_EOF && ret != AVERROR(EAGAIN))) {
+ char errbuf[128];
+ av_strerror(ret, errbuf, sizeof(errbuf));
+
+ av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", errbuf);
+ }
ist->resample_width = decoded_frame->width;
ist->resample_height = decoded_frame->height;
@@ -2514,11 +2518,15 @@ static int transcode(void)
ret = poll_filters();
if (ret < 0) {
- if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN))
+ if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN)) {
continue;
+ } else {
+ char errbuf[128];
+ av_strerror(ret, errbuf, sizeof(errbuf));
- av_log(NULL, AV_LOG_ERROR, "Error while filtering.\n");
- break;
+ av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", errbuf);
+ break;
+ }
}
/* dump report by using the output first video and audio streams */
More information about the ffmpeg-cvslog
mailing list