From 46da55b1eafef7495204a6733193057853d6575a Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 21 Jun 2024 23:01:00 +0200 Subject: fm content: make sure to capture frame on damage and then no damage after fps frame timeout --- src/capture/xcomposite_cuda.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/capture/xcomposite_cuda.c') diff --git a/src/capture/xcomposite_cuda.c b/src/capture/xcomposite_cuda.c index 01e1f12..c436221 100644 --- a/src/capture/xcomposite_cuda.c +++ b/src/capture/xcomposite_cuda.c @@ -76,9 +76,14 @@ static void gsr_capture_xcomposite_cuda_tick(gsr_capture *cap, AVCodecContext *v gsr_capture_xcomposite_tick(&cap_xcomp->xcomposite, video_codec_context); } -static bool gsr_capture_xcomposite_cuda_consume_damage(gsr_capture *cap) { +static bool gsr_capture_xcomposite_cuda_is_damaged(gsr_capture *cap) { gsr_capture_xcomposite_cuda *cap_xcomp = cap->priv; - return gsr_capture_xcomposite_consume_damage(&cap_xcomp->xcomposite); + return gsr_capture_xcomposite_is_damaged(&cap_xcomp->xcomposite); +} + +static void gsr_capture_xcomposite_cuda_clear_damage(gsr_capture *cap) { + gsr_capture_xcomposite_cuda *cap_xcomp = cap->priv; + gsr_capture_xcomposite_clear_damage(&cap_xcomp->xcomposite); } static bool gsr_capture_xcomposite_cuda_should_stop(gsr_capture *cap, bool *err) { @@ -149,7 +154,8 @@ gsr_capture* gsr_capture_xcomposite_cuda_create(const gsr_capture_xcomposite_cud *cap = (gsr_capture) { .start = gsr_capture_xcomposite_cuda_start, .tick = gsr_capture_xcomposite_cuda_tick, - .consume_damage = gsr_capture_xcomposite_cuda_consume_damage, + .is_damaged = gsr_capture_xcomposite_cuda_is_damaged, + .clear_damage = gsr_capture_xcomposite_cuda_clear_damage, .should_stop = gsr_capture_xcomposite_cuda_should_stop, .capture = gsr_capture_xcomposite_cuda_capture, .capture_end = NULL, -- cgit v1.2.3