buffersrc: do not discard the error from ff_filter_frame()

This commit is contained in:
Anton Khirnov 2016-02-09 22:01:26 +01:00
parent f7d77b9a5d
commit fb25d99b0a
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ static int request_frame(AVFilterLink *link)
}
av_fifo_generic_read(c->fifo, &frame, sizeof(frame), NULL);
ff_filter_frame(link, frame);
ret = ff_filter_frame(link, frame);
return ret;
}