[vlc-devel] [PATCH 08/16] mux: wav: use sout_mux_operations table

Alexandre Janniaux ajanni at videolabs.io
Mon Mar 15 17:03:01 UTC 2021


---
 modules/mux/wav.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/modules/mux/wav.c b/modules/mux/wav.c
index a80e916e89..f64f4cac0c 100644
--- a/modules/mux/wav.c
+++ b/modules/mux/wav.c
@@ -98,10 +98,14 @@ static int Open( vlc_object_t *p_this )
     sout_mux_t *p_mux = (sout_mux_t*)p_this;
     sout_mux_sys_t  *p_sys;
 
-    p_mux->pf_control  = Control;
-    p_mux->pf_addstream = AddStream;
-    p_mux->pf_delstream = DelStream;
-    p_mux->pf_mux       = Mux;
+    static const struct sout_mux_operations mux_ops =
+    {
+        .control = Control,
+        .add_stream = AddStream,
+        .del_stream = DelStream,
+        .mux = Mux,
+    };
+    p_mux->ops = &mux_ops;
 
     p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
     if( !p_sys )
-- 
2.30.2



More information about the vlc-devel mailing list