Removed Git history due to personal info

This commit is contained in:
loki
2019-12-03 20:23:33 +01:00
commit ae29230f59
30 changed files with 3754 additions and 0 deletions

28
main.cpp Normal file
View File

@@ -0,0 +1,28 @@
//
// Created by loki on 5/30/19.
//
#include <thread>
#include <fstream>
#include "nvhttp.h"
#include "stream.h"
extern "C" {
#include <rs.h>
}
#include <libavcodec/avcodec.h>
using namespace std::literals;
int main() {
reed_solomon_init();
std::thread httpThread { nvhttp::start };
std::thread rtpThread { stream::rtpThread };
httpThread.join();
rtpThread.join();
return 0;
}