mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-12 00:26:41 +02:00
Add Oboe player for Android
This commit is contained in:
parent
d826a89795
commit
5b9fc3d68d
7 changed files with 167 additions and 10 deletions
|
@ -130,6 +130,8 @@ void Controller::onMessageReceived(ClientConnection* /*connection*/, const msg::
|
|||
player_ = make_unique<AlsaPlayer>(pcmDevice_, stream_);
|
||||
#elif HAS_OPENSL
|
||||
player_ = make_unique<OpenslPlayer>(pcmDevice_, stream_);
|
||||
#elif HAS_OBOE
|
||||
player_ = make_unique<OboePlayer>(pcmDevice_, stream_);
|
||||
#elif HAS_COREAUDIO
|
||||
player_ = make_unique<CoreAudioPlayer>(pcmDevice_, stream_);
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue