[vlc-commits] mosaic_bridge: fix options being hidden in GUI

Lyndon Brown git at videolan.org
Sat Sep 26 09:28:16 CEST 2020


vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Sun Apr  7 02:56:21 2019 +0100| [f9b5677ada19cff818737cbc4533f31376c4b90c] | committer: Jean-Baptiste Kempf

mosaic_bridge: fix options being hidden in GUI

not having a cat+subcat specified means that the options were ignored
when constructing the preferences tree in Qt (and possibly others).

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 modules/stream_out/mosaic_bridge.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/stream_out/mosaic_bridge.c b/modules/stream_out/mosaic_bridge.c
index eda165b00c..5171474320 100644
--- a/modules/stream_out/mosaic_bridge.c
+++ b/modules/stream_out/mosaic_bridge.c
@@ -143,6 +143,9 @@ vlc_module_begin ()
     set_capability( "sout output", 0 )
     add_shortcut( "mosaic-bridge" )
 
+    set_category( CAT_SOUT )
+    set_subcategory( SUBCAT_SOUT_STREAM )
+
     add_string( CFG_PREFIX "id", "Id", ID_TEXT, ID_LONGTEXT,
                 false )
     add_integer( CFG_PREFIX "width", 0, WIDTH_TEXT,



More information about the vlc-commits mailing list