mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-30 02:37:15 +02:00
66 lines
1.5 KiB
C++
66 lines
1.5 KiB
C++
/***
|
|
This file is part of snapcast
|
|
Copyright (C) 2014-2020 Johannes Pohl
|
|
|
|
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
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
***/
|
|
|
|
#ifndef CLIENT_SETTINGS_HPP
|
|
#define CLIENT_SETTINGS_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common/sample_format.hpp"
|
|
#include "player/pcm_device.hpp"
|
|
|
|
|
|
struct ClientSettings
|
|
{
|
|
enum class SharingMode
|
|
{
|
|
exclusive,
|
|
shared
|
|
};
|
|
|
|
struct ServerSettings
|
|
{
|
|
std::string host{""};
|
|
size_t port{1704};
|
|
};
|
|
|
|
struct PlayerSettings
|
|
{
|
|
std::string player_name{""};
|
|
int latency{0};
|
|
PcmDevice pcm_device;
|
|
SampleFormat sample_format;
|
|
SharingMode sharing_mode{SharingMode::shared};
|
|
};
|
|
|
|
struct LoggingSettings
|
|
{
|
|
bool debug{false};
|
|
std::string debug_logfile{""};
|
|
};
|
|
|
|
size_t instance{1};
|
|
std::string host_id;
|
|
|
|
ServerSettings server;
|
|
PlayerSettings player;
|
|
LoggingSettings logging;
|
|
};
|
|
|
|
#endif
|