[FFmpeg-cvslog] avfilter/f_zmq: Deduplicate AVClasses

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


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Fri Sep 10 22:33:16 2021 +0200| [c8180c1310a58467057a92e47d2bc6c586a790e5] | committer: Andreas Rheinhardt

avfilter/f_zmq: Deduplicate AVClasses

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

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

 libavfilter/f_zmq.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/libavfilter/f_zmq.c b/libavfilter/f_zmq.c
index 5de22e2fbe..3bd195f0b2 100644
--- a/libavfilter/f_zmq.c
+++ b/libavfilter/f_zmq.c
@@ -203,10 +203,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *ref)
     return ff_filter_frame(ctx->outputs[0], ref);
 }
 
-#if CONFIG_ZMQ_FILTER
+AVFILTER_DEFINE_CLASS_EXT(zmq, "(a)zmq", options);
 
-#define zmq_options options
-AVFILTER_DEFINE_CLASS(zmq);
+#if CONFIG_ZMQ_FILTER
 
 static const AVFilterPad zmq_inputs[] = {
     {
@@ -238,9 +237,6 @@ const AVFilter ff_vf_zmq = {
 
 #if CONFIG_AZMQ_FILTER
 
-#define azmq_options options
-AVFILTER_DEFINE_CLASS(azmq);
-
 static const AVFilterPad azmq_inputs[] = {
     {
         .name         = "default",
@@ -259,12 +255,12 @@ static const AVFilterPad azmq_outputs[] = {
 const AVFilter ff_af_azmq = {
     .name        = "azmq",
     .description = NULL_IF_CONFIG_SMALL("Receive commands through ZMQ and broker them to filters."),
+    .priv_class  = &zmq_class,
     .init        = init,
     .uninit      = uninit,
     .priv_size   = sizeof(ZMQContext),
     FILTER_INPUTS(azmq_inputs),
     FILTER_OUTPUTS(azmq_outputs),
-    .priv_class  = &azmq_class,
 };
 
 #endif



More information about the ffmpeg-cvslog mailing list