X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ffmpeg_capture.cpp;h=50b4fa45109362d637dfd69c5122725f69e3828d;hb=327534a3031a332423411c9599c741f2f81657df;hp=bbbb941065f90e4a896f65237836b34ffcd4738f;hpb=316542800930d753e013e281d627a1a49ea83c8b;p=nageru diff --git a/ffmpeg_capture.cpp b/ffmpeg_capture.cpp index bbbb941..50b4fa4 100644 --- a/ffmpeg_capture.cpp +++ b/ffmpeg_capture.cpp @@ -288,6 +288,7 @@ void FFmpegCapture::producer_thread_func() producer_thread_should_quit.sleep_for(seconds(1)); continue; } + should_interrupt = false; if (!play_video(pathname)) { // Error. fprintf(stderr, "Error when playing %s, sleeping one second and trying again...\n", pathname.c_str()); @@ -352,7 +353,7 @@ bool FFmpegCapture::play_video(const string &pathname) AVDictionary *opts = nullptr; av_dict_set(&opts, "fflags", "nobuffer", 0); - auto format_ctx = avformat_open_input_unique(pathname.c_str(), nullptr, &opts); + auto format_ctx = avformat_open_input_unique(pathname.c_str(), nullptr, &opts, AVIOInterruptCB{ &FFmpegCapture::interrupt_cb_thunk, this }); if (format_ctx == nullptr) { fprintf(stderr, "%s: Error opening file\n", pathname.c_str()); return false; @@ -801,3 +802,13 @@ UniqueFrame FFmpegCapture::make_video_frame(const AVFrame *frame, const string & return video_frame; } + +int FFmpegCapture::interrupt_cb_thunk(void *unique) +{ + return reinterpret_cast(unique)->interrupt_cb(); +} + +int FFmpegCapture::interrupt_cb() +{ + return should_interrupt.load(); +}