[vlc-commits] File audio output: remove useless longhelp

Jean-Baptiste Kempf git at videolan.org
Mon Jan 2 17:20:02 CET 2012


vlc/vlc-1.2 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Dec 31 03:04:42 2011 +0100| [d123c6e5931b1fe1a91e6d0fd7dbf89a801935ae] | committer: Jean-Baptiste Kempf

File audio output: remove useless longhelp

We have the format selection for that
(cherry picked from commit 945943a21cf2962f2162e673920b0b503ef20f6e)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 modules/audio_output/file.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/modules/audio_output/file.c b/modules/audio_output/file.c
index cccc01c..fb56805 100644
--- a/modules/audio_output/file.c
+++ b/modules/audio_output/file.c
@@ -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 )



More information about the vlc-commits mailing list