2019-12-03 19:23:33 +00:00
|
|
|
#ifndef SUNSHINE_CONFIG_H
|
|
|
|
#define SUNSHINE_CONFIG_H
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace config {
|
|
|
|
struct video_t {
|
|
|
|
// ffmpeg params
|
|
|
|
int max_b_frames;
|
|
|
|
int gop_size;
|
|
|
|
int crf; // higher == more compression and less quality
|
2019-12-12 12:13:10 +00:00
|
|
|
int qp; // higher == more compression and less quality, ignored if crf != 0
|
2019-12-06 19:52:08 +00:00
|
|
|
|
2019-12-06 20:41:30 +00:00
|
|
|
int threads; // Number threads used by ffmpeg
|
|
|
|
|
2019-12-06 19:52:08 +00:00
|
|
|
std::string profile;
|
|
|
|
std::string preset;
|
|
|
|
std::string tune;
|
2019-12-03 19:23:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct stream_t {
|
|
|
|
std::chrono::milliseconds ping_timeout;
|
2019-12-11 22:37:20 +00:00
|
|
|
|
2019-12-16 21:02:21 +00:00
|
|
|
std::string file_apps;
|
|
|
|
|
2019-12-11 22:37:20 +00:00
|
|
|
int fec_percentage;
|
2019-12-03 19:23:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct nvhttp_t {
|
2019-12-27 15:04:18 +00:00
|
|
|
// Could be any of the following values:
|
|
|
|
// pc|lan|wan
|
|
|
|
std::string origin_pin_allowed;
|
|
|
|
|
2019-12-03 19:23:33 +00:00
|
|
|
std::string pkey; // must be 2048 bits
|
|
|
|
std::string cert; // must be signed with a key of 2048 bits
|
|
|
|
|
2019-12-25 23:01:06 +00:00
|
|
|
std::string sunshine_name;
|
|
|
|
|
2019-12-03 19:23:33 +00:00
|
|
|
std::string unique_id; //UUID
|
|
|
|
std::string file_devices;
|
|
|
|
|
|
|
|
std::string external_ip;
|
|
|
|
};
|
|
|
|
|
2019-12-22 22:34:12 +00:00
|
|
|
struct input_t {
|
|
|
|
std::chrono::milliseconds back_button_timeout;
|
|
|
|
};
|
|
|
|
|
2019-12-03 19:23:33 +00:00
|
|
|
extern video_t video;
|
|
|
|
extern stream_t stream;
|
|
|
|
extern nvhttp_t nvhttp;
|
2019-12-22 22:34:12 +00:00
|
|
|
extern input_t input;
|
2019-12-03 22:19:00 +00:00
|
|
|
|
|
|
|
void parse_file(const char *file);
|
2019-12-03 19:23:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|