[FFmpeg-cvslog] avfilter/vf_premultiply: forward status back from output to all input links

Paul B Mahol git at videolan.org
Wed Sep 25 14:07:52 EEST 2019


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Sep 25 13:02:39 2019 +0200| [55b32584b80e197f049f02d761e7914f5d61c89d] | committer: Paul B Mahol

avfilter/vf_premultiply: forward status back from output to all input links

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

 libavfilter/vf_premultiply.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_premultiply.c b/libavfilter/vf_premultiply.c
index a9404b4eb3..5338af742c 100644
--- a/libavfilter/vf_premultiply.c
+++ b/libavfilter/vf_premultiply.c
@@ -639,6 +639,8 @@ static int activate(AVFilterContext *ctx)
         int ret, status;
         int64_t pts;
 
+        FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx);
+
         if ((ret = ff_inlink_consume_frame(ctx->inputs[0], &frame)) > 0) {
             ret = filter_frame(ctx, &out, frame, frame);
             av_frame_free(&frame);



More information about the ffmpeg-cvslog mailing list