Browse Source

lavfi/avfilter: raise filter_frame() error.

tags/n2.0
Clément Bœsch 13 years ago
parent
commit
df5be5e275
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavfilter/avfilter.c

+ 1
- 2
libavfilter/avfilter.c View File

@@ -329,8 +329,7 @@ int ff_request_frame(AVFilterLink *link)
if (ret == AVERROR_EOF && link->partial_buf) {
AVFrame *pbuf = link->partial_buf;
link->partial_buf = NULL;
ff_filter_frame_framed(link, pbuf);
return 0;
ret = ff_filter_frame_framed(link, pbuf);
}
if (ret == AVERROR_EOF)
link->closed = 1;


Loading…
Cancel
Save