mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-01 23:59:43 +02:00
added warning for MacOS
This commit is contained in:
parent
2d89a08691
commit
560cdb0f01
2 changed files with 8 additions and 0 deletions
|
@ -28,6 +28,11 @@
|
|||
/// Audio Player
|
||||
/**
|
||||
* Audio player implementation using CoreAudio
|
||||
*
|
||||
* Warning:
|
||||
*
|
||||
* !! This player is experimental and might not be maintained !!
|
||||
*
|
||||
*/
|
||||
class CoreAudioPlayer : public Player
|
||||
{
|
||||
|
|
|
@ -66,6 +66,9 @@ PcmDevice getPcmDevice(const std::string& soundcard)
|
|||
|
||||
int main (int argc, char **argv)
|
||||
{
|
||||
#ifdef MACOS
|
||||
#pragma message "Warning: the Mac OS support is experimental and might not be maintained"
|
||||
#endif
|
||||
try
|
||||
{
|
||||
string soundcard("default");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue