]> git.sesse.net Git - vlc/commitdiff
* modules/audio_output/directx.c: don't set the default audio output to mono even...
authorGildas Bazin <gbazin@videolan.org>
Mon, 15 Dec 2003 21:35:37 +0000 (21:35 +0000)
committerGildas Bazin <gbazin@videolan.org>
Mon, 15 Dec 2003 21:35:37 +0000 (21:35 +0000)
  Too many people just don't know how to set the windows speakers configuration setting properly.

modules/audio_output/directx.c

index 6ec11a96f9f8c20609cd3f96071de9a6d36f53b6..59ce6fb781dcb8684b9fb8b6f6c1eb093ead6408 100644 (file)
@@ -2,7 +2,7 @@
  * directx.c: Windows DirectX audio output method
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: directx.c,v 1.23 2003/08/14 11:47:32 gbazin Exp $
+ * $Id: directx.c,v 1.24 2003/12/15 21:35:37 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -477,9 +477,12 @@ static void Probe( aout_instance_t * p_aout )
     case DSSPEAKER_QUAD:
         val.i_int = AOUT_VAR_2F2R;
         break;
+#if 0 /* Lots of people just get their settings wrong and complain that
+       * this is a problem with VLC so just don't ever set mono by default. */
     case DSSPEAKER_MONO:
         val.i_int = AOUT_VAR_MONO;
         break;
+#endif
     case DSSPEAKER_SURROUND:
     case DSSPEAKER_STEREO:
     default: