mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-05-06 23:06:22 +09:00
Use async_depth option on vaapi for much better encoding performance
This commit is contained in:
@@ -497,6 +497,9 @@ static void render_drm_cursor(gsr_capture_kms *self, gsr_color_conversion *color
|
||||
}
|
||||
|
||||
static void render_x11_cursor(gsr_capture_kms *self, gsr_color_conversion *color_conversion, vec2i capture_pos, vec2i target_pos) {
|
||||
if(!self->x11_cursor.visible)
|
||||
return;
|
||||
|
||||
gsr_cursor_tick(&self->x11_cursor, DefaultRootWindow(self->params.egl->x11.dpy));
|
||||
|
||||
const vec2i cursor_pos = {
|
||||
|
||||
27
src/damage.c
27
src/damage.c
@@ -53,6 +53,9 @@ bool gsr_damage_init(gsr_damage *self, gsr_egl *egl, bool track_cursor) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if(self->track_cursor)
|
||||
self->track_cursor = gsr_cursor_init(&self->cursor, self->egl, self->egl->x11.dpy) == 0;
|
||||
|
||||
XRRSelectInput(self->egl->x11.dpy, DefaultRootWindow(self->egl->x11.dpy), RRScreenChangeNotifyMask | RRCrtcChangeNotifyMask | RROutputChangeNotifyMask);
|
||||
|
||||
self->damaged = true;
|
||||
@@ -65,6 +68,8 @@ void gsr_damage_deinit(gsr_damage *self) {
|
||||
self->damage = None;
|
||||
}
|
||||
|
||||
gsr_cursor_deinit(&self->cursor);
|
||||
|
||||
self->damage_event = 0;
|
||||
self->damage_error = 0;
|
||||
|
||||
@@ -245,16 +250,11 @@ static void gsr_damage_on_damage_event(gsr_damage *self, XEvent *xev) {
|
||||
XFlush(self->egl->x11.dpy);
|
||||
}
|
||||
|
||||
static void gsr_damage_on_event_cursor(gsr_damage *self) {
|
||||
Window root_return = None;
|
||||
Window child_return = None;
|
||||
int dummy_i;
|
||||
unsigned int dummy_u;
|
||||
vec2i cursor_position = {0, 0};
|
||||
XQueryPointer(self->egl->x11.dpy, self->window, &root_return, &child_return, &dummy_i, &dummy_i, &cursor_position.x, &cursor_position.y, &dummy_u);
|
||||
if(cursor_position.x != self->cursor_position.x || cursor_position.y != self->cursor_position.y) {
|
||||
self->cursor_position = cursor_position;
|
||||
const gsr_rectangle cursor_region = { self->cursor_position, {64, 64} }; // TODO: Track cursor size
|
||||
static void gsr_damage_on_tick_cursor(gsr_damage *self) {
|
||||
vec2i prev_cursor_pos = self->cursor.position;
|
||||
gsr_cursor_tick(&self->cursor, self->window);
|
||||
if(self->cursor.position.x != prev_cursor_pos.x || self->cursor.position.y != prev_cursor_pos.y) {
|
||||
const gsr_rectangle cursor_region = { self->cursor.position, self->cursor.size };
|
||||
switch(self->track_type) {
|
||||
case GSR_DAMAGE_TRACK_NONE: {
|
||||
self->damaged = true;
|
||||
@@ -302,14 +302,17 @@ void gsr_damage_on_event(gsr_damage *self, XEvent *xev) {
|
||||
|
||||
if(self->damage_event && xev->type == self->damage_event + XDamageNotify)
|
||||
gsr_damage_on_damage_event(self, xev);
|
||||
|
||||
if(self->track_cursor)
|
||||
gsr_cursor_on_event(&self->cursor, xev);
|
||||
}
|
||||
|
||||
void gsr_damage_tick(gsr_damage *self) {
|
||||
if(self->damage_event == 0 || self->track_type == GSR_DAMAGE_TRACK_NONE)
|
||||
return;
|
||||
|
||||
if(self->track_cursor && !self->damaged)
|
||||
gsr_damage_on_event_cursor(self);
|
||||
if(self->track_cursor && self->cursor.visible && !self->damaged)
|
||||
gsr_damage_on_tick_cursor(self);
|
||||
}
|
||||
|
||||
bool gsr_damage_is_damaged(gsr_damage *self) {
|
||||
|
||||
@@ -887,6 +887,8 @@ static void open_video_hardware(AVCodecContext *codec_context, VideoQuality vide
|
||||
} else {
|
||||
// TODO: More quality options
|
||||
//av_dict_set_int(&options, "low_power", 1, 0);
|
||||
// Improves performance but increases vram
|
||||
av_dict_set_int(&options, "async_depth", 8, 0);
|
||||
|
||||
if(codec_context->codec_id == AV_CODEC_ID_H264) {
|
||||
// TODO:
|
||||
@@ -3389,7 +3391,7 @@ int main(int argc, char **argv) {
|
||||
const int64_t expected_frames = std::round((this_video_frame_time - record_start_time) / target_fps);
|
||||
int num_frames = std::max((int64_t)0LL, expected_frames - video_pts_counter);
|
||||
const double num_frames_seconds = num_frames * target_fps;
|
||||
if((damaged || num_frames_seconds >= damage_timeout_seconds) && !paused/* && fps_counter < fps + 100*/) {
|
||||
if((damaged || (framerate_mode == FramerateMode::CONSTANT && num_frames > 0) || (framerate_mode != FramerateMode::CONSTANT && num_frames_seconds >= damage_timeout_seconds)) && !paused) {
|
||||
gsr_damage_clear(&damage);
|
||||
if(capture->clear_damage)
|
||||
capture->clear_damage(capture);
|
||||
|
||||
Reference in New Issue
Block a user