diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-06-21 23:01:00 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-06-21 23:01:00 +0200 |
commit | 46da55b1eafef7495204a6733193057853d6575a (patch) | |
tree | 18eb699e521da4265f97e527cb1d3eecbb35c9a8 /src/capture/xcomposite_vaapi.c | |
parent | fab9fc9993af7220a6941e975f82cbfbfd109934 (diff) |
fm content: make sure to capture frame on damage and then no damage after fps frame timeout
Diffstat (limited to 'src/capture/xcomposite_vaapi.c')
-rw-r--r-- | src/capture/xcomposite_vaapi.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/capture/xcomposite_vaapi.c b/src/capture/xcomposite_vaapi.c index b8d4544..3f27014 100644 --- a/src/capture/xcomposite_vaapi.c +++ b/src/capture/xcomposite_vaapi.c @@ -43,9 +43,14 @@ static void gsr_capture_xcomposite_vaapi_tick(gsr_capture *cap, AVCodecContext * gsr_capture_xcomposite_tick(&cap_xcomp->xcomposite, video_codec_context); } -static bool gsr_capture_xcomposite_vaapi_consume_damage(gsr_capture *cap) { +static bool gsr_capture_xcomposite_vaapi_is_damaged(gsr_capture *cap) { gsr_capture_xcomposite_vaapi *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_vaapi_clear_damage(gsr_capture *cap) { + gsr_capture_xcomposite_vaapi *cap_xcomp = cap->priv; + gsr_capture_xcomposite_clear_damage(&cap_xcomp->xcomposite); } static bool gsr_capture_xcomposite_vaapi_should_stop(gsr_capture *cap, bool *err) { @@ -103,7 +108,8 @@ gsr_capture* gsr_capture_xcomposite_vaapi_create(const gsr_capture_xcomposite_va *cap = (gsr_capture) { .start = gsr_capture_xcomposite_vaapi_start, .tick = gsr_capture_xcomposite_vaapi_tick, - .consume_damage = gsr_capture_xcomposite_vaapi_consume_damage, + .is_damaged = gsr_capture_xcomposite_vaapi_is_damaged, + .clear_damage = gsr_capture_xcomposite_vaapi_clear_damage, .should_stop = gsr_capture_xcomposite_vaapi_should_stop, .capture = gsr_capture_xcomposite_vaapi_capture, .capture_end = NULL, |