Commit 08490be5 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

File audio output: limit the number of channels

parent ed19566c
...@@ -117,6 +117,7 @@ vlc_module_begin () ...@@ -117,6 +117,7 @@ vlc_module_begin ()
change_string_list( format_list, 0, 0 ) change_string_list( format_list, 0, 0 )
add_integer( "audiofile-channels", 0, add_integer( "audiofile-channels", 0,
CHANNELS_TEXT, CHANNELS_LONGTEXT, true ) CHANNELS_TEXT, CHANNELS_LONGTEXT, true )
change_integer_range( 0, 6 )
add_savefile( "audiofile-file", "audiofile.wav", FILE_TEXT, add_savefile( "audiofile-file", "audiofile.wav", FILE_TEXT,
FILE_LONGTEXT, false ) FILE_LONGTEXT, false )
add_bool( "audiofile-wav", true, WAV_TEXT, WAV_LONGTEXT, true ) add_bool( "audiofile-wav", true, WAV_TEXT, WAV_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