From 5213af58a932b7149a97adeac3274c96064b4785 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Sun, 28 Nov 2010 03:32:27 +0100 Subject: [PATCH] Tried to make audio streams stutter less on Unix. Will have to investigate this a bit further someday. Postpone until (if ever) Henri explains his decision to choke down priority of new slplugin processes down to idle. --- indra/newview/llviewermedia_streamingaudio.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/llviewermedia_streamingaudio.cpp b/indra/newview/llviewermedia_streamingaudio.cpp index de0cb58b5..6adff36c6 100644 --- a/indra/newview/llviewermedia_streamingaudio.cpp +++ b/indra/newview/llviewermedia_streamingaudio.cpp @@ -165,6 +165,7 @@ LLPluginClassMedia* LLStreamingAudio_MediaPlugins::initializeMedia(const std::st if (media_source) { media_source->setLoop(false); // audio streams are not expected to loop + media_source->setPriority(LLPluginClassMedia::PRIORITY_HIGH); // don't stutter on me! -SG } return media_source;