aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewermedia_streamingaudio.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-02-10 11:50:45 -0700
committerMcCabe Maxsted2011-02-10 11:50:45 -0700
commit795cf17b63fb33931e6e34b9ed132cd79081c14a (patch)
treecb7ceb6c9c601b44a3b1ec6cd59529c4c3a49163 /linden/indra/newview/llviewermedia_streamingaudio.cpp
parentPatch by Armin to split apart the 'Plugin' logcontrol.xml entry to avoid spam... (diff)
downloadmeta-impy-795cf17b63fb33931e6e34b9ed132cd79081c14a.zip
meta-impy-795cf17b63fb33931e6e34b9ed132cd79081c14a.tar.gz
meta-impy-795cf17b63fb33931e6e34b9ed132cd79081c14a.tar.bz2
meta-impy-795cf17b63fb33931e6e34b9ed132cd79081c14a.tar.xz
Give a little information in the log when we fail to init the audio plugin on the first try
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llviewermedia_streamingaudio.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/newview/llviewermedia_streamingaudio.cpp b/linden/indra/newview/llviewermedia_streamingaudio.cpp
index 4bbc519..6a4dd0f 100644
--- a/linden/indra/newview/llviewermedia_streamingaudio.cpp
+++ b/linden/indra/newview/llviewermedia_streamingaudio.cpp
@@ -72,7 +72,10 @@ void LLStreamingAudio_MediaPlugins::start(const std::string& url)
72 mVersion = mMediaPlugin ? mMediaPlugin->getPluginVersion() : std::string(); 72 mVersion = mMediaPlugin ? mMediaPlugin->getPluginVersion() : std::string();
73 73
74 if(!mMediaPlugin) 74 if(!mMediaPlugin)
75 {
76 llinfos << "mMediaPlugin failed to initialize!" << llendl;
75 return; 77 return;
78 }
76 79
77 if (!url.empty()) { 80 if (!url.empty()) {
78 llinfos << "Starting internet stream: " << url << llendl; 81 llinfos << "Starting internet stream: " << url << llendl;