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

File audio output: remove useless longhelp

We have the format selection for that
(cherry picked from commit 945943a21cf2962f2162e673920b0b503ef20f6e)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 6d2cf9f3
......@@ -78,9 +78,6 @@ static void Play ( audio_output_t *, block_t * );
* Module descriptor
*****************************************************************************/
#define FORMAT_TEXT N_("Output format")
#define FORMAT_LONGTEXT N_("One of \"u8\", \"s8\", \"u16\", \"s16\", " \
"\"u16_le\", \"s16_le\", \"u16_be\", \"s16_be\", \"fixed32\", " \
"\"float32\" or \"spdif\"")
#define CHANNELS_TEXT N_("Number of output channels")
#define CHANNELS_LONGTEXT N_("By default (0), all the channels of the incoming " \
......@@ -116,7 +113,7 @@ vlc_module_begin ()
add_savefile( "audiofile-file", "audiofile.wav", FILE_TEXT,
FILE_LONGTEXT, false )
add_string( "audiofile-format", "s16",
FORMAT_TEXT, FORMAT_LONGTEXT, true )
FORMAT_TEXT, FORMAT_TEXT, true )
change_string_list( format_list, 0, 0 )
add_integer( "audiofile-channels", 0,
CHANNELS_TEXT, CHANNELS_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