[FFmpeg-cvslog] avfilter/vf_blend: Don't redefine options name

Andreas Rheinhardt git at videolan.org
Sun Sep 19 06:13:59 EEST 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | 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 <andreas.rheinhardt at outlook.com>

> 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[] = {
     {



More information about the ffmpeg-cvslog mailing list