Commit 7dae3461 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '63f7f8d1'

* commit '63f7f8d1':
  avconv: Drop an impossible check
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 4440c8e9 63f7f8d1
......@@ -4126,7 +4126,7 @@ static int transcode(void)
}
ret = transcode_step();
if (ret < 0 && (ret != AVERROR_EOF && ret != AVERROR(EAGAIN))) {
if (ret < 0 && ret != AVERROR_EOF) {
char errbuf[128];
av_strerror(ret, errbuf, sizeof(errbuf));
......
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