X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=mixer.h;h=289ce45c9b5542da424942b4205ec825605d5848;hb=e284d1c7a2e18ee7e4aea082c4a57a3504a0f5e8;hp=effc2a3d0f4217c6435509e71271694d592ae7de;hpb=f3dbafe3251a6613433debfdde48dc814f5423a1;p=nageru diff --git a/mixer.h b/mixer.h index effc2a3..289ce45 100644 --- a/mixer.h +++ b/mixer.h @@ -487,6 +487,15 @@ private: CardType type; std::unique_ptr output; + // CEF only delivers frames when it actually has a change. + // If we trim the queue for latency reasons, we could thus + // end up in a situation trimming a frame that was meant to + // be displayed for a long time, which is really suboptimal. + // Thus, if we drop the last frame we have, may_have_dropped_last_frame + // is set to true, and the next starvation event will trigger + // us requestin a CEF repaint. + bool is_cef_capture, may_have_dropped_last_frame = false; + // If this card is used for output (ie., output_card_index points to it), // it cannot simultaneously be uesd for capture, so gets replaced // by a FakeCapture. However, since reconstructing the real capture object