Commit b26e366b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Avio: correctly split input and sout options

parent ceeaf1bc
...@@ -37,6 +37,7 @@ void OutCloseAvio(vlc_object_t *); ...@@ -37,6 +37,7 @@ void OutCloseAvio(vlc_object_t *);
set_capability("access", -1) \ set_capability("access", -1) \
add_shortcut("avio", "rtmp", "rtmpe", "rtmps", "rtmpt", "rtmpte", "rtmpts") \ add_shortcut("avio", "rtmp", "rtmpe", "rtmps", "rtmpt", "rtmpte", "rtmpts") \
set_callbacks(OpenAvio, CloseAvio) \ set_callbacks(OpenAvio, CloseAvio) \
set_section(N_("Input"), NULL ) \
add_string("avio-options", NULL, AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true) \ add_string("avio-options", NULL, AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true) \
add_submodule () \ add_submodule () \
set_shortname( "libavformat" ) \ set_shortname( "libavformat" ) \
...@@ -46,4 +47,5 @@ void OutCloseAvio(vlc_object_t *); ...@@ -46,4 +47,5 @@ void OutCloseAvio(vlc_object_t *);
set_subcategory( SUBCAT_SOUT_ACO ) \ set_subcategory( SUBCAT_SOUT_ACO ) \
add_shortcut( "avio", "rtmp" ) \ add_shortcut( "avio", "rtmp" ) \
set_callbacks( OutOpenAvio, OutCloseAvio) \ set_callbacks( OutOpenAvio, OutCloseAvio) \
set_section(N_("Stream output"), NULL ) \
add_string("sout-avio-options", NULL, AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true) add_string("sout-avio-options", NULL, AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment