[vlc-devel] [PATCH 07/16] mux: ogg: use sout_mux_operations table

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


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

diff --git a/modules/mux/ogg.c b/modules/mux/ogg.c
index 8f8b169665..1c30cba87a 100644
--- a/modules/mux/ogg.c
+++ b/modules/mux/ogg.c
@@ -254,10 +254,14 @@ static int Open( vlc_object_t *p_this )
     p_sys->i_data_start = 0;
     p_sys->i_segment_start = 0;
     p_mux->p_sys        = 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;
 
     /* First serial number is random.
      * (Done like this because on win32 you need to seed the random number
-- 
2.30.2



More information about the vlc-devel mailing list