Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Marsev <alex.marsev@gmail.com>2016-02-04 14:09:59 +0300
committerAlex Marsev <alex.marsev@gmail.com>2016-02-04 14:09:59 +0300
commitc2242e3b7a3d0d92037c3f808fe7d162947f9120 (patch)
treef8edc41c4d9356e16552981c8e237f3a071f3cea
parent3a874ee7c0486405e4b74fb8019b7567b932dc69 (diff)
Increase push audio device logging
-rw-r--r--src/AudioDevicePush.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/AudioDevicePush.cpp b/src/AudioDevicePush.cpp
index 511bdcf..ed4d730 100644
--- a/src/AudioDevicePush.cpp
+++ b/src/AudioDevicePush.cpp
@@ -39,6 +39,8 @@ namespace SaneAudioRenderer
if (!m_endOfStream)
{
+ DebugOut(ClassName(this), "finish");
+
m_endOfStream = true;
m_endOfStreamPos = GetEnd();
@@ -83,16 +85,22 @@ namespace SaneAudioRenderer
void AudioDevicePush::Start()
{
+ DebugOut(ClassName(this), "start");
+
m_backend->audioClient->Start();
}
void AudioDevicePush::Stop()
{
+ DebugOut(ClassName(this), "stop");
+
m_backend->audioClient->Stop();
}
void AudioDevicePush::Reset()
{
+ DebugOut(ClassName(this), "reset");
+
if (m_thread.joinable())
{
m_exit = true;