Compile for Multicasting

This commit is contained in:
loki
2020-02-08 16:26:38 +01:00
parent 753f57c71b
commit 5cd0fd76bf
21 changed files with 1259 additions and 824 deletions

View File

@@ -15,7 +15,7 @@
#include <boost/log/sources/severity_logger.hpp>
#include "nvhttp.h"
#include "stream.h"
#include "rtsp.h"
#include "config.h"
#include "thread_pool.h"
@@ -124,6 +124,12 @@ int main(int argc, char *argv[]) {
return 7;
}
{
proc::ctx_t ctx;
ctx.name = "Desktop"s;
proc_opt->get_apps().emplace(std::begin(proc_opt->get_apps()), std::move(ctx));
}
proc::proc = std::move(*proc_opt);
auto deinit_guard = platf::init();