// // Created by loki on 5/30/19. // #include #include #include "nvhttp.h" #include "stream.h" extern "C" { #include } #include 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; }