From b5b6ef13a289551bd60b1281ffb630f85c604ca1 Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Wed, 29 Jan 2003 14:03:07 +0000 Subject: [PATCH] * include/vlc_threads.h: VLC_THREAD_PRIORITY_VIDEO equals THREAD_PRIORITY_BELOW_NORMAL under Win9x/Me. --- include/vlc_threads.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/vlc_threads.h b/include/vlc_threads.h index 14d018f645..b93b328b17 100644 --- a/include/vlc_threads.h +++ b/include/vlc_threads.h @@ -3,7 +3,7 @@ * This header provides portable declarations for mutexes & conditions ***************************************************************************** * Copyright (C) 1999, 2002 VideoLAN - * $Id: vlc_threads.h,v 1.23 2003/01/24 06:31:56 titer Exp $ + * $Id: vlc_threads.h,v 1.24 2003/01/29 14:03:07 gbazin Exp $ * * Authors: Jean-Marc Dressler * Samuel Hocevar @@ -85,7 +85,8 @@ (IS_WINNT ? THREAD_PRIORITY_TIME_CRITICAL : 0) # define VLC_THREAD_PRIORITY_AUDIO \ (IS_WINNT ? THREAD_PRIORITY_HIGHEST : 0) -# define VLC_THREAD_PRIORITY_VIDEO 0 +# define VLC_THREAD_PRIORITY_VIDEO \ + (IS_WINNT ? 0 : THREAD_PRIORITY_BELOW_NORMAL ) # define VLC_THREAD_PRIORITY_OUTPUT \ (IS_WINNT ? THREAD_PRIORITY_ABOVE_NORMAL : 0) # define VLC_THREAD_PRIORITY_HIGHEST \ -- 2.20.1