Commit 4440c8e9 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '7ebf1b4a'

* commit '7ebf1b4a':
  avconv: Simplify poll_filters() return value check
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents c1a3683f 7ebf1b4a
......@@ -4126,16 +4126,12 @@ static int transcode(void)
}
ret = transcode_step();
if (ret < 0) {
if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN)) {
continue;
} else {
char errbuf[128];
av_strerror(ret, errbuf, sizeof(errbuf));
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);
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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment