cd494c3937
xine-ui (0.9.23) unstable; urgency=low * xinerama bug fixes (very fullscreen, window position when switching from fullscreen to normal mode), * shiny new help dialog, * some small usability improvements, * fix some memleaks, * main menu reorg, localized, * new deinterlacing, it use post plugins now, * add --bug-report and --list-plugins option to xine-ui, * splash screen per skin is possible, * all meta infos are retrieve at the same time, when playing audio CD, * support new unscaled OSD (note: osd need a complete rework), * new playlist management command in xine-remote, * new "stop after this stream" feature, * grab streams recusively (with enqueuing and file browser), * fix reference mrl handling, * add 'loop' and two new playlist options 'first' and 'last', in session control, * fix shortcut grabber, * sound volume control can be sets with sound card mixer or software amplification, * add help in chain reaction window, * double clicking in output window is a fullscreen toggle now, * subtitle autoload feature added, * new TVout feature, using libnvtvsimple for nVIDIA cards, and atitvout for ATI, * store spu offset in toxine's playlist, * fix skin downloder, * fix support of huge playlists, * contextual menu popup in playlist window, * fix control's window sliders, * ton of fbxine improvments (post plugin, deinterlacing, spu, stream infos...), * bunch of other fix.
21 lines
713 B
Text
21 lines
713 B
Text
$NetBSD: patch-ad,v 1.2 2004/03/28 21:11:35 mycroft Exp $
|
|
|
|
--- src/xitk/panel.c.orig 2003-11-18 16:48:22.000000000 +0000
|
|
+++ src/xitk/panel.c 2004-03-28 20:49:10.000000000 +0000
|
|
@@ -1430,14 +1430,14 @@
|
|
|
|
{
|
|
pthread_attr_t pth_attrs;
|
|
-#if !defined (__OpenBSD__)
|
|
+#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
|
|
struct sched_param pth_params;
|
|
#endif
|
|
|
|
pthread_attr_init(&pth_attrs);
|
|
|
|
/* this won't work on linux, freebsd 5.0 */
|
|
-#if !defined (__OpenBSD__)
|
|
+#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
|
|
pthread_attr_getschedparam(&pth_attrs, &pth_params);
|
|
pth_params.sched_priority = sched_get_priority_min(SCHED_OTHER);
|
|
pthread_attr_setschedparam(&pth_attrs, &pth_params);
|