]> git.sesse.net Git - vlc/commitdiff
For some unknown reason, the previous commit was not fully done
authorClément Stenac <zorglub@videolan.org>
Thu, 16 Dec 2004 18:14:29 +0000 (18:14 +0000)
committerClément Stenac <zorglub@videolan.org>
Thu, 16 Dec 2004 18:14:29 +0000 (18:14 +0000)
13 files changed:
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/converter/a52tofloat32.c
modules/audio_output/alsa.c
modules/audio_output/arts.c
modules/audio_output/coreaudio.c
modules/audio_output/directx.c
modules/audio_output/esd.c
modules/audio_output/file.c
modules/audio_output/hd1000a.cpp
modules/audio_output/oss.c
modules/audio_output/portaudio.c
modules/audio_output/sdl.c
modules/audio_output/waveout.c

index f5fe50f3499ee22c08cd895cf1750fe5ae360c3b..a62e420a9de4083f6140087ec135e533fa5400c4 100644 (file)
@@ -59,6 +59,7 @@ static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
 
 vlc_module_begin();
     set_description( N_("headphone channel mixer with virtual spatialization effect") );
+    set_shorname( _("Headphone effect") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AFILTER );
 
index 6023b37f9ee9f19728dcc34a78976d99877a77d0..48625a770edc404bc53de67e34b909ecaf81d192 100644 (file)
@@ -100,6 +100,7 @@ struct filter_sys_t
     "listening room.")
 
 vlc_module_begin();
+    set_shortname( _("A/52") );
     set_description( _("ATSC A/52 (AC-3) audio decoder") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_MISC );
@@ -114,7 +115,7 @@ vlc_module_begin();
 vlc_module_end();
 
 /*****************************************************************************
- * Create: 
+ * Create:
  *****************************************************************************/
 static int Create( vlc_object_t *p_this )
 {
index 706b079cf2b3897879406062c0c18845cdfb4850..f585f3726f153b1462d340ad7e83461ebd4fca5b 100644 (file)
@@ -96,6 +96,7 @@ static void ALSAFill     ( aout_instance_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
+    set_shortname( "ALSA" );
     set_description( _("ALSA audio output") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
index 35af45890d88d022a7d77e0df649931795e1b461..e76d7ce7f5904879918f35d6b45dc88b8f35973a 100644 (file)
@@ -63,6 +63,7 @@ static void Play         ( aout_instance_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
+   set_shortname( "aRts" );
    set_description( _("aRts audio output") );
    set_capability( "audio output", 50 );
     set_category( CAT_AUDIO );
index cd72439ecb71bfcf022c20b5c21a124112fefcee..4fe2960f47715a42466c662785720186479255db 100644 (file)
@@ -220,6 +220,7 @@ static OSStatus StreamListener   ( AudioStreamID inStream,
     "then be used by default for audio playback.")
 
 vlc_module_begin();
+    set_shortname( "CoreAudio" );
     set_description( _("CoreAudio output") );
     set_capability( "audio output", 100 );
     set_category( CAT_AUDIO );
index 5bed710d0c99b984f841e02a7e7b820d26aa86ad..17913d23f5f0332cd36933b499211f930261615d 100644 (file)
@@ -208,6 +208,7 @@ static int  FillBuffer        ( aout_instance_t *, int, aout_buffer_t * );
  *****************************************************************************/
 vlc_module_begin();
     set_description( _("DirectX audio output") );
+    set_shortname( "DirectX" );
     set_capability( "audio output", 100 );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
index 0981659388ccccc4e218d31ac5f180a8caed4a58..6e0a742684c9a96ce347206e99e528cb638c83ce 100644 (file)
@@ -64,6 +64,7 @@ static void Play         ( aout_instance_t * );
  *****************************************************************************/
 vlc_module_begin();
     set_description( _("EsounD audio output") );
+    set_shortname( "EsounD" );
     set_capability( "audio output", 50 );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
index 47dafb7a58dd590d73c30bc8aa69cc251bbaac85..1dff0d785e0ba5e050269f34e7d212f25264d8e9 100644 (file)
@@ -108,6 +108,7 @@ static int format_int[] = { VLC_FOURCC('u','8',' ',' '),
 
 vlc_module_begin();
     set_description( N_("File audio output") );
+    set_shortname( _("File") );
 
     add_string( "audiofile-format", "s16", NULL,
                 FORMAT_TEXT, FORMAT_LONGTEXT, VLC_TRUE );
index a7747d0a5b506f3c770bb2e29f51f96f586da92e..28a3627cd45e3e2fa589500902774cc52ebff943 100644 (file)
@@ -72,7 +72,8 @@ static void    InterleaveS16( int16_t *, int16_t * );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( N_("HD1000 audio output") );
+    set_shortname( "Roku HD1000" );
+    set_description( N_("Roku HD1000 audio output") );
     set_capability( "audio output", 100 );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
index e8df5b4edac08ab142cdbf15ded8229d30f8b557..42a22203462d370b1923246bede0a4da1afd03b3 100644 (file)
@@ -105,6 +105,7 @@ static mtime_t BufferDuration( aout_instance_t * p_aout );
     "of these drivers, then you need to enable this option." )
 
 vlc_module_begin();
+    set_shortname( "OSS" );
     set_description( _("Linux OSS audio output") );
 
     set_category( CAT_AUDIO );
index 2a3e402339dade83c184aea57fdc6bcfcf38817e..aa62e453c275ace35d352ff4434307983072cbef 100644 (file)
@@ -108,6 +108,7 @@ static int PAOpenStream( aout_instance_t * );
 #define DEVICE_LONGTEXT N_("Portaudio identifier for the output device")
 
 vlc_module_begin();
+    set_shortname( "PortAudio" );
     set_description( N_("PORTAUDIO audio output") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
index fba4a72416571e8f1f7bb59c742440fe19a88a6a..34b9087e2090c53acd851a61ef5fcea92918b35e 100644 (file)
@@ -65,6 +65,7 @@ static void SDLCallback ( void *, byte_t *, int );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
+    set_shortname( "SDL" );
     set_description( _("Simple DirectMedia Layer audio output") );
     set_capability( "audio output", 40 );
     set_category( CAT_AUDIO );
index d742c28fc82c46fa41b8483611fb5271c966a001..076ac25d6f77c888e0a46c0c11ab6158a2d0612c 100644 (file)
@@ -132,6 +132,7 @@ static void WaveOutThread( notification_thread_t * );
     "audio output mode (which is not well supported by some soundcards)." )
 
 vlc_module_begin();
+    set_shortname( "WaveOut" );
     set_description( _("Win32 waveOut extension output") );
     set_capability( "audio output", 50 );
     set_category( CAT_AUDIO );