mirror of https://git.ffmpeg.org/ffmpeg.git
avconv: Simplify poll_filters() return value check
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
2080bea4a7
commit
7ebf1b4ada
14
avconv.c
14
avconv.c
|
@ -2556,16 +2556,12 @@ static int transcode(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = poll_filters();
|
ret = poll_filters();
|
||||||
if (ret < 0) {
|
if (ret < 0 && (ret != AVERROR_EOF || ret != AVERROR(EAGAIN))) {
|
||||||
if (ret == AVERROR_EOF || ret == AVERROR(EAGAIN)) {
|
char errbuf[128];
|
||||||
continue;
|
av_strerror(ret, errbuf, sizeof(errbuf));
|
||||||
} else {
|
|
||||||
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", errbuf);
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* dump report by using the output first video and audio streams */
|
/* dump report by using the output first video and audio streams */
|
||||||
|
|
Loading…
Reference in New Issue