[FFmpeg-cvslog] lavfi/avfilter: raise filter_frame() error.

Clément Bœsch git at videolan.org
Wed Mar 13 19:11:10 CET 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Mar 13 09:56:26 2013 +0100| [df5be5e27575827d8da404fc066be0f9ff801d2e] | committer: Clément Bœsch

lavfi/avfilter: raise filter_frame() error.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=df5be5e27575827d8da404fc066be0f9ff801d2e
---

 libavfilter/avfilter.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 75b42f2..1d27817 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -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;



More information about the ffmpeg-cvslog mailing list