]> git.sesse.net Git - vlc/commitdiff
* modules/audio_output/directx.c: use VLC_THREAD_PRIORITY_HIGHEST for
authorGildas Bazin <gbazin@videolan.org>
Sun, 5 Jan 2003 13:39:32 +0000 (13:39 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 5 Jan 2003 13:39:32 +0000 (13:39 +0000)
the audio output thread. That should make Win9x/Me happier.

modules/audio_output/directx.c

index d8ac7a0f5fc3f04d5220a97d341dd806803ab48b..4de8bce65e3a9873b7329f0b14bc7f799669e247 100644 (file)
@@ -2,7 +2,7 @@
  * directx.c: Windows DirectX audio output method
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: directx.c,v 1.9 2002/11/26 22:20:18 gbazin Exp $
+ * $Id: directx.c,v 1.10 2003/01/05 13:39:32 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -176,7 +176,7 @@ static int OpenAudio( vlc_object_t *p_this )
     p_aout->output.output.i_format = VLC_FOURCC('f','l','3','2');
     if( DirectxCreateSecondaryBuffer( p_aout ) )
     {
-        msg_Err( p_aout, "cannot create WAVE_FORMAT_IEEE_FLOAT buffer" );
+        msg_Dbg( p_aout, "cannot create WAVE_FORMAT_IEEE_FLOAT buffer" );
 
         p_aout->output.output.i_format = VLC_FOURCC('s','1','6','l');
         if( DirectxCreateSecondaryBuffer( p_aout ) )
@@ -191,7 +191,7 @@ static int OpenAudio( vlc_object_t *p_this )
     if( vlc_thread_create( p_aout->output.p_sys->p_notif,
                            "DirectSound Notification Thread",
                            DirectSoundThread,
-                           THREAD_PRIORITY_TIME_CRITICAL, 1 ) )
+                           VLC_THREAD_PRIORITY_HIGHEST, 1 ) )
     {
         msg_Err( p_aout, "cannot create DirectSoundThread" );
         goto error;