mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-06 10:09:33 +02:00
Change log level
This commit is contained in:
parent
b4a41e0fd7
commit
3e0d6266a7
1 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
/***
|
/***
|
||||||
This file is part of snapcast
|
This file is part of snapcast
|
||||||
Copyright (C) 2014-2020 Johannes Pohl
|
Copyright (C) 2014-2022 Johannes Pohl
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -16,7 +16,13 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
***/
|
***/
|
||||||
|
|
||||||
|
// prototype/interface header file
|
||||||
#include "coreaudio_player.hpp"
|
#include "coreaudio_player.hpp"
|
||||||
|
|
||||||
|
// local headers
|
||||||
|
#include "aixlog.hpp"
|
||||||
|
|
||||||
|
// 3rd party headers
|
||||||
#include <CoreAudio/CoreAudio.h>
|
#include <CoreAudio/CoreAudio.h>
|
||||||
|
|
||||||
namespace player
|
namespace player
|
||||||
|
@ -199,7 +205,7 @@ void CoreAudioPlayer::initAudioQueue()
|
||||||
callback(this, queue, buffers[i]);
|
callback(this, queue, buffers[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(ERROR, LOG_TAG) << "CoreAudioPlayer::worker\n";
|
LOG(DEBUG, LOG_TAG) << "CoreAudioPlayer::worker\n";
|
||||||
AudioQueueCreateTimeline(queue, &timeLine_);
|
AudioQueueCreateTimeline(queue, &timeLine_);
|
||||||
AudioQueueStart(queue, NULL);
|
AudioQueueStart(queue, NULL);
|
||||||
CFRunLoopRun();
|
CFRunLoopRun();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue