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:
dec05eba
2024-08-15 11:13:49 +02:00
parent 7ebaf95645
commit 85d59ea2c8
3 changed files with 30 additions and 24 deletions

View File

@@ -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;
}