X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ffmpeg_capture.h;h=705d25ffe5a47461e297401e81e7c6ccd6b69eaf;hb=327534a3031a332423411c9599c741f2f81657df;hp=f718c70a23ff4dccceb7df40877f389e44815266;hpb=a13e862be5f67802e5a9e04b150e2ed2ca6ffae0;p=nageru diff --git a/ffmpeg_capture.h b/ffmpeg_capture.h index f718c70..705d25f 100644 --- a/ffmpeg_capture.h +++ b/ffmpeg_capture.h @@ -78,6 +78,12 @@ public: producer_thread_should_quit.wakeup(); } + // Will stop the stream even if it's hung on blocking I/O. + void disconnect() + { + should_interrupt = true; + } + // CaptureInterface. void set_video_frame_allocator(bmusb::FrameAllocator *allocator) override { @@ -207,6 +213,9 @@ private: bmusb::VideoFormat construct_video_format(const AVFrame *frame, AVRational video_timebase); UniqueFrame make_video_frame(const AVFrame *frame, const std::string &pathname, bool *error); + static int interrupt_cb_thunk(void *unique); + int interrupt_cb(); + std::string description, filename; uint16_t timecode = 0; unsigned width, height; @@ -215,6 +224,7 @@ private: bool running = false; int card_index = -1; double rate = 1.0; + std::atomic should_interrupt{false}; bool has_dequeue_callbacks = false; std::function dequeue_init_callback = nullptr;