ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Fri Sep 10 22:37:11 2021 +0200| [bb1ef872a3c364eca3f8d4f624161e7a66932de9] | committer: Andreas Rheinhardt
avfilter/vf_blend: Don't redefine options name Use AVFILTER_DEFINE_CLASS_EXT instead. Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bb1ef872a3c364eca3f8d4f624161e7a66932de9 --- libavfilter/vf_blend.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 84f1e9f5bb..73fdea3c79 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -943,8 +943,7 @@ static int tblend_filter_frame(AVFilterLink *inlink, AVFrame *frame) return 0; } -#define tblend_options blend_options -AVFILTER_DEFINE_CLASS(tblend); +AVFILTER_DEFINE_CLASS_EXT(tblend, "tblend", blend_options); static const AVFilterPad tblend_inputs[] = { { _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
