mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-05-05 14:30:43 +09:00
HACK: portal: copy external image to internal image before render. Dont stop screencast when paused as that stops recording when window is resized
This commit is contained in:
@@ -254,13 +254,6 @@ static void on_param_changed_cb(void *user_data, uint32_t id, const struct spa_p
|
||||
static void on_state_changed_cb(void *user_data, enum pw_stream_state old, enum pw_stream_state state, const char *error) {
|
||||
(void)old;
|
||||
gsr_pipewire *self = user_data;
|
||||
if(state == PW_STREAM_STATE_STREAMING)
|
||||
self->started = true;
|
||||
|
||||
if(self->started && state == PW_STREAM_STATE_PAUSED) {
|
||||
self->started = false;
|
||||
self->stopped = true;
|
||||
}
|
||||
|
||||
fprintf(stderr, "gsr info: pipewire: stream %p state: \"%s\" (error: %s)\n",
|
||||
(void*)self->stream, pw_stream_state_as_string(state),
|
||||
@@ -740,7 +733,3 @@ bool gsr_pipewire_map_texture(gsr_pipewire *self, gsr_texture_map texture_map, g
|
||||
pthread_mutex_unlock(&self->mutex);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool gsr_pipewire_recording_stopped(gsr_pipewire *self) {
|
||||
return self->stopped;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user