aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfritsch <Peter.Fruehberger@gmail.com>2013-12-27 22:52:41 +0100
committerfritsch <Peter.Fruehberger@gmail.com>2013-12-27 22:52:41 +0100
commit892dd6bd57507730b56552b8c66289290fa4f445 (patch)
tree44588a1b9f22d7702ae8ca1883a6835fadb84927
parent97e915b8b5a9e93e5da61453604ef6b04c26e757 (diff)
ActiveAE: Fix some print cosmetics in ActiveAESink
-rw-r--r--xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAESink.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAESink.cpp b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAESink.cpp
index c2c5eb8e7a..7053313044 100644
--- a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAESink.cpp
+++ b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAESink.cpp
@@ -438,7 +438,7 @@ void CActiveAESink::StateMachine(int signal, Protocol *port, Message *msg)
break;
default: // we are in no state, should not happen
- CLog::Log(LOGERROR, "CActiveSink::%s - no valid state: %d", __FUNCTION__, m_state);
+ CLog::Log(LOGERROR, "CActiveAESink::%s - no valid state: %d", __FUNCTION__, m_state);
return;
}
} // for
@@ -639,7 +639,7 @@ void CActiveAESink::OpenSink()
if (driver.empty() && m_sink)
driver = m_sink->GetName();
- CLog::Log(LOGINFO, "CActiveAE::OpenSink - initialize sink");
+ CLog::Log(LOGINFO, "CActiveAESink::OpenSink - initialize sink");
if (m_sink)
{
@@ -658,12 +658,12 @@ void CActiveAESink::OpenSink()
// WARNING: this changes format and does not use passthrough
m_sinkFormat = m_requestedFormat;
- CLog::Log(LOGDEBUG, "CActiveAE::OpenSink - trying to open device %s", device.c_str());
+ CLog::Log(LOGDEBUG, "CActiveAESink::OpenSink - trying to open device %s", device.c_str());
m_sink = CAESinkFactory::Create(device, m_sinkFormat, passthrough);
if (!m_sink)
{
- CLog::Log(LOGERROR, "CActiveAE::OpenSink - no sink was returned");
+ CLog::Log(LOGERROR, "CActiveAESink::OpenSink - no sink was returned");
m_extError = true;
return;
}
@@ -682,7 +682,7 @@ void CActiveAESink::OpenSink()
m_sinkFormat.m_dataFormat = AE_FMT_S32NE;
#endif
- CLog::Log(LOGDEBUG, "CActiveAE::OpenSink - %s Initialized:", m_sink->GetName());
+ CLog::Log(LOGDEBUG, "CActiveAESink::OpenSink - %s Initialized:", m_sink->GetName());
CLog::Log(LOGDEBUG, " Output Device : %s", m_deviceFriendlyName.c_str());
CLog::Log(LOGDEBUG, " Sample Rate : %d", m_sinkFormat.m_sampleRate);
CLog::Log(LOGDEBUG, " Sample Format : %s", CAEUtil::DataFormatToStr(m_sinkFormat.m_dataFormat));