X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=main.cpp;h=e8c0dc4ac1fe7e6769dea0b98377b29729c137b1;hb=728b20a90b39b96eb5ac5ecd17cd5c3cbaac7009;hp=865b98b82a3883693eacac6b88dd06b5548073c0;hpb=ced2e0772e21dd5cc23926a650c76270c0bdf2b2;p=nageru diff --git a/main.cpp b/main.cpp index 865b98b..e8c0dc4 100644 --- a/main.cpp +++ b/main.cpp @@ -3,6 +3,7 @@ #include #include +#include #include #include #include @@ -15,13 +16,15 @@ extern "C" { #include +#include "clip_list.h" +#include "defs.h" #include "mainwindow.h" #include "ffmpeg_raii.h" +#include "httpd.h" +#include "player.h" #include "post_to_main_thread.h" #include "ui_mainwindow.h" -#define MAX_STREAMS 16 - using namespace std; using namespace std::chrono; @@ -37,24 +40,49 @@ string filename_for_frame(unsigned stream_idx, int64_t pts) mutex frame_mu; vector frames[MAX_STREAMS]; +QGLWidget *global_share_widget; +HTTPD *global_httpd; -int thread_func(); +int record_thread_func(); int main(int argc, char **argv) { - av_register_all(); avformat_network_init(); + global_httpd = new HTTPD; + global_httpd->start(DEFAULT_HTTPD_PORT); + + QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true); + + QSurfaceFormat fmt; + fmt.setDepthBufferSize(0); + fmt.setStencilBufferSize(0); + fmt.setProfile(QSurfaceFormat::CoreProfile); + fmt.setMajorVersion(3); + fmt.setMinorVersion(1); + + // Turn off vsync, since Qt generally gives us at most frame rate + // (display frequency) / (number of QGLWidgets active). + fmt.setSwapInterval(0); + + QSurfaceFormat::setDefaultFormat(fmt); + + QGLFormat::setDefaultFormat(QGLFormat::fromSurfaceFormat(fmt)); QApplication app(argc, argv); + global_share_widget = new QGLWidget(); + if (!global_share_widget->isValid()) { + fprintf(stderr, "Failed to initialize OpenGL. Futatabi needs at least OpenGL 3.1 to function properly.\n"); + exit(1); + } MainWindow mainWindow; mainWindow.show(); - thread(thread_func).detach(); + thread(record_thread_func).detach(); return app.exec(); } -int thread_func() +int record_thread_func() { auto format_ctx = avformat_open_input_unique("multiangle.mp4", nullptr, nullptr); if (format_ctx == nullptr) { @@ -74,8 +102,8 @@ int thread_func() if (av_read_frame(format_ctx.get(), &pkt) != 0) { break; } - fprintf(stderr, "Got a frame from camera %d, pts = %ld, size = %d\n", - pkt.stream_index, pkt.pts, pkt.size); + //fprintf(stderr, "Got a frame from camera %d, pts = %ld, size = %d\n", + // pkt.stream_index, pkt.pts, pkt.size); string filename = filename_for_frame(pkt.stream_index, pkt.pts); FILE *fp = fopen(filename.c_str(), "wb"); if (fp == nullptr) { @@ -92,6 +120,8 @@ int thread_func() global_mainwindow->ui->input2_display->setFrame(pkt.stream_index, pkt.pts); } else if (pkt.stream_index == 2) { global_mainwindow->ui->input3_display->setFrame(pkt.stream_index, pkt.pts); + } else if (pkt.stream_index == 3) { + global_mainwindow->ui->input4_display->setFrame(pkt.stream_index, pkt.pts); } });