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

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


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

Avio: correctly split input and sout options

(cherry picked from commit b26e366bfbc204683fa3deea28d09b33bc05f603)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

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

diff --git a/modules/access/avio.h b/modules/access/avio.h
index 01a864a..24f07d0 100644
--- a/modules/access/avio.h
+++ b/modules/access/avio.h
@@ -43,6 +43,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" ) \
@@ -52,4 +53,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