[vlc-commits] Avio: correctly split input and sout options

Jean-Baptiste Kempf git at videolan.org
Mon Aug 19 15:16:25 CEST 2013


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Aug 19 15:15:21 2013 +0200| [b26e366bfbc204683fa3deea28d09b33bc05f603] | committer: Jean-Baptiste Kempf

Avio: correctly split input and sout options

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

 modules/access/avio.h |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/access/avio.h b/modules/access/avio.h
index ae95bee..86089b4 100644
--- a/modules/access/avio.h
+++ b/modules/access/avio.h
@@ -37,6 +37,7 @@ void OutCloseAvio(vlc_object_t *);
     set_capability("access", -1)            \
     add_shortcut("avio", "rtmp", "rtmpe", "rtmps", "rtmpt", "rtmpte", "rtmpts") \
     set_callbacks(OpenAvio, CloseAvio) \
+    set_section(N_("Input"), NULL ) \
     add_string("avio-options", NULL, AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true) \
     add_submodule () \
         set_shortname( "libavformat" ) \
@@ -46,4 +47,5 @@ void OutCloseAvio(vlc_object_t *);
         set_subcategory( SUBCAT_SOUT_ACO ) \
         add_shortcut( "avio", "rtmp" ) \
         set_callbacks( OutOpenAvio, OutCloseAvio) \
+        set_section(N_("Stream output"), NULL ) \
         add_string("sout-avio-options", NULL, AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true)



More information about the vlc-commits mailing list