[vlc-commits] Win32 Waveout: reorder options
Jean-Baptiste Kempf
git at videolan.org
Tue Aug 30 01:35:39 CEST 2011
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Aug 30 01:08:18 2011 +0200| [0793427a2667ccbd778a2cf30179395978b54747] | committer: Jean-Baptiste Kempf
Win32 Waveout: reorder options
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0793427a2667ccbd778a2cf30179395978b54747
---
modules/audio_output/waveout.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/audio_output/waveout.c b/modules/audio_output/waveout.c
index 3d10416..fc0b8e4 100644
--- a/modules/audio_output/waveout.c
+++ b/modules/audio_output/waveout.c
@@ -92,7 +92,6 @@ vlc_module_begin ()
set_capability( "audio output", 50 )
set_category( CAT_AUDIO )
set_subcategory( SUBCAT_AUDIO_AOUT )
- add_bool( "waveout-float32", true, FLOAT_TEXT, FLOAT_LONGTEXT, true )
add_string( "waveout-audio-device", "wavemapper",
DEVICE_TEXT, DEVICE_LONG, false )
@@ -100,6 +99,8 @@ vlc_module_begin ()
change_string_list( ppsz_adev, ppsz_adev_text, ReloadWaveoutDevices )
change_action_add( ReloadWaveoutDevices, N_("Refresh list") )
+ add_bool( "waveout-float32", true, FLOAT_TEXT, FLOAT_LONGTEXT, true )
+
set_callbacks( Open, Close )
vlc_module_end ()
More information about the vlc-commits
mailing list