[vlc-commits] demux: h26x: add sections for options
Francois Cartegnie
git at videolan.org
Tue Mar 13 19:09:29 CET 2018
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Mar 13 17:59:53 2018 +0100| [154cbf00a7d54961eb3b5a4b8e0b7533756d1e79] | committer: Francois Cartegnie
demux: h26x: add sections for options
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=154cbf00a7d54961eb3b5a4b8e0b7533756d1e79
---
modules/demux/mpeg/h26x.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/demux/mpeg/h26x.c b/modules/demux/mpeg/h26x.c
index fb5114f269..3072551a5b 100644
--- a/modules/demux/mpeg/h26x.c
+++ b/modules/demux/mpeg/h26x.c
@@ -52,6 +52,7 @@ vlc_module_begin ()
set_subcategory( SUBCAT_INPUT_DEMUX )
set_description( N_("H264 video demuxer" ) )
set_capability( "demux", 6 )
+ set_section( N_("H264 video demuxer" ), NULL )
add_float( "h264-fps", 0.0, FPS_TEXT, FPS_LONGTEXT, true )
set_callbacks( OpenH264, Close )
add_shortcut( "h264" )
@@ -62,6 +63,7 @@ vlc_module_begin ()
set_subcategory( SUBCAT_INPUT_DEMUX )
set_description( N_("HEVC/H.265 video demuxer" ) )
set_capability( "demux", 6 )
+ set_section( N_("HEVC/H.265 video demuxer" ), NULL )
add_float( "hevc-fps", 0.0, FPS_TEXT, FPS_LONGTEXT, true )
set_callbacks( OpenHEVC, Close )
add_shortcut( "hevc", "h265" )
More information about the vlc-commits
mailing list