mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-04-04 02:26:36 +09:00
Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b0b1442a03 | ||
|
|
baa7bfd5e4 | ||
|
|
3b09cb7fd3 | ||
|
|
1ab2c066b4 | ||
|
|
131209ddc0 | ||
|
|
b2487788c2 | ||
|
|
9485df761f | ||
|
|
815350a5ca | ||
|
|
23fd8065b6 | ||
|
|
637d6ebfd6 | ||
|
|
5a94122b8f | ||
|
|
2b34c78459 | ||
|
|
35222bafe2 | ||
|
|
2a0fb9f449 | ||
|
|
73fd0a30cd | ||
|
|
085d4632d2 | ||
|
|
39503de742 | ||
|
|
0ae5b83e47 | ||
|
|
e1992ae3be | ||
|
|
ce3203ebc7 | ||
|
|
e3225bc628 | ||
|
|
811a14481d | ||
|
|
5cda6c0bf0 | ||
|
|
3f18462af4 |
10
README.md
10
README.md
@@ -125,7 +125,9 @@ in this case you could record a window or a monitor with the name `DP-1`.\
|
||||
To list available audio devices that you can use you can run `gpu-screen-recorder --list-audio-devices` and the name to use is on the left size of the `|`.\
|
||||
To list available audio application names that you can use you can run `gpu-screen-recorder --list-application-audio`.
|
||||
## Streaming
|
||||
Streaming works the same as recording, but the `-o` argument should be path to the live streaming service you want to use (including your live streaming key). Take a look at `scripts/twitch-stream.sh` to see an example of how to stream to twitch.
|
||||
Streaming works the same way as recording, but the `-o` argument should be path to the live streaming service you want to use (including your live streaming key). Take a look at `scripts/twitch-stream.sh` to see an example of how to stream to twitch.\
|
||||
GPU Screen Recorder uses Ffmpeg so GPU Screen Recorder supports all protocols that Ffmpeg supports.\
|
||||
If you want to reduce latency one thing you can do is to use the `-keyint` option, for example `-keyint 0.5`. Lower value means lower latency at the cost of increased bitrate/decreased quality.
|
||||
## Replay mode
|
||||
Run `gpu-screen-recorder` with the `-c mp4` and `-r` option, for example: `gpu-screen-recorder -w screen -f 60 -r 30 -c mp4 -o ~/Videos`. Note that in this case, `-o` should point to a directory.\
|
||||
If `-df yes` is set, replays are save in folders based on the date.
|
||||
@@ -187,9 +189,13 @@ You have to either record in hdr mode (-k `hevc_hdr` or -k `av1_hdr` option) to
|
||||
## GPU Screen Recorder records night light when recording in HDR mode
|
||||
You can record with desktop portal option (`-w portal`) instead which ignores night light, if you are ok with recording without HDR.
|
||||
## Kdenlive says that the video is not usable for editing because it has variable frame rate
|
||||
To fix this you can either record the video in .mkv format or constant frame rate (-fm cfr).
|
||||
To fix this you can either just press cancel, which will allow you to continue or record the video in .mkv format or constant frame rate (-fm cfr). I recommend recording the video in .mkv format and variable frame rate (-fm vfr).
|
||||
## Colors look incorrect when recording HDR (with hevc_hdr/av1_hdr) or using an ICC profile
|
||||
KDE Plasma version 6.2 broke HDR and ICC profiles for screen recorders. This was changed in KDE plasma version 6.3 and recording HDR works now, as long as you set HDR brightness to 100% (which means setting "Maximum SDR Brightness" in KDE plasma display settings to 203) and set color accuracy to "Prefer color accuracy". If you want to convert HDR to SDR then record with desktop portal option (`-w portal`) instead.
|
||||
I don't know how well recording HDR works in wayland compositors other than KDE plasma.
|
||||
## GPU Screen Recorder starts lagging after 30-40 minutes when launching GPU Screen Recorder from steam command launcher
|
||||
This is a [steam issue](https://github.com/ValveSoftware/steam-for-linux/issues/11446). Prepend the gpu-screen-recorder command with `LD_PREFIX=""`, for example `LD_PREFIX="" gpu-screen-recorder -w screen -o video.mp4`.
|
||||
## The video isn't smooth when gpu usage is 100%
|
||||
If you are using the flatpak version of GPU Screen Recorder then try installing GPU Screen Recorder from a non-flatpak source instead (such as from aur or from source). Flatpak has a limitation that prevents GPU Screen Recorder from running faster when playing very heavy games.
|
||||
## How do I apply audio effects, such as noise suppression?
|
||||
You have to use external software for that, such as Easy Effects or NoiseTorch.
|
||||
|
||||
25
TODO
25
TODO
@@ -177,9 +177,7 @@ Test if `xrandr --output DP-1 --scale 1.5` captures correct size on nvidia.
|
||||
|
||||
Fix cursor position and scale when scaling x11 display.
|
||||
|
||||
Support surround audio in application audio recording. Right now only stereo and mono sound is supported.
|
||||
|
||||
Support application audio recording without pulseaudio combined sink.
|
||||
Support application audio recording without pipewire combined sink.
|
||||
|
||||
Support transposing (rotating) with vaapi. This isn't supported on many devices with rgb buffer, but its supported with nv12 buffer (on intel at least).
|
||||
|
||||
@@ -283,3 +281,24 @@ Add the option to set audio track name, for example with -a "track-name:blabla|d
|
||||
|
||||
Maybe disable qp/vbr for replay. In that case we can preallocate all replay data (for both ram and disk) and write to that directly when receiving packet (dont do that when also recording at the same time).
|
||||
That could improve performance/disk write optimization and maybe even reduce ram usage because of less blocks/fragmentation.
|
||||
|
||||
When rpc is added add the option to add/remove audio devices/app audio and also overlays (from new capture sources).
|
||||
|
||||
Support hdr screenshot.
|
||||
|
||||
Recreate opengl context on loss. This can happen if there is a gpu driver bug, causing context to need to be recreated. This is a nice improvement to not break recording even with buggy driver.
|
||||
|
||||
Support saving video with surround sound. Surround sound audio capture does work, but it gets downmixed to stereo.
|
||||
|
||||
Add (render) plugin support. To simplify it (and possibly best performance) create one rgba texture (with the size of the output video) that is used across all plugins.
|
||||
Create a framebuffer and set this texture and the target and set the framebuffer as active before calling the plugins.
|
||||
Then the plugins can render simply by doing simple opengl draw functions.
|
||||
Maybe send some metadata to the plugin, such as video (and framebuffer) size. Although this data can be retrieved from the active framebuffer.
|
||||
|
||||
Either support webcam support with raw yuyv, mapping the buffer directly to opengl. Or use mjpeg, mapping the buffer directly to vaapi jpeg decoder and then get then map the decoded buffer to opengl.
|
||||
Some webcams dont support raw yuyv and many webcams support higher framerates for mjpeg.
|
||||
|
||||
Allow medium, high, very_high and ultra quality for -bm cbr. If that is used then it will automatically estimate the best bitrate for that quality based on resolution and fps.
|
||||
Maybe do this in the ui instead (or both?), to show estimated file size.
|
||||
|
||||
Maybe remove shader compute code. It doesn't seem necessary anymore now that glSwapBuffer/glFinish isn't used. dbus server isn't needed anymore either, the code can be moved back to the gpu screen recorder process.
|
||||
|
||||
269
dbus/client/dbus_client.c
Normal file
269
dbus/client/dbus_client.c
Normal file
@@ -0,0 +1,269 @@
|
||||
#include "dbus_client.h"
|
||||
#include "../protocol.h"
|
||||
|
||||
#include <sys/socket.h>
|
||||
#include <sys/wait.h>
|
||||
#include <sys/prctl.h>
|
||||
#include <unistd.h>
|
||||
#include <poll.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
|
||||
// TODO: Error checking for write/read
|
||||
|
||||
static bool gsr_dbus_client_wait_for_startup(gsr_dbus_client *self) {
|
||||
struct pollfd poll_fd = {
|
||||
.fd = self->socket_pair[0],
|
||||
.events = POLLIN,
|
||||
.revents = 0
|
||||
};
|
||||
for(;;) {
|
||||
int poll_res = poll(&poll_fd, 1, 100);
|
||||
if(poll_res > 0 && (poll_fd.revents & POLLIN)) {
|
||||
char msg;
|
||||
read(self->socket_pair[0], &msg, 1);
|
||||
return true;
|
||||
} else {
|
||||
int status = 0;
|
||||
int wait_result = waitpid(self->pid, &status, WNOHANG);
|
||||
if(wait_result != 0) {
|
||||
int exit_code = -1;
|
||||
if(WIFEXITED(status))
|
||||
exit_code = WEXITSTATUS(status);
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_init: server died or never started, exit code: %d\n", exit_code);
|
||||
self->pid = 0;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool gsr_dbus_client_init(gsr_dbus_client *self, const char *screencast_restore_token) {
|
||||
memset(self, 0, sizeof(*self));
|
||||
|
||||
if(socketpair(AF_UNIX, SOCK_STREAM, 0, self->socket_pair) == -1) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_init: socketpair failed, error: %s\n", strerror(errno));
|
||||
return false;
|
||||
}
|
||||
|
||||
if(screencast_restore_token) {
|
||||
self->screencast_restore_token = strdup(screencast_restore_token);
|
||||
if(!self->screencast_restore_token) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_init: failed to clone restore token\n");
|
||||
gsr_dbus_client_deinit(self);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
self->pid = fork();
|
||||
if(self->pid == -1) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_init: failed to fork process\n");
|
||||
gsr_dbus_client_deinit(self);
|
||||
return false;
|
||||
} else if(self->pid == 0) { /* child */
|
||||
char socket_pair_server_str[32];
|
||||
snprintf(socket_pair_server_str, sizeof(socket_pair_server_str), "%d", self->socket_pair[1]);
|
||||
|
||||
/* Needed for NixOS for example, to make sure gsr-dbus-server doesn't inherit cap_sys_nice */
|
||||
prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0);
|
||||
|
||||
const char *args[] = { "gsr-dbus-server", socket_pair_server_str, self->screencast_restore_token ? self->screencast_restore_token : "", NULL };
|
||||
execvp(args[0], (char *const*)args);
|
||||
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_init: failed to launch \"gsr-dbus-server\", error: %s\n", strerror(errno));
|
||||
_exit(127);
|
||||
} else { /* parent */
|
||||
if(!gsr_dbus_client_wait_for_startup(self)) {
|
||||
gsr_dbus_client_deinit(self);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void gsr_dbus_client_deinit(gsr_dbus_client *self) {
|
||||
for(int i = 0; i < 2; ++i) {
|
||||
if(self->socket_pair[i] > 0) {
|
||||
close(self->socket_pair[i]);
|
||||
self->socket_pair[i] = -1;
|
||||
}
|
||||
}
|
||||
|
||||
if(self->screencast_restore_token) {
|
||||
free(self->screencast_restore_token);
|
||||
self->screencast_restore_token = NULL;
|
||||
}
|
||||
|
||||
if(self->pid > 0) {
|
||||
kill(self->pid, SIGKILL);
|
||||
int status = 0;
|
||||
waitpid(self->pid, &status, 0);
|
||||
self->pid = 0;
|
||||
}
|
||||
}
|
||||
|
||||
int gsr_dbus_client_screencast_create_session(gsr_dbus_client *self, char *session_handle, size_t session_handle_size) {
|
||||
const gsr_dbus_request_message request = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_REQ_CREATE_SESSION,
|
||||
.create_session = (gsr_dbus_message_req_create_session) {}
|
||||
};
|
||||
write(self->socket_pair[0], &request, sizeof(request));
|
||||
|
||||
gsr_dbus_response_message response = {0};
|
||||
read(self->socket_pair[0], &response, sizeof(response));
|
||||
|
||||
if(response.protocol_version != GSR_DBUS_PROTOCOL_VERSION) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_create_session: server uses protocol version %d while the client is using protocol version %d", response.protocol_version, GSR_DBUS_PROTOCOL_VERSION);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(response.type == GSR_DBUS_MESSAGE_RESP_ERROR) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_create_session: server return error: %s (%d)\n", response.error.message, (int)response.error.error_code);
|
||||
return response.error.error_code;
|
||||
}
|
||||
|
||||
if(response.type != GSR_DBUS_MESSAGE_RESP_CREATE_SESSION) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_create_session: received incorrect response type. Expected %d got %d\n", GSR_DBUS_MESSAGE_RESP_CREATE_SESSION, response.type);
|
||||
return -1;
|
||||
}
|
||||
|
||||
snprintf(session_handle, session_handle_size, "%s", response.create_session.session_handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int gsr_dbus_client_screencast_select_sources(gsr_dbus_client *self, const char *session_handle, uint32_t capture_type, uint32_t cursor_mode) {
|
||||
gsr_dbus_request_message request = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_REQ_SELECT_SOURCES,
|
||||
.select_sources = (gsr_dbus_message_req_select_sources) {
|
||||
.capture_type = capture_type,
|
||||
.cursor_mode = cursor_mode
|
||||
}
|
||||
};
|
||||
snprintf(request.select_sources.session_handle, sizeof(request.select_sources.session_handle), "%s", session_handle);
|
||||
write(self->socket_pair[0], &request, sizeof(request));
|
||||
|
||||
gsr_dbus_response_message response = {0};
|
||||
read(self->socket_pair[0], &response, sizeof(response));
|
||||
|
||||
if(response.protocol_version != GSR_DBUS_PROTOCOL_VERSION) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_select_sources: server uses protocol version %d while the client is using protocol version %d", response.protocol_version, GSR_DBUS_PROTOCOL_VERSION);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(response.type == GSR_DBUS_MESSAGE_RESP_ERROR) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_select_sources: server return error: %s (%d)\n", response.error.message, (int)response.error.error_code);
|
||||
return response.error.error_code;
|
||||
}
|
||||
|
||||
if(response.type != GSR_DBUS_MESSAGE_RESP_SELECT_SOURCES) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_select_sources: received incorrect response type. Expected %d got %d\n", GSR_DBUS_MESSAGE_RESP_SELECT_SOURCES, response.type);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int gsr_dbus_client_screencast_start(gsr_dbus_client *self, const char *session_handle, uint32_t *pipewire_node) {
|
||||
*pipewire_node = 0;
|
||||
|
||||
gsr_dbus_request_message request = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_REQ_START,
|
||||
.start = (gsr_dbus_message_req_start) {}
|
||||
};
|
||||
snprintf(request.start.session_handle, sizeof(request.start.session_handle), "%s", session_handle);
|
||||
write(self->socket_pair[0], &request, sizeof(request));
|
||||
|
||||
gsr_dbus_response_message response = {0};
|
||||
read(self->socket_pair[0], &response, sizeof(response));
|
||||
|
||||
if(response.protocol_version != GSR_DBUS_PROTOCOL_VERSION) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_start: server uses protocol version %d while the client is using protocol version %d", response.protocol_version, GSR_DBUS_PROTOCOL_VERSION);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(response.type == GSR_DBUS_MESSAGE_RESP_ERROR) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_start: server return error: %s (%d)\n", response.error.message, (int)response.error.error_code);
|
||||
return response.error.error_code;
|
||||
}
|
||||
|
||||
if(response.type != GSR_DBUS_MESSAGE_RESP_START) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_start: received incorrect response type. Expected %d got %d\n", GSR_DBUS_MESSAGE_RESP_START, response.type);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(self->screencast_restore_token) {
|
||||
free(self->screencast_restore_token);
|
||||
if(response.start.restore_token[0] == '\0')
|
||||
self->screencast_restore_token = NULL;
|
||||
else
|
||||
self->screencast_restore_token = strdup(response.start.restore_token);
|
||||
}
|
||||
|
||||
*pipewire_node = response.start.pipewire_node;
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool gsr_dbus_client_screencast_open_pipewire_remote(gsr_dbus_client *self, const char *session_handle, int *pipewire_fd) {
|
||||
*pipewire_fd = 0;
|
||||
|
||||
gsr_dbus_request_message request = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_REQ_OPEN_PIPEWIRE_REMOTE,
|
||||
.open_pipewire_remote = (gsr_dbus_message_req_open_pipewire_remote) {}
|
||||
};
|
||||
snprintf(request.open_pipewire_remote.session_handle, sizeof(request.open_pipewire_remote.session_handle), "%s", session_handle);
|
||||
write(self->socket_pair[0], &request, sizeof(request));
|
||||
|
||||
gsr_dbus_response_message response = {0};
|
||||
struct iovec iov = {
|
||||
.iov_base = &response,
|
||||
.iov_len = sizeof(response)
|
||||
};
|
||||
|
||||
char msg_control[CMSG_SPACE(sizeof(int))];
|
||||
|
||||
struct msghdr message = {
|
||||
.msg_iov = &iov,
|
||||
.msg_iovlen = 1,
|
||||
.msg_control = msg_control,
|
||||
.msg_controllen = sizeof(msg_control)
|
||||
};
|
||||
|
||||
const int bla = recvmsg(self->socket_pair[0], &message, MSG_WAITALL);
|
||||
(void)bla;
|
||||
|
||||
if(response.protocol_version != GSR_DBUS_PROTOCOL_VERSION) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_open_pipewire_remote: server uses protocol version %d while the client is using protocol version %d", response.protocol_version, GSR_DBUS_PROTOCOL_VERSION);
|
||||
return false;
|
||||
}
|
||||
|
||||
if(response.type == GSR_DBUS_MESSAGE_RESP_ERROR) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_open_pipewire_remote: server return error: %s (%d)\n", response.error.message, (int)response.error.error_code);
|
||||
return false;
|
||||
}
|
||||
|
||||
if(response.type != GSR_DBUS_MESSAGE_RESP_OPEN_PIPEWIRE_REMOTE) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_open_pipewire_remote: received incorrect response type. Expected %d got %d\n", GSR_DBUS_MESSAGE_RESP_OPEN_PIPEWIRE_REMOTE, response.type);
|
||||
return false;
|
||||
}
|
||||
|
||||
struct cmsghdr *cmsg = CMSG_FIRSTHDR(&message);
|
||||
if(!cmsg || cmsg->cmsg_type != SCM_RIGHTS) {
|
||||
fprintf(stderr, "gsr error: gsr_dbus_client_screencast_open_pipewire_remote: returned message data is missing file descriptor\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
memcpy(pipewire_fd, CMSG_DATA(cmsg), sizeof(*pipewire_fd));
|
||||
return true;
|
||||
}
|
||||
|
||||
const char* gsr_dbus_client_screencast_get_restore_token(gsr_dbus_client *self) {
|
||||
return self->screencast_restore_token;
|
||||
}
|
||||
36
dbus/client/dbus_client.h
Normal file
36
dbus/client/dbus_client.h
Normal file
@@ -0,0 +1,36 @@
|
||||
#ifndef GSR_DBUS_CLIENT_H
|
||||
#define GSR_DBUS_CLIENT_H
|
||||
|
||||
/*
|
||||
Using a client-server architecture is needed for dbus because cap_sys_nice breaks desktop portal.
|
||||
The main binary has cap_sys_nice and we launch a new child-process without it which uses uses desktop portal.
|
||||
*/
|
||||
|
||||
#include "../portal.h"
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <signal.h>
|
||||
|
||||
typedef struct {
|
||||
int socket_pair[2];
|
||||
char *screencast_restore_token;
|
||||
pid_t pid;
|
||||
} gsr_dbus_client;
|
||||
|
||||
/* Blocking. TODO: Make non-blocking */
|
||||
bool gsr_dbus_client_init(gsr_dbus_client *self, const char *screencast_restore_token);
|
||||
void gsr_dbus_client_deinit(gsr_dbus_client *self);
|
||||
|
||||
/* The follow functions should be called in order to setup ScreenCast properly */
|
||||
/* These functions that return an int return the response status code */
|
||||
int gsr_dbus_client_screencast_create_session(gsr_dbus_client *self, char *session_handle, size_t session_handle_size);
|
||||
/*
|
||||
|capture_type| is a bitmask of gsr_portal_capture_type values. gsr_portal_capture_type values that are not supported by the desktop portal will be ignored.
|
||||
|gsr_portal_cursor_mode| is a bitmask of gsr_portal_cursor_mode values. gsr_portal_cursor_mode values that are not supported will be ignored.
|
||||
*/
|
||||
int gsr_dbus_client_screencast_select_sources(gsr_dbus_client *self, const char *session_handle, uint32_t capture_type, uint32_t cursor_mode);
|
||||
int gsr_dbus_client_screencast_start(gsr_dbus_client *self, const char *session_handle, uint32_t *pipewire_node);
|
||||
bool gsr_dbus_client_screencast_open_pipewire_remote(gsr_dbus_client *self, const char *session_handle, int *pipewire_fd);
|
||||
const char* gsr_dbus_client_screencast_get_restore_token(gsr_dbus_client *self);
|
||||
|
||||
#endif /* GSR_DBUS_CLIENT_H */
|
||||
@@ -1,5 +1,6 @@
|
||||
#include "../include/dbus.h"
|
||||
#include "../include/utils.h"
|
||||
#include "dbus_impl.h"
|
||||
|
||||
#include <sys/random.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
@@ -28,6 +29,25 @@ typedef struct {
|
||||
};
|
||||
} dict_entry;
|
||||
|
||||
static bool generate_random_characters(char *buffer, int buffer_size, const char *alphabet, size_t alphabet_size) {
|
||||
/* TODO: Use other functions on other platforms than linux */
|
||||
if(getrandom(buffer, buffer_size, 0) < buffer_size) {
|
||||
fprintf(stderr, "Failed to get random bytes, error: %s\n", strerror(errno));
|
||||
return false;
|
||||
}
|
||||
|
||||
for(int i = 0; i < buffer_size; ++i) {
|
||||
unsigned char c = *(unsigned char*)&buffer[i];
|
||||
buffer[i] = alphabet[c % alphabet_size];
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool generate_random_characters_standard_alphabet(char *buffer, int buffer_size) {
|
||||
return generate_random_characters(buffer, buffer_size, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 62);
|
||||
}
|
||||
|
||||
static const char* dict_value_type_to_string(dict_value_type type) {
|
||||
switch(type) {
|
||||
case DICT_TYPE_STRING: return "string";
|
||||
@@ -1,6 +1,7 @@
|
||||
#ifndef GSR_DBUS_H
|
||||
#define GSR_DBUS_H
|
||||
|
||||
#include "portal.h"
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <dbus/dbus.h>
|
||||
@@ -17,19 +18,6 @@ typedef struct {
|
||||
char *screencast_restore_token;
|
||||
} gsr_dbus;
|
||||
|
||||
typedef enum {
|
||||
GSR_PORTAL_CAPTURE_TYPE_MONITOR = 1 << 0,
|
||||
GSR_PORTAL_CAPTURE_TYPE_WINDOW = 1 << 1,
|
||||
GSR_PORTAL_CAPTURE_TYPE_VIRTUAL = 1 << 2,
|
||||
GSR_PORTAL_CAPTURE_TYPE_ALL = GSR_PORTAL_CAPTURE_TYPE_MONITOR | GSR_PORTAL_CAPTURE_TYPE_WINDOW | GSR_PORTAL_CAPTURE_TYPE_VIRTUAL
|
||||
} gsr_portal_capture_type;
|
||||
|
||||
typedef enum {
|
||||
GSR_PORTAL_CURSOR_MODE_HIDDEN = 1 << 0,
|
||||
GSR_PORTAL_CURSOR_MODE_EMBEDDED = 1 << 1,
|
||||
GSR_PORTAL_CURSOR_MODE_METADATA = 1 << 2
|
||||
} gsr_portal_cursor_mode;
|
||||
|
||||
/* Blocking. TODO: Make non-blocking */
|
||||
bool gsr_dbus_init(gsr_dbus *self, const char *screencast_restore_token);
|
||||
void gsr_dbus_deinit(gsr_dbus *self);
|
||||
17
dbus/portal.h
Normal file
17
dbus/portal.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef GSR_PORTAL_H
|
||||
#define GSR_PORTAL_H
|
||||
|
||||
typedef enum {
|
||||
GSR_PORTAL_CAPTURE_TYPE_MONITOR = 1 << 0,
|
||||
GSR_PORTAL_CAPTURE_TYPE_WINDOW = 1 << 1,
|
||||
GSR_PORTAL_CAPTURE_TYPE_VIRTUAL = 1 << 2,
|
||||
GSR_PORTAL_CAPTURE_TYPE_ALL = GSR_PORTAL_CAPTURE_TYPE_MONITOR | GSR_PORTAL_CAPTURE_TYPE_WINDOW | GSR_PORTAL_CAPTURE_TYPE_VIRTUAL
|
||||
} gsr_portal_capture_type;
|
||||
|
||||
typedef enum {
|
||||
GSR_PORTAL_CURSOR_MODE_HIDDEN = 1 << 0,
|
||||
GSR_PORTAL_CURSOR_MODE_EMBEDDED = 1 << 1,
|
||||
GSR_PORTAL_CURSOR_MODE_METADATA = 1 << 2
|
||||
} gsr_portal_cursor_mode;
|
||||
|
||||
#endif /* GSR_PORTAL_H */
|
||||
86
dbus/protocol.h
Normal file
86
dbus/protocol.h
Normal file
@@ -0,0 +1,86 @@
|
||||
#ifndef GSR_DBUS_PROTOCOL_H
|
||||
#define GSR_DBUS_PROTOCOL_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#define GSR_DBUS_PROTOCOL_VERSION 1
|
||||
|
||||
typedef enum {
|
||||
GSR_DBUS_MESSAGE_REQ_CREATE_SESSION,
|
||||
GSR_DBUS_MESSAGE_REQ_SELECT_SOURCES,
|
||||
GSR_DBUS_MESSAGE_REQ_START,
|
||||
GSR_DBUS_MESSAGE_REQ_OPEN_PIPEWIRE_REMOTE
|
||||
} gsr_dbus_message_req_type;
|
||||
|
||||
typedef struct {
|
||||
|
||||
} gsr_dbus_message_req_create_session;
|
||||
|
||||
typedef struct {
|
||||
char session_handle[128];
|
||||
uint32_t capture_type;
|
||||
uint32_t cursor_mode;
|
||||
} gsr_dbus_message_req_select_sources;
|
||||
|
||||
typedef struct {
|
||||
char session_handle[128];
|
||||
} gsr_dbus_message_req_start;
|
||||
|
||||
typedef struct {
|
||||
char session_handle[128];
|
||||
} gsr_dbus_message_req_open_pipewire_remote;
|
||||
|
||||
typedef struct {
|
||||
uint8_t protocol_version;
|
||||
gsr_dbus_message_req_type type;
|
||||
union {
|
||||
gsr_dbus_message_req_create_session create_session;
|
||||
gsr_dbus_message_req_select_sources select_sources;
|
||||
gsr_dbus_message_req_start start;
|
||||
gsr_dbus_message_req_open_pipewire_remote open_pipewire_remote;
|
||||
};
|
||||
} gsr_dbus_request_message;
|
||||
|
||||
typedef enum {
|
||||
GSR_DBUS_MESSAGE_RESP_ERROR,
|
||||
GSR_DBUS_MESSAGE_RESP_CREATE_SESSION,
|
||||
GSR_DBUS_MESSAGE_RESP_SELECT_SOURCES,
|
||||
GSR_DBUS_MESSAGE_RESP_START,
|
||||
GSR_DBUS_MESSAGE_RESP_OPEN_PIPEWIRE_REMOTE
|
||||
} gsr_dbus_message_resp_type;
|
||||
|
||||
typedef struct {
|
||||
uint32_t error_code;
|
||||
char message[128];
|
||||
} gsr_dbus_message_resp_error;
|
||||
|
||||
typedef struct {
|
||||
char session_handle[128];
|
||||
} gsr_dbus_message_resp_create_session;
|
||||
|
||||
typedef struct {
|
||||
|
||||
} gsr_dbus_message_resp_select_sources;
|
||||
|
||||
typedef struct {
|
||||
char restore_token[128];
|
||||
uint32_t pipewire_node;
|
||||
} gsr_dbus_message_resp_start;
|
||||
|
||||
typedef struct {
|
||||
|
||||
} gsr_dbus_message_resp_open_pipewire_remote;
|
||||
|
||||
typedef struct {
|
||||
uint8_t protocol_version;
|
||||
gsr_dbus_message_resp_type type;
|
||||
union {
|
||||
gsr_dbus_message_resp_error error;
|
||||
gsr_dbus_message_resp_create_session create_session;
|
||||
gsr_dbus_message_resp_select_sources select_sources;
|
||||
gsr_dbus_message_resp_start start;
|
||||
gsr_dbus_message_resp_open_pipewire_remote open_pipewire_remote;
|
||||
};
|
||||
} gsr_dbus_response_message;
|
||||
|
||||
#endif /* GSR_DBUS_PROTOCOL_H */
|
||||
175
dbus/server/dbus_server.c
Normal file
175
dbus/server/dbus_server.c
Normal file
@@ -0,0 +1,175 @@
|
||||
#include "../dbus_impl.h"
|
||||
#include "../protocol.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
/* TODO: Error check write/read */
|
||||
|
||||
static int handle_create_session(gsr_dbus *dbus, int rpc_fd, const gsr_dbus_message_req_create_session *create_session) {
|
||||
(void)create_session;
|
||||
char *session_handle = NULL;
|
||||
const int status = gsr_dbus_screencast_create_session(dbus, &session_handle);
|
||||
if(status == 0) {
|
||||
gsr_dbus_response_message response = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_RESP_CREATE_SESSION,
|
||||
.create_session = (gsr_dbus_message_resp_create_session) {}
|
||||
};
|
||||
snprintf(response.create_session.session_handle, sizeof(response.create_session.session_handle), "%s", session_handle);
|
||||
free(session_handle);
|
||||
write(rpc_fd, &response, sizeof(response));
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
static int handle_select_sources(gsr_dbus *dbus, int rpc_fd, const gsr_dbus_message_req_select_sources *select_sources) {
|
||||
const int status = gsr_dbus_screencast_select_sources(dbus, select_sources->session_handle, select_sources->capture_type, select_sources->cursor_mode);
|
||||
if(status == 0) {
|
||||
gsr_dbus_response_message response = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_RESP_SELECT_SOURCES,
|
||||
.select_sources = (gsr_dbus_message_resp_select_sources) {}
|
||||
};
|
||||
write(rpc_fd, &response, sizeof(response));
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
static int handle_start(gsr_dbus *dbus, int rpc_fd, const gsr_dbus_message_req_start *start) {
|
||||
uint32_t pipewire_node = 0;
|
||||
const int status = gsr_dbus_screencast_start(dbus, start->session_handle, &pipewire_node);
|
||||
if(status == 0) {
|
||||
const char *screencast_restore_token = gsr_dbus_screencast_get_restore_token(dbus);
|
||||
gsr_dbus_response_message response = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_RESP_START,
|
||||
.start = (gsr_dbus_message_resp_start) {
|
||||
.pipewire_node = pipewire_node
|
||||
}
|
||||
};
|
||||
snprintf(response.start.restore_token, sizeof(response.start.restore_token), "%s", screencast_restore_token ? screencast_restore_token : "");
|
||||
write(rpc_fd, &response, sizeof(response));
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
static bool handle_open_pipewire_remote(gsr_dbus *dbus, int rpc_fd, const gsr_dbus_message_req_open_pipewire_remote *open_pipewire_remote) {
|
||||
int pipewire_fd = 0;
|
||||
const bool success = gsr_dbus_screencast_open_pipewire_remote(dbus, open_pipewire_remote->session_handle, &pipewire_fd);
|
||||
if(success) {
|
||||
gsr_dbus_response_message response = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_RESP_OPEN_PIPEWIRE_REMOTE,
|
||||
.open_pipewire_remote = (gsr_dbus_message_resp_open_pipewire_remote) {}
|
||||
};
|
||||
|
||||
struct iovec iov = {
|
||||
.iov_base = &response,
|
||||
.iov_len = sizeof(response)
|
||||
};
|
||||
|
||||
char msg_control[CMSG_SPACE(sizeof(int))];
|
||||
|
||||
struct msghdr message = {
|
||||
.msg_iov = &iov,
|
||||
.msg_iovlen = 1,
|
||||
.msg_control = msg_control,
|
||||
.msg_controllen = sizeof(msg_control)
|
||||
};
|
||||
|
||||
struct cmsghdr *cmsg = CMSG_FIRSTHDR(&message);
|
||||
cmsg->cmsg_level = SOL_SOCKET;
|
||||
cmsg->cmsg_type = SCM_RIGHTS;
|
||||
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
|
||||
int *fds = (int*)CMSG_DATA(cmsg);
|
||||
fds[0] = pipewire_fd;
|
||||
message.msg_controllen = cmsg->cmsg_len;
|
||||
sendmsg(rpc_fd, &message, 0);
|
||||
}
|
||||
return success;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
if(argc != 3) {
|
||||
fprintf(stderr, "usage: gsr-dbus-server <rpc-fd> <screencast-restore-token>\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
const char *rpc_fd_str = argv[1];
|
||||
const char *screencast_restore_token = argv[2];
|
||||
|
||||
int rpc_fd = -1;
|
||||
if(sscanf(rpc_fd_str, "%d", &rpc_fd) != 1) {
|
||||
fprintf(stderr, "gsr-dbus-server error: rpc-fd is not a number: %s\n", rpc_fd_str);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(screencast_restore_token[0] == '\0')
|
||||
screencast_restore_token = NULL;
|
||||
|
||||
gsr_dbus dbus;
|
||||
if(!gsr_dbus_init(&dbus, screencast_restore_token))
|
||||
return 1;
|
||||
|
||||
/* Tell client we have started up */
|
||||
write(rpc_fd, "S", 1);
|
||||
|
||||
gsr_dbus_request_message request;
|
||||
for(;;) {
|
||||
read(rpc_fd, &request, sizeof(request));
|
||||
|
||||
if(request.protocol_version != GSR_DBUS_PROTOCOL_VERSION) {
|
||||
gsr_dbus_response_message response = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_RESP_ERROR,
|
||||
.error = (gsr_dbus_message_resp_error) {
|
||||
.error_code = 1
|
||||
}
|
||||
};
|
||||
snprintf(response.error.message, sizeof(response.error.message), "Client uses protocol version %d while the server is using protocol version %d", request.protocol_version, GSR_DBUS_PROTOCOL_VERSION);
|
||||
fprintf(stderr, "gsr-dbus-server error: %s\n", response.error.message);
|
||||
write(rpc_fd, &response, sizeof(response));
|
||||
continue;
|
||||
}
|
||||
|
||||
int status = 0;
|
||||
switch(request.type) {
|
||||
case GSR_DBUS_MESSAGE_REQ_CREATE_SESSION: {
|
||||
status = handle_create_session(&dbus, rpc_fd, &request.create_session);
|
||||
break;
|
||||
}
|
||||
case GSR_DBUS_MESSAGE_REQ_SELECT_SOURCES: {
|
||||
status = handle_select_sources(&dbus, rpc_fd, &request.select_sources);
|
||||
break;
|
||||
}
|
||||
case GSR_DBUS_MESSAGE_REQ_START: {
|
||||
status = handle_start(&dbus, rpc_fd, &request.start);
|
||||
break;
|
||||
}
|
||||
case GSR_DBUS_MESSAGE_REQ_OPEN_PIPEWIRE_REMOTE: {
|
||||
if(!handle_open_pipewire_remote(&dbus, rpc_fd, &request.open_pipewire_remote))
|
||||
status = -1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(status != 0) {
|
||||
gsr_dbus_response_message response = {
|
||||
.protocol_version = GSR_DBUS_PROTOCOL_VERSION,
|
||||
.type = GSR_DBUS_MESSAGE_RESP_ERROR,
|
||||
.error = (gsr_dbus_message_resp_error) {
|
||||
.error_code = status
|
||||
}
|
||||
};
|
||||
snprintf(response.error.message, sizeof(response.error.message), "%s", "Failed to handle request");
|
||||
write(rpc_fd, &response, sizeof(response));
|
||||
}
|
||||
}
|
||||
|
||||
gsr_dbus_deinit(&dbus);
|
||||
return 0;
|
||||
}
|
||||
@@ -5,7 +5,7 @@ Description=GPU Screen Recorder Service
|
||||
EnvironmentFile=-%h/.config/gpu-screen-recorder.env
|
||||
Environment=WINDOW=screen
|
||||
Environment=CONTAINER=mp4
|
||||
Environment=QUALITY=50000
|
||||
Environment=QUALITY=40000
|
||||
Environment=BITRATE_MODE=cbr
|
||||
Environment=CODEC=auto
|
||||
Environment=AUDIO_CODEC=opus
|
||||
@@ -27,4 +27,4 @@ Restart=on-failure
|
||||
RestartSec=5s
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
WantedBy=default.target
|
||||
|
||||
@@ -3,15 +3,3 @@
|
||||
# Needed to remove password prompt when recording a monitor (without desktop portal option) on amd/intel or nvidia wayland
|
||||
/usr/sbin/setcap cap_sys_admin+ep ${MESON_INSTALL_DESTDIR_PREFIX}/bin/gsr-kms-server \
|
||||
|| echo "\n!!! Please re-run install as root\n"
|
||||
|
||||
# Cant do this because it breaks desktop portal (create session)!!!.
|
||||
# For some reason the desktop portal tries to access /proc/gpu-screen-recorder-pid/root from the portal process
|
||||
# which doesn't work because for some reason CAP_SYS_NICE on a program makes /proc/self/root not readable by other processes.
|
||||
# The reason portal reads that file might be because portal seems to have a security feature where its able to identify the
|
||||
# process and if the session token is stolen by another application then it will ignore the session token as it wasn't that
|
||||
# application that created the session token.
|
||||
# ---
|
||||
# This is needed (for EGL_CONTEXT_PRIORITY_HIGH_IMG) to allow gpu screen recorder to run faster than the heaviest application on AMD.
|
||||
# For example when trying to record a game at 60 fps and the game drops to 45 fps in some place that would also make gpu screen recorder
|
||||
# drop to 45 fps unless this setcap is used.
|
||||
#/usr/sbin/setcap cap_sys_nice+ep ${MESON_INSTALL_DESTDIR_PREFIX}/bin/gpu-screen-recorder
|
||||
|
||||
@@ -8,12 +8,6 @@
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#define GSR_PIPEWIRE_AUDIO_MAX_STREAM_NODES 128
|
||||
#define GSR_PIPEWIRE_AUDIO_MAX_PORTS 256
|
||||
#define GSR_PIPEWIRE_AUDIO_MAX_LINKS 256
|
||||
#define GSR_PIPEWIRE_AUDIO_MAX_REQUESTED_LINKS 32
|
||||
#define GSR_PIPEWIRE_AUDIO_MAX_VIRTUAL_SINKS 32
|
||||
|
||||
typedef enum {
|
||||
GSR_PIPEWIRE_AUDIO_NODE_TYPE_STREAM_OUTPUT, /* Application audio */
|
||||
GSR_PIPEWIRE_AUDIO_NODE_TYPE_STREAM_INPUT, /* Audio recording input */
|
||||
@@ -84,20 +78,25 @@ typedef struct {
|
||||
char default_output_device_name[128];
|
||||
char default_input_device_name[128];
|
||||
|
||||
gsr_pipewire_audio_node stream_nodes[GSR_PIPEWIRE_AUDIO_MAX_STREAM_NODES];
|
||||
int num_stream_nodes;
|
||||
gsr_pipewire_audio_node *stream_nodes;
|
||||
size_t num_stream_nodes;
|
||||
size_t stream_nodes_capacity_items;
|
||||
|
||||
gsr_pipewire_audio_port ports[GSR_PIPEWIRE_AUDIO_MAX_PORTS];
|
||||
int num_ports;
|
||||
gsr_pipewire_audio_port *ports;
|
||||
size_t num_ports;
|
||||
size_t ports_capacity_items;
|
||||
|
||||
gsr_pipewire_audio_link links[GSR_PIPEWIRE_AUDIO_MAX_LINKS];
|
||||
int num_links;
|
||||
gsr_pipewire_audio_link *links;
|
||||
size_t num_links;
|
||||
size_t links_capacity_items;
|
||||
|
||||
gsr_pipewire_audio_requested_link requested_links[GSR_PIPEWIRE_AUDIO_MAX_REQUESTED_LINKS];
|
||||
int num_requested_links;
|
||||
gsr_pipewire_audio_requested_link *requested_links;
|
||||
size_t num_requested_links;
|
||||
size_t requested_links_capacity_items;
|
||||
|
||||
struct pw_proxy *virtual_sink_proxies[GSR_PIPEWIRE_AUDIO_MAX_VIRTUAL_SINKS];
|
||||
int num_virtual_sink_proxies;
|
||||
struct pw_proxy **virtual_sink_proxies;
|
||||
size_t num_virtual_sink_proxies;
|
||||
size_t virtual_sink_proxies_capacity_items;
|
||||
} gsr_pipewire_audio;
|
||||
|
||||
bool gsr_pipewire_audio_init(gsr_pipewire_audio *self);
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define CONNECTOR_TYPE_COUNTS 32
|
||||
|
||||
typedef struct AVCodecContext AVCodecContext;
|
||||
typedef struct AVFrame AVFrame;
|
||||
|
||||
@@ -29,12 +27,6 @@ typedef struct {
|
||||
bool found_monitor;
|
||||
} get_monitor_by_name_userdata;
|
||||
|
||||
typedef struct {
|
||||
int type;
|
||||
int count;
|
||||
int count_active;
|
||||
} drm_connector_type_count;
|
||||
|
||||
double clock_get_monotonic_seconds(void);
|
||||
bool generate_random_characters(char *buffer, int buffer_size, const char *alphabet, size_t alphabet_size);
|
||||
bool generate_random_characters_standard_alphabet(char *buffer, int buffer_size);
|
||||
@@ -46,7 +38,7 @@ bool get_monitor_by_name(const gsr_egl *egl, gsr_connection_type connection_type
|
||||
bool drm_monitor_get_display_server_data(const gsr_window *window, const gsr_monitor *monitor, gsr_monitor_rotation *monitor_rotation, vec2i *monitor_position);
|
||||
|
||||
int get_connector_type_by_name(const char *name);
|
||||
drm_connector_type_count* drm_connector_types_get_index(drm_connector_type_count *type_counts, int *num_type_counts, int connector_type);
|
||||
int get_connector_type_id_by_name(const char *name);
|
||||
uint32_t monitor_identifier_from_type_and_count(int monitor_type_index, int monitor_type_count);
|
||||
|
||||
bool gl_get_gpu_info(gsr_egl *egl, gsr_gpu_info *info);
|
||||
@@ -61,7 +53,6 @@ int create_directory_recursive(char *path);
|
||||
|
||||
/* |img_attr| needs to be at least 44 in size */
|
||||
void setup_dma_buf_attrs(intptr_t *img_attr, uint32_t format, uint32_t width, uint32_t height, const int *fds, const uint32_t *offsets, const uint32_t *pitches, const uint64_t *modifiers, int num_planes, bool use_modifier);
|
||||
bool video_codec_context_is_vaapi(AVCodecContext *video_codec_context);
|
||||
|
||||
vec2i scale_keep_aspect_ratio(vec2i from, vec2i to);
|
||||
|
||||
|
||||
@@ -312,7 +312,7 @@ int gsr_kms_client_init(gsr_kms_client *self, const char *card_path) {
|
||||
const char *args[] = { "pkexec", server_filepath, self->initial_socket_path, card_path, NULL };
|
||||
execvp(args[0], (char *const*)args);
|
||||
}
|
||||
fprintf(stderr, "gsr error: gsr_kms_client_init: execvp failed, error: %s\n", strerror(errno));
|
||||
fprintf(stderr, "gsr error: gsr_kms_client_init: failed to launch \"gsr-kms-server\", error: %s\n", strerror(errno));
|
||||
_exit(127);
|
||||
} else { /* parent */
|
||||
self->kms_server_pid = pid;
|
||||
@@ -387,6 +387,7 @@ void cleanup_socket(gsr_kms_client *self, bool kill_server) {
|
||||
|
||||
if(kill_server && self->kms_server_pid > 0) {
|
||||
kill(self->kms_server_pid, SIGKILL);
|
||||
// TODO:
|
||||
//int status;
|
||||
//waitpid(self->kms_server_pid, &status, 0);
|
||||
self->kms_server_pid = -1;
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <locale.h>
|
||||
|
||||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
@@ -434,6 +435,8 @@ static double clock_get_monotonic_seconds(void) {
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
setlocale(LC_ALL, "C"); // Sigh... stupid C
|
||||
|
||||
int res = 0;
|
||||
int socket_fd = 0;
|
||||
gsr_drm drm;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
project('gpu-screen-recorder', ['c', 'cpp'], version : '5.5.0', default_options : ['warning_level=2'])
|
||||
project('gpu-screen-recorder', ['c', 'cpp'], version : '5.5.7', default_options : ['warning_level=2'])
|
||||
|
||||
add_project_arguments('-Wshadow', language : ['c', 'cpp'])
|
||||
if get_option('buildtype') == 'debug'
|
||||
@@ -76,10 +76,9 @@ uses_pipewire = false
|
||||
if get_option('portal') == true
|
||||
src += [
|
||||
'src/capture/portal.c',
|
||||
'src/dbus.c',
|
||||
'dbus/client/dbus_client.c',
|
||||
'src/pipewire_video.c',
|
||||
]
|
||||
dep += dependency('dbus-1')
|
||||
add_project_arguments('-DGSR_PORTAL', language : ['c', 'cpp'])
|
||||
uses_pipewire = true
|
||||
endif
|
||||
@@ -104,6 +103,10 @@ add_project_arguments('-DGSR_VERSION="' + meson.project_version() + '"', languag
|
||||
executable('gsr-kms-server', 'kms/server/kms_server.c', dependencies : dependency('libdrm'), c_args : '-fstack-protector-all', install : true)
|
||||
executable('gpu-screen-recorder', src, dependencies : dep, install : true)
|
||||
|
||||
if get_option('portal') == true
|
||||
executable('gsr-dbus-server', ['dbus/server/dbus_server.c', 'dbus/dbus_impl.c'], dependencies : dependency('dbus-1'), install : true)
|
||||
endif
|
||||
|
||||
if get_option('systemd') == true
|
||||
install_data(files('extra/gpu-screen-recorder.service'), install_dir : 'lib/systemd/user')
|
||||
endif
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
[package]
|
||||
name = "gpu-screen-recorder"
|
||||
type = "executable"
|
||||
version = "5.5.0"
|
||||
version = "5.5.7"
|
||||
platforms = ["posix"]
|
||||
|
||||
[config]
|
||||
ignore_dirs = ["kms/server", "build", "debug-build"]
|
||||
ignore_dirs = ["kms/server", "build", "debug-build", "dbus/server"]
|
||||
#error_on_warning = "true"
|
||||
|
||||
[define]
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
window=$(xdotool selectwindow)
|
||||
window_name=$(xdotool getwindowname "$window" || xdotool getwindowclassname "$window" || echo "Game")
|
||||
window_name="$(echo "$window_name" | tr '/\\' '_')"
|
||||
gpu-screen-recorder -w "$window" -f 60 -c mkv -a default_output -bm cbr -q 45000 -r 60 -o "$HOME/Videos/Replays/$window_name"
|
||||
gpu-screen-recorder -w "$window" -f 60 -c mkv -a default_output -bm cbr -q 40000 -r 60 -o "$HOME/Videos/Replays/$window_name"
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
pidof -q gpu-screen-recorder && exit 0
|
||||
video_path="$HOME/Videos"
|
||||
mkdir -p "$video_path"
|
||||
gpu-screen-recorder -w screen -f 60 -a default_output -c mkv -bm cbr -q 45000 -r 30 -o "$video_path"
|
||||
gpu-screen-recorder -w screen -f 60 -a default_output -c mkv -bm cbr -q 40000 -r 30 -o "$video_path"
|
||||
|
||||
@@ -194,7 +194,6 @@ static void usage_header() {
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
// TODO: Update with portal info
|
||||
static void usage_full() {
|
||||
const bool inside_flatpak = getenv("FLATPAK_ID") != NULL;
|
||||
const char *program_name = inside_flatpak ? "flatpak run --command=gpu-screen-recorder com.dec05eba.gpu_screen_recorder" : "gpu-screen-recorder";
|
||||
@@ -397,6 +396,7 @@ static void usage_full() {
|
||||
printf("EXAMPLES:\n");
|
||||
printf(" %s -w screen -f 60 -a default_output -o video.mp4\n", program_name);
|
||||
printf(" %s -w screen -f 60 -a default_output -a default_input -o video.mp4\n", program_name);
|
||||
printf(" %s -w $(xdotool selectwindow) -f 60 -a default_output -o video.mp4\n", program_name);
|
||||
printf(" %s -w screen -f 60 -a \"default_output|default_input\" -o video.mp4\n", program_name);
|
||||
printf(" %s -w screen -f 60 -a default_output -c mkv -r 60 -o \"$HOME/Videos\"\n", program_name);
|
||||
printf(" %s -w screen -f 60 -a default_output -c mkv -r 1800 -replay-storage disk -bm cbr -q 40000 -o \"$HOME/Videos\"\n", program_name);
|
||||
@@ -465,7 +465,7 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
self->keyint = args_get_double_by_key(self->args, NUM_ARGS, "-keyint", 2.0);
|
||||
|
||||
if(self->audio_codec == GSR_AUDIO_CODEC_FLAC) {
|
||||
fprintf(stderr, "Warning: flac audio codec is temporary disabled, using opus audio codec instead\n");
|
||||
fprintf(stderr, "gsr warning: flac audio codec is temporary disabled, using opus audio codec instead\n");
|
||||
self->audio_codec = GSR_AUDIO_CODEC_OPUS;
|
||||
}
|
||||
|
||||
@@ -473,7 +473,7 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
if(self->portal_session_token_filepath) {
|
||||
int len = strlen(self->portal_session_token_filepath);
|
||||
if(len > 0 && self->portal_session_token_filepath[len - 1] == '/') {
|
||||
fprintf(stderr, "Error: -portal-session-token-filepath should be a path to a file but it ends with a /: %s\n", self->portal_session_token_filepath);
|
||||
fprintf(stderr, "gsr error: -portal-session-token-filepath should be a path to a file but it ends with a /: %s\n", self->portal_session_token_filepath);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -482,13 +482,13 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
if(self->recording_saved_script) {
|
||||
struct stat buf;
|
||||
if(stat(self->recording_saved_script, &buf) == -1 || !S_ISREG(buf.st_mode)) {
|
||||
fprintf(stderr, "Error: Script \"%s\" either doesn't exist or it's not a file\n", self->recording_saved_script);
|
||||
fprintf(stderr, "gsr error: Script \"%s\" either doesn't exist or it's not a file\n", self->recording_saved_script);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!(buf.st_mode & S_IXUSR)) {
|
||||
fprintf(stderr, "Error: Script \"%s\" is not executable\n", self->recording_saved_script);
|
||||
fprintf(stderr, "gsr error: Script \"%s\" is not executable\n", self->recording_saved_script);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -500,19 +500,19 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
|
||||
if(self->bitrate_mode == GSR_BITRATE_MODE_CBR) {
|
||||
if(!quality_str) {
|
||||
fprintf(stderr, "Error: option '-q' is required when using '-bm cbr' option\n");
|
||||
fprintf(stderr, "gsr error: option '-q' is required when using '-bm cbr' option\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(sscanf(quality_str, "%" PRIi64, &self->video_bitrate) != 1) {
|
||||
fprintf(stderr, "Error: -q argument \"%s\" is not an integer value. When using '-bm cbr' option '-q' is expected to be an integer value\n", quality_str);
|
||||
fprintf(stderr, "gsr error: -q argument \"%s\" is not an integer value. When using '-bm cbr' option '-q' is expected to be an integer value\n", quality_str);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(self->video_bitrate < 0) {
|
||||
fprintf(stderr, "Error: -q is expected to be 0 or larger, got %" PRIi64 "\n", self->video_bitrate);
|
||||
fprintf(stderr, "gsr error: -q is expected to be 0 or larger, got %" PRIi64 "\n", self->video_bitrate);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -531,7 +531,7 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
} else if(strcmp(quality_str, "ultra") == 0) {
|
||||
self->video_quality = GSR_VIDEO_QUALITY_ULTRA;
|
||||
} else {
|
||||
fprintf(stderr, "Error: -q should either be 'medium', 'high', 'very_high' or 'ultra', got: '%s'\n", quality_str);
|
||||
fprintf(stderr, "gsr error: -q should either be 'medium', 'high', 'very_high' or 'ultra', got: '%s'\n", quality_str);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -539,7 +539,7 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
|
||||
const char *output_resolution_str = args_get_value_by_key(self->args, NUM_ARGS, "-s");
|
||||
if(!output_resolution_str && strcmp(self->window, "focused") == 0) {
|
||||
fprintf(stderr, "Error: option -s is required when using '-w focused' option\n");
|
||||
fprintf(stderr, "gsr error: option -s is required when using '-w focused' option\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -547,13 +547,13 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
self->output_resolution = (vec2i){0, 0};
|
||||
if(output_resolution_str) {
|
||||
if(sscanf(output_resolution_str, "%dx%d", &self->output_resolution.x, &self->output_resolution.y) != 2) {
|
||||
fprintf(stderr, "Error: invalid value for option -s '%s', expected a value in format WxH\n", output_resolution_str);
|
||||
fprintf(stderr, "gsr error: invalid value for option -s '%s', expected a value in format WxH\n", output_resolution_str);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(self->output_resolution.x < 0 || self->output_resolution.y < 0) {
|
||||
fprintf(stderr, "Error: invalid value for option -s '%s', expected width and height to be greater or equal to 0\n", output_resolution_str);
|
||||
fprintf(stderr, "gsr error: invalid value for option -s '%s', expected width and height to be greater or equal to 0\n", output_resolution_str);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -564,25 +564,25 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
const char *region_str = args_get_value_by_key(self->args, NUM_ARGS, "-region");
|
||||
if(region_str) {
|
||||
if(strcmp(self->window, "region") != 0) {
|
||||
fprintf(stderr, "Error: option -region can only be used when option '-w region' is used\n");
|
||||
fprintf(stderr, "gsr error: option -region can only be used when option '-w region' is used\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(sscanf(region_str, "%dx%d+%d+%d", &self->region_size.x, &self->region_size.y, &self->region_position.x, &self->region_position.y) != 4) {
|
||||
fprintf(stderr, "Error: invalid value for option -region '%s', expected a value in format WxH+X+Y\n", region_str);
|
||||
fprintf(stderr, "gsr error: invalid value for option -region '%s', expected a value in format WxH+X+Y\n", region_str);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(self->region_size.x < 0 || self->region_size.y < 0 || self->region_position.x < 0 || self->region_position.y < 0) {
|
||||
fprintf(stderr, "Error: invalid value for option -region '%s', expected width, height, x and y to be greater or equal to 0\n", region_str);
|
||||
fprintf(stderr, "gsr error: invalid value for option -region '%s', expected width, height, x and y to be greater or equal to 0\n", region_str);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if(strcmp(self->window, "region") == 0) {
|
||||
fprintf(stderr, "Error: option -region is required when '-w region' is used\n");
|
||||
fprintf(stderr, "gsr error: option -region is required when '-w region' is used\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -604,7 +604,7 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
self->is_livestream = is_livestream_path(self->filename);
|
||||
if(self->is_livestream) {
|
||||
if(is_replaying) {
|
||||
fprintf(stderr, "Error: replay mode is not applicable to live streaming\n");
|
||||
fprintf(stderr, "gsr error: replay mode is not applicable to live streaming\n");
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
@@ -614,20 +614,20 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
char *directory = dirname(directory_buf);
|
||||
if(strcmp(directory, ".") != 0 && strcmp(directory, "/") != 0) {
|
||||
if(create_directory_recursive(directory) != 0) {
|
||||
fprintf(stderr, "Error: failed to create directory for output file: %s\n", self->filename);
|
||||
fprintf(stderr, "gsr error: failed to create directory for output file: %s\n", self->filename);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if(!self->container_format) {
|
||||
fprintf(stderr, "Error: option -c is required when using option -r\n");
|
||||
fprintf(stderr, "gsr error: option -c is required when using option -r\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
struct stat buf;
|
||||
if(stat(self->filename, &buf) != -1 && !S_ISDIR(buf.st_mode)) {
|
||||
fprintf(stderr, "Error: File \"%s\" exists but it's not a directory\n", self->filename);
|
||||
fprintf(stderr, "gsr error: File \"%s\" exists but it's not a directory\n", self->filename);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -637,13 +637,13 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
if(!is_replaying) {
|
||||
self->filename = "/dev/stdout";
|
||||
} else {
|
||||
fprintf(stderr, "Error: Option -o is required when using option -r\n");
|
||||
fprintf(stderr, "gsr error: Option -o is required when using option -r\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!self->container_format) {
|
||||
fprintf(stderr, "Error: option -c is required when not using option -o\n");
|
||||
fprintf(stderr, "gsr error: option -c is required when not using option -o\n");
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -656,10 +656,10 @@ static bool args_parser_set_values(args_parser *self) {
|
||||
|
||||
const bool is_portal_capture = strcmp(self->window, "portal") == 0;
|
||||
if(!self->restore_portal_session && is_portal_capture)
|
||||
fprintf(stderr, "Info: option '-w portal' was used without '-restore-portal-session yes'. The previous screencast session will be ignored\n");
|
||||
fprintf(stderr, "gsr info: option '-w portal' was used without '-restore-portal-session yes'. The previous screencast session will be ignored\n");
|
||||
|
||||
if(self->is_livestream && self->recording_saved_script) {
|
||||
fprintf(stderr, "Warning: live stream detected, -sc script is ignored\n");
|
||||
fprintf(stderr, "gsr warning: live stream detected, -sc script is ignored\n");
|
||||
self->recording_saved_script = NULL;
|
||||
}
|
||||
|
||||
@@ -704,7 +704,7 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
arg_handlers->list_capture_options(card_path, userdata);
|
||||
return true;
|
||||
} else {
|
||||
fprintf(stderr, "Error: expected --list-capture-options to be called with either no extra arguments or 1 extra argument (card path)\n");
|
||||
fprintf(stderr, "gsr error: expected --list-capture-options to be called with either no extra arguments or 1 extra argument (card path)\n");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -751,19 +751,19 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
const char *arg_name = argv[i];
|
||||
Arg *arg = args_get_by_key(self->args, NUM_ARGS, arg_name);
|
||||
if(!arg) {
|
||||
fprintf(stderr, "Error: invalid argument '%s'\n", arg_name);
|
||||
fprintf(stderr, "gsr error: invalid argument '%s'\n", arg_name);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(arg->num_values > 0 && !arg->list) {
|
||||
fprintf(stderr, "Error: expected argument '%s' to only be specified once\n", arg_name);
|
||||
fprintf(stderr, "gsr error: expected argument '%s' to only be specified once\n", arg_name);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(i + 1 >= argc) {
|
||||
fprintf(stderr, "Error: missing value for argument '%s'\n", arg_name);
|
||||
fprintf(stderr, "gsr error: missing value for argument '%s'\n", arg_name);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -779,7 +779,7 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
} else if(strcmp(arg_value, "no") == 0) {
|
||||
arg->typed_value.boolean = false;
|
||||
} else {
|
||||
fprintf(stderr, "Error: %s should either be 'yes' or 'no', got: '%s'\n", arg_name, arg_value);
|
||||
fprintf(stderr, "gsr error: %s should either be 'yes' or 'no', got: '%s'\n", arg_name, arg_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -787,7 +787,7 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
}
|
||||
case ARG_TYPE_ENUM: {
|
||||
if(!arg_get_enum_value_by_name(arg, arg_value, &arg->typed_value.enum_value)) {
|
||||
fprintf(stderr, "Error: %s should either be ", arg_name);
|
||||
fprintf(stderr, "gsr error: %s should either be ", arg_name);
|
||||
arg_print_expected_enum_names(arg);
|
||||
fprintf(stderr, ", got: '%s'\n", arg_value);
|
||||
usage();
|
||||
@@ -797,19 +797,19 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
}
|
||||
case ARG_TYPE_I64: {
|
||||
if(sscanf(arg_value, "%" PRIi64, &arg->typed_value.i64_value) != 1) {
|
||||
fprintf(stderr, "Error: %s argument \"%s\" is not an integer\n", arg_name, arg_value);
|
||||
fprintf(stderr, "gsr error: %s argument \"%s\" is not an integer\n", arg_name, arg_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(arg->typed_value.i64_value < arg->integer_value_min) {
|
||||
fprintf(stderr, "Error: %s argument is expected to be larger than %" PRIi64 ", got %" PRIi64 "\n", arg_name, arg->integer_value_min, arg->typed_value.i64_value);
|
||||
fprintf(stderr, "gsr error: %s argument is expected to be larger than %" PRIi64 ", got %" PRIi64 "\n", arg_name, arg->integer_value_min, arg->typed_value.i64_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(arg->typed_value.i64_value > arg->integer_value_max) {
|
||||
fprintf(stderr, "Error: %s argument is expected to be less than %" PRIi64 ", got %" PRIi64 "\n", arg_name, arg->integer_value_max, arg->typed_value.i64_value);
|
||||
fprintf(stderr, "gsr error: %s argument is expected to be less than %" PRIi64 ", got %" PRIi64 "\n", arg_name, arg->integer_value_max, arg->typed_value.i64_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -817,19 +817,19 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
}
|
||||
case ARG_TYPE_DOUBLE: {
|
||||
if(sscanf(arg_value, "%lf", &arg->typed_value.d_value) != 1) {
|
||||
fprintf(stderr, "Error: %s argument \"%s\" is not an floating-point number\n", arg_name, arg_value);
|
||||
fprintf(stderr, "gsr error: %s argument \"%s\" is not an floating-point number\n", arg_name, arg_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(arg->typed_value.d_value < arg->integer_value_min) {
|
||||
fprintf(stderr, "Error: %s argument is expected to be larger than %" PRIi64 ", got %lf\n", arg_name, arg->integer_value_min, arg->typed_value.d_value);
|
||||
fprintf(stderr, "gsr error: %s argument is expected to be larger than %" PRIi64 ", got %lf\n", arg_name, arg->integer_value_min, arg->typed_value.d_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(arg->typed_value.d_value > arg->integer_value_max) {
|
||||
fprintf(stderr, "Error: %s argument is expected to be less than %" PRIi64 ", got %lf\n", arg_name, arg->integer_value_max, arg->typed_value.d_value);
|
||||
fprintf(stderr, "gsr error: %s argument is expected to be less than %" PRIi64 ", got %lf\n", arg_name, arg->integer_value_max, arg->typed_value.d_value);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -838,7 +838,7 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
}
|
||||
|
||||
if(!arg_append_value(arg, arg_value)) {
|
||||
fprintf(stderr, "Error: failed to append argument, out of memory\n");
|
||||
fprintf(stderr, "gsr error: failed to append argument, out of memory\n");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -846,7 +846,7 @@ bool args_parser_parse(args_parser *self, int argc, char **argv, const args_hand
|
||||
for(int i = 0; i < NUM_ARGS; ++i) {
|
||||
const Arg *arg = &self->args[i];
|
||||
if(!arg->optional && arg->num_values == 0) {
|
||||
fprintf(stderr, "Error: missing argument '%s'\n", arg->key);
|
||||
fprintf(stderr, "gsr error: missing argument '%s'\n", arg->key);
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
@@ -870,45 +870,45 @@ bool args_parser_validate_with_gl_info(args_parser *self, gsr_egl *egl) {
|
||||
}
|
||||
|
||||
if(egl->gpu_info.is_steam_deck && self->bitrate_mode == GSR_BITRATE_MODE_QP) {
|
||||
fprintf(stderr, "Warning: qp bitrate mode is not supported on Steam Deck because of Steam Deck driver bugs. Using vbr instead\n");
|
||||
fprintf(stderr, "gsr warning: qp bitrate mode is not supported on Steam Deck because of Steam Deck driver bugs. Using vbr instead\n");
|
||||
self->bitrate_mode = GSR_BITRATE_MODE_VBR;
|
||||
}
|
||||
|
||||
if(self->video_encoder == GSR_VIDEO_ENCODER_HW_CPU && self->bitrate_mode == GSR_BITRATE_MODE_VBR) {
|
||||
fprintf(stderr, "Warning: bitrate mode has been forcefully set to qp because software encoding option doesn't support vbr option\n");
|
||||
fprintf(stderr, "gsr warning: bitrate mode has been forcefully set to qp because software encoding option doesn't support vbr option\n");
|
||||
self->bitrate_mode = GSR_BITRATE_MODE_QP;
|
||||
}
|
||||
|
||||
if(egl->gpu_info.vendor != GSR_GPU_VENDOR_NVIDIA && self->overclock) {
|
||||
fprintf(stderr, "Info: overclock option has no effect on amd/intel, ignoring option\n");
|
||||
fprintf(stderr, "gsr info: overclock option has no effect on amd/intel, ignoring option\n");
|
||||
self->overclock = false;
|
||||
}
|
||||
|
||||
if(egl->gpu_info.vendor == GSR_GPU_VENDOR_NVIDIA && self->overclock && wayland) {
|
||||
fprintf(stderr, "Info: overclocking is not possible on nvidia on wayland, ignoring option\n");
|
||||
fprintf(stderr, "gsr info: overclocking is not possible on nvidia on wayland, ignoring option\n");
|
||||
self->overclock = false;
|
||||
}
|
||||
|
||||
if(egl->gpu_info.is_steam_deck) {
|
||||
fprintf(stderr, "Warning: steam deck has multiple driver issues. One of them has been reported here: https://github.com/ValveSoftware/SteamOS/issues/1609\n"
|
||||
fprintf(stderr, "gsr warning: steam deck has multiple driver issues. One of them has been reported here: https://github.com/ValveSoftware/SteamOS/issues/1609\n"
|
||||
"If you have issues with GPU Screen Recorder on steam deck that you don't have on a desktop computer then report the issue to Valve and/or AMD.\n");
|
||||
}
|
||||
|
||||
self->very_old_gpu = false;
|
||||
if(egl->gpu_info.vendor == GSR_GPU_VENDOR_NVIDIA && egl->gpu_info.gpu_version != 0 && egl->gpu_info.gpu_version < 900) {
|
||||
fprintf(stderr, "Info: your gpu appears to be very old (older than maxwell architecture). Switching to lower preset\n");
|
||||
fprintf(stderr, "gsr info: your gpu appears to be very old (older than maxwell architecture). Switching to lower preset\n");
|
||||
self->very_old_gpu = true;
|
||||
}
|
||||
|
||||
if(video_codec_is_hdr(self->video_codec) && !wayland) {
|
||||
fprintf(stderr, "Error: hdr video codec option %s is not available on X11\n", video_codec_to_string(self->video_codec));
|
||||
fprintf(stderr, "gsr error: hdr video codec option %s is not available on X11\n", video_codec_to_string(self->video_codec));
|
||||
usage();
|
||||
return false;
|
||||
}
|
||||
|
||||
const bool is_portal_capture = strcmp(self->window, "portal") == 0;
|
||||
if(video_codec_is_hdr(self->video_codec) && is_portal_capture) {
|
||||
fprintf(stderr, "Warning: portal capture option doesn't support hdr yet (PipeWire doesn't support hdr), the video will be tonemapped from hdr to sdr\n");
|
||||
fprintf(stderr, "gsr warning: portal capture option doesn't support hdr yet (PipeWire doesn't support hdr), the video will be tonemapped from hdr to sdr\n");
|
||||
self->video_codec = hdr_video_codec_to_sdr_video_codec(self->video_codec);
|
||||
}
|
||||
|
||||
|
||||
@@ -289,12 +289,12 @@ static int gsr_capture_nvfbc_start(gsr_capture *cap, gsr_capture_metadata *captu
|
||||
int driver_major_version = 0;
|
||||
int driver_minor_version = 0;
|
||||
if(self->params.direct_capture && get_driver_version(&driver_major_version, &driver_minor_version)) {
|
||||
fprintf(stderr, "Info: detected nvidia version: %d.%d\n", driver_major_version, driver_minor_version);
|
||||
fprintf(stderr, "gsr info: detected nvidia version: %d.%d\n", driver_major_version, driver_minor_version);
|
||||
|
||||
// TODO:
|
||||
if(version_at_least(driver_major_version, driver_minor_version, 515, 57) && version_less_than(driver_major_version, driver_minor_version, 520, 56)) {
|
||||
self->params.direct_capture = false;
|
||||
fprintf(stderr, "Warning: \"screen-direct\" has temporary been disabled as it causes stuttering with driver versions >= 515.57 and < 520.56. Please update your driver if possible. Capturing \"screen\" instead.\n");
|
||||
fprintf(stderr, "gsr warning: \"screen-direct\" has temporary been disabled as it causes stuttering with driver versions >= 515.57 and < 520.56. Please update your driver if possible. Capturing \"screen\" instead.\n");
|
||||
}
|
||||
|
||||
// TODO:
|
||||
@@ -304,7 +304,7 @@ static int gsr_capture_nvfbc_start(gsr_capture *cap, gsr_capture_metadata *captu
|
||||
if(version_at_least(driver_major_version, driver_minor_version, 515, 57))
|
||||
self->supports_direct_cursor = true;
|
||||
else
|
||||
fprintf(stderr, "Info: capturing \"screen-direct\" but driver version appears to be less than 515.57. Disabling capture of cursor. Please update your driver if you want to capture your cursor or record \"screen\" instead.\n");
|
||||
fprintf(stderr, "gsr info: capturing \"screen-direct\" but driver version appears to be less than 515.57. Disabling capture of cursor. Please update your driver if you want to capture your cursor or record \"screen\" instead.\n");
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#include "../../include/color_conversion.h"
|
||||
#include "../../include/egl.h"
|
||||
#include "../../include/utils.h"
|
||||
#include "../../include/dbus.h"
|
||||
#include "../../dbus/client/dbus_client.h"
|
||||
#include "../../include/pipewire_video.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
@@ -16,8 +16,8 @@ typedef struct {
|
||||
|
||||
gsr_texture_map texture_map;
|
||||
|
||||
gsr_dbus dbus;
|
||||
char *session_handle;
|
||||
gsr_dbus_client dbus_client;
|
||||
char session_handle[128];
|
||||
|
||||
gsr_pipewire_video pipewire;
|
||||
vec2i capture_size;
|
||||
@@ -52,15 +52,8 @@ static void gsr_capture_portal_stop(gsr_capture_portal *self) {
|
||||
}
|
||||
|
||||
gsr_capture_portal_cleanup_plane_fds(self);
|
||||
|
||||
gsr_pipewire_video_deinit(&self->pipewire);
|
||||
|
||||
if(self->session_handle) {
|
||||
free(self->session_handle);
|
||||
self->session_handle = NULL;
|
||||
}
|
||||
|
||||
gsr_dbus_deinit(&self->dbus);
|
||||
gsr_dbus_client_deinit(&self->dbus_client);
|
||||
}
|
||||
|
||||
static void gsr_capture_portal_create_input_textures(gsr_capture_portal *self) {
|
||||
@@ -195,36 +188,36 @@ static int gsr_capture_portal_setup_dbus(gsr_capture_portal *self, int *pipewire
|
||||
if(self->params.restore_portal_session)
|
||||
gsr_capture_portal_get_restore_token_from_cache(restore_token, sizeof(restore_token), self->params.portal_session_token_filepath);
|
||||
|
||||
if(!gsr_dbus_init(&self->dbus, restore_token))
|
||||
if(!gsr_dbus_client_init(&self->dbus_client, restore_token))
|
||||
return -1;
|
||||
|
||||
fprintf(stderr, "gsr info: gsr_capture_portal_setup_dbus: CreateSession\n");
|
||||
response_status = gsr_dbus_screencast_create_session(&self->dbus, &self->session_handle);
|
||||
response_status = gsr_dbus_client_screencast_create_session(&self->dbus_client, self->session_handle, sizeof(self->session_handle));
|
||||
if(response_status != 0) {
|
||||
fprintf(stderr, "gsr error: gsr_capture_portal_setup_dbus: CreateSession failed\n");
|
||||
return response_status;
|
||||
}
|
||||
|
||||
fprintf(stderr, "gsr info: gsr_capture_portal_setup_dbus: SelectSources\n");
|
||||
response_status = gsr_dbus_screencast_select_sources(&self->dbus, self->session_handle, GSR_PORTAL_CAPTURE_TYPE_ALL, self->params.record_cursor ? GSR_PORTAL_CURSOR_MODE_EMBEDDED : GSR_PORTAL_CURSOR_MODE_HIDDEN);
|
||||
response_status = gsr_dbus_client_screencast_select_sources(&self->dbus_client, self->session_handle, GSR_PORTAL_CAPTURE_TYPE_ALL, self->params.record_cursor ? GSR_PORTAL_CURSOR_MODE_EMBEDDED : GSR_PORTAL_CURSOR_MODE_HIDDEN);
|
||||
if(response_status != 0) {
|
||||
fprintf(stderr, "gsr error: gsr_capture_portal_setup_dbus: SelectSources failed\n");
|
||||
return response_status;
|
||||
}
|
||||
|
||||
fprintf(stderr, "gsr info: gsr_capture_portal_setup_dbus: Start\n");
|
||||
response_status = gsr_dbus_screencast_start(&self->dbus, self->session_handle, pipewire_node);
|
||||
response_status = gsr_dbus_client_screencast_start(&self->dbus_client, self->session_handle, pipewire_node);
|
||||
if(response_status != 0) {
|
||||
fprintf(stderr, "gsr error: gsr_capture_portal_setup_dbus: Start failed\n");
|
||||
return response_status;
|
||||
}
|
||||
|
||||
const char *screencast_restore_token = gsr_dbus_screencast_get_restore_token(&self->dbus);
|
||||
const char *screencast_restore_token = gsr_dbus_client_screencast_get_restore_token(&self->dbus_client);
|
||||
if(screencast_restore_token)
|
||||
gsr_capture_portal_save_restore_token(screencast_restore_token, self->params.portal_session_token_filepath);
|
||||
|
||||
fprintf(stderr, "gsr info: gsr_capture_portal_setup_dbus: OpenPipeWireRemote\n");
|
||||
if(!gsr_dbus_screencast_open_pipewire_remote(&self->dbus, self->session_handle, pipewire_fd)) {
|
||||
if(!gsr_dbus_client_screencast_open_pipewire_remote(&self->dbus_client, self->session_handle, pipewire_fd)) {
|
||||
fprintf(stderr, "gsr error: gsr_capture_portal_setup_dbus: OpenPipeWireRemote failed\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -920,7 +920,6 @@ void gsr_color_conversion_draw(gsr_color_conversion *self, unsigned int texture_
|
||||
source_position.x += source_pos.x;
|
||||
source_position.y += source_pos.y;
|
||||
gsr_color_conversion_draw_graphics(self, texture_id, external_texture, rotation_matrix, source_position, source_size, destination_pos, texture_size, scale, source_color);
|
||||
// TODO: Is glFlush and glFinish needed here for graphics garbage?
|
||||
} else {
|
||||
switch(rotation) {
|
||||
case GSR_ROT_0:
|
||||
@@ -955,6 +954,7 @@ void gsr_color_conversion_draw(gsr_color_conversion *self, unsigned int texture_
|
||||
}
|
||||
}
|
||||
|
||||
self->params.egl->glFlush();
|
||||
// TODO: Use the minimal barrier required
|
||||
self->params.egl->glMemoryBarrier(GL_ALL_BARRIER_BITS); // GL_SHADER_IMAGE_ACCESS_BARRIER_BIT
|
||||
self->params.egl->glUseProgram(0);
|
||||
|
||||
35
src/egl.c
35
src/egl.c
@@ -9,7 +9,6 @@
|
||||
#include <dlfcn.h>
|
||||
#include <assert.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/capability.h>
|
||||
|
||||
// TODO: rename gsr_egl to something else since this includes both egl and glx and in the future maybe vulkan too
|
||||
|
||||
@@ -29,23 +28,6 @@
|
||||
#define GLX_DEPTH_SIZE 12
|
||||
#define GLX_RGBA_TYPE 0x8014
|
||||
|
||||
#define GLX_CONTEXT_PRIORITY_LEVEL_EXT 0x3100
|
||||
#define GLX_CONTEXT_PRIORITY_HIGH_EXT 0x3101
|
||||
#define GLX_CONTEXT_PRIORITY_MEDIUM_EXT 0x3102
|
||||
#define GLX_CONTEXT_PRIORITY_LOW_EXT 0x3103
|
||||
|
||||
static void reset_cap_nice(void) {
|
||||
cap_t caps = cap_get_proc();
|
||||
if(!caps)
|
||||
return;
|
||||
|
||||
const cap_value_t cap_to_remove = CAP_SYS_NICE;
|
||||
cap_set_flag(caps, CAP_EFFECTIVE, 1, &cap_to_remove, CAP_CLEAR);
|
||||
cap_set_flag(caps, CAP_PERMITTED, 1, &cap_to_remove, CAP_CLEAR);
|
||||
cap_set_proc(caps);
|
||||
cap_free(caps);
|
||||
}
|
||||
|
||||
// TODO: Create egl context without surface (in other words, x11/wayland agnostic, doesn't require x11/wayland dependency)
|
||||
static bool gsr_egl_create_window(gsr_egl *self) {
|
||||
EGLConfig ecfg;
|
||||
@@ -60,7 +42,6 @@ static bool gsr_egl_create_window(gsr_egl *self) {
|
||||
|
||||
const int32_t ctxattr[] = {
|
||||
EGL_CONTEXT_CLIENT_VERSION, 2,
|
||||
//EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG, /* requires cap_sys_nice, ignored otherwise */
|
||||
EGL_NONE, EGL_NONE
|
||||
};
|
||||
|
||||
@@ -100,11 +81,9 @@ static bool gsr_egl_create_window(gsr_egl *self) {
|
||||
goto fail;
|
||||
}
|
||||
|
||||
reset_cap_nice();
|
||||
return true;
|
||||
|
||||
fail:
|
||||
reset_cap_nice();
|
||||
gsr_egl_unload(self);
|
||||
return false;
|
||||
}
|
||||
@@ -538,15 +517,7 @@ void gsr_egl_unload(gsr_egl *self) {
|
||||
}
|
||||
|
||||
void gsr_egl_swap_buffers(gsr_egl *self) {
|
||||
/* This uses less cpu than swap buffer on nvidia */
|
||||
// TODO: Do these and remove swap
|
||||
//self->glFlush();
|
||||
//self->glFinish();
|
||||
if(self->egl_display) {
|
||||
self->eglSwapBuffers(self->egl_display, self->egl_surface);
|
||||
} else if(gsr_window_get_display_server(self->window) == GSR_DISPLAY_SERVER_X11) {
|
||||
Display *display = gsr_window_get_display(self->window);
|
||||
const Window window = (Window)gsr_window_get_window(self->window);
|
||||
self->glXSwapBuffers(display, window);
|
||||
}
|
||||
self->glFlush();
|
||||
// TODO: Use the minimal barrier required
|
||||
self->glMemoryBarrier(GL_ALL_BARRIER_BITS); // GL_SHADER_IMAGE_ACCESS_BARRIER_BIT
|
||||
}
|
||||
|
||||
185
src/main.cpp
185
src/main.cpp
@@ -5,7 +5,7 @@ extern "C" {
|
||||
#include "../include/capture/kms.h"
|
||||
#ifdef GSR_PORTAL
|
||||
#include "../include/capture/portal.h"
|
||||
#include "../include/dbus.h"
|
||||
#include "../dbus/client/dbus_client.h"
|
||||
#endif
|
||||
#ifdef GSR_APP_AUDIO
|
||||
#include "../include/pipewire_audio.h"
|
||||
@@ -47,6 +47,7 @@ extern "C" {
|
||||
extern "C" {
|
||||
#include <libavutil/pixfmt.h>
|
||||
#include <libavcodec/avcodec.h>
|
||||
#include <libavcodec/defs.h>
|
||||
#include <libavformat/avformat.h>
|
||||
#include <libavutil/opt.h>
|
||||
#include <libswresample/swresample.h>
|
||||
@@ -196,7 +197,7 @@ static AVSampleFormat audio_codec_get_sample_format(AVCodecContext *audio_codec_
|
||||
supports_s16 = false;
|
||||
|
||||
if(!supports_s16 && !supports_flt) {
|
||||
fprintf(stderr, "Warning: opus audio codec is chosen but your ffmpeg version does not support s16/flt sample format and performance might be slightly worse.\n");
|
||||
fprintf(stderr, "gsr warning: opus audio codec is chosen but your ffmpeg version does not support s16/flt sample format and performance might be slightly worse.\n");
|
||||
fprintf(stderr, " You can either rebuild ffmpeg with libopus instead of the built-in opus, use the flatpak version of gpu screen recorder or record with aac audio codec instead (-ac aac).\n");
|
||||
fprintf(stderr, " Falling back to fltp audio sample format instead.\n");
|
||||
}
|
||||
@@ -250,7 +251,7 @@ static AVCodecContext* create_audio_codec_context(int fps, gsr_audio_codec audio
|
||||
(void)fps;
|
||||
const AVCodec *codec = avcodec_find_encoder(audio_codec_get_id(audio_codec));
|
||||
if (!codec) {
|
||||
fprintf(stderr, "Error: Could not find %s audio encoder\n", audio_codec_get_name(audio_codec));
|
||||
fprintf(stderr, "gsr error: Could not find %s audio encoder\n", audio_codec_get_name(audio_codec));
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -261,8 +262,13 @@ static AVCodecContext* create_audio_codec_context(int fps, gsr_audio_codec audio
|
||||
codec_context->sample_fmt = audio_codec_get_sample_format(codec_context, audio_codec, codec, mix_audio);
|
||||
codec_context->bit_rate = audio_bitrate == 0 ? audio_codec_get_get_bitrate(audio_codec) : audio_bitrate;
|
||||
codec_context->sample_rate = AUDIO_SAMPLE_RATE;
|
||||
if(audio_codec == GSR_AUDIO_CODEC_AAC)
|
||||
if(audio_codec == GSR_AUDIO_CODEC_AAC) {
|
||||
#if LIBAVCODEC_VERSION_MAJOR < 62
|
||||
codec_context->profile = FF_PROFILE_AAC_LOW;
|
||||
#else
|
||||
codec_context->profile = AV_PROFILE_AAC_LOW;
|
||||
#endif
|
||||
}
|
||||
#if LIBAVCODEC_VERSION_MAJOR < 60
|
||||
codec_context->channel_layout = AV_CH_LAYOUT_STEREO;
|
||||
codec_context->channels = 2;
|
||||
@@ -649,7 +655,6 @@ static void video_software_set_qp(AVCodecContext *codec_context, gsr_video_quali
|
||||
}
|
||||
|
||||
static void open_video_software(AVCodecContext *codec_context, const args_parser &arg_parser) {
|
||||
const gsr_color_depth color_depth = video_codec_to_bit_depth(arg_parser.video_codec);
|
||||
const bool hdr = video_codec_is_hdr(arg_parser.video_codec);
|
||||
AVDictionary *options = nullptr;
|
||||
|
||||
@@ -668,7 +673,7 @@ static void open_video_software(AVCodecContext *codec_context, const args_parser
|
||||
|
||||
int ret = avcodec_open2(codec_context, codec_context->codec, &options);
|
||||
if (ret < 0) {
|
||||
fprintf(stderr, "Error: Could not open video codec: %s\n", av_error_to_string(ret));
|
||||
fprintf(stderr, "gsr error: Could not open video codec: %s\n", av_error_to_string(ret));
|
||||
_exit(1);
|
||||
}
|
||||
}
|
||||
@@ -916,7 +921,7 @@ static void open_video_hardware(AVCodecContext *codec_context, bool low_power, c
|
||||
|
||||
int ret = avcodec_open2(codec_context, codec_context->codec, &options);
|
||||
if (ret < 0) {
|
||||
fprintf(stderr, "Error: Could not open video codec: %s\n", av_error_to_string(ret));
|
||||
fprintf(stderr, "gsr error: Could not open video codec: %s\n", av_error_to_string(ret));
|
||||
_exit(1);
|
||||
}
|
||||
}
|
||||
@@ -1022,7 +1027,7 @@ static std::string get_time_only_str() {
|
||||
static AVStream* create_stream(AVFormatContext *av_format_context, AVCodecContext *codec_context) {
|
||||
AVStream *stream = avformat_new_stream(av_format_context, nullptr);
|
||||
if (!stream) {
|
||||
fprintf(stderr, "Error: Could not allocate stream\n");
|
||||
fprintf(stderr, "gsr error: Could not allocate stream\n");
|
||||
_exit(1);
|
||||
}
|
||||
stream->id = av_format_context->nb_streams - 1;
|
||||
@@ -1035,7 +1040,7 @@ static void run_recording_saved_script_async(const char *script_file, const char
|
||||
char script_file_full[PATH_MAX];
|
||||
script_file_full[0] = '\0';
|
||||
if(!realpath(script_file, script_file_full)) {
|
||||
fprintf(stderr, "Error: script file not found: %s\n", script_file);
|
||||
fprintf(stderr, "gsr error: script file not found: %s\n", script_file);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1240,11 +1245,11 @@ static std::string create_new_recording_filepath_from_timestamp(std::string dire
|
||||
if(date_folders) {
|
||||
std::string output_folder = directory + '/' + get_date_only_str();
|
||||
if(create_directory_recursive(&output_folder[0]) != 0)
|
||||
fprintf(stderr, "Error: failed to create directory: %s\n", output_folder.c_str());
|
||||
fprintf(stderr, "gsr error: failed to create directory: %s\n", output_folder.c_str());
|
||||
output_filepath = output_folder + "/" + filename_prefix + "_" + get_time_only_str() + "." + file_extension;
|
||||
} else {
|
||||
if(create_directory_recursive(&directory[0]) != 0)
|
||||
fprintf(stderr, "Error: failed to create directory: %s\n", directory.c_str());
|
||||
fprintf(stderr, "gsr error: failed to create directory: %s\n", directory.c_str());
|
||||
output_filepath = directory + "/" + filename_prefix + "_" + get_date_str() + "." + file_extension;
|
||||
}
|
||||
return output_filepath;
|
||||
@@ -1349,7 +1354,7 @@ static void save_replay_async(AVCodecContext *video_codec_context, int video_str
|
||||
|
||||
const int ret = av_write_frame(recording_start_result.av_format_context, &av_packet);
|
||||
if(ret < 0)
|
||||
fprintf(stderr, "Error: Failed to write frame index %d to muxer, reason: %s (%d)\n", av_packet.stream_index, av_error_to_string(ret), ret);
|
||||
fprintf(stderr, "gsr error: Failed to write frame index %d to muxer, reason: %s (%d)\n", av_packet.stream_index, av_error_to_string(ret), ret);
|
||||
|
||||
free(replay_packet_data);
|
||||
|
||||
@@ -1501,7 +1506,7 @@ static int init_filter_graph(AVCodecContext* audio_codec_context, AVFilterGraph*
|
||||
snprintf(args, sizeof(args), "inputs=%d:normalize=%s", (int)num_sources, normalize ? "true" : "false");
|
||||
#else
|
||||
snprintf(args, sizeof(args), "inputs=%d", (int)num_sources);
|
||||
fprintf(stderr, "Warning: your ffmpeg version doesn't support disabling normalizing of mixed audio. Volume might be lower than expected\n");
|
||||
fprintf(stderr, "gsr warning: your ffmpeg version doesn't support disabling normalizing of mixed audio. Volume might be lower than expected\n");
|
||||
#endif
|
||||
|
||||
err = avfilter_graph_create_filter(&mix_ctx, mix_filter, "amix", args, NULL, filter_graph);
|
||||
@@ -1843,16 +1848,15 @@ static void list_supported_capture_options(const gsr_window *window, const char
|
||||
if(!wayland)
|
||||
return;
|
||||
|
||||
gsr_dbus dbus;
|
||||
if(!gsr_dbus_init(&dbus, NULL))
|
||||
gsr_dbus_client dbus_client;
|
||||
if(!gsr_dbus_client_init(&dbus_client, NULL))
|
||||
return;
|
||||
|
||||
char *session_handle = NULL;
|
||||
if(gsr_dbus_screencast_create_session(&dbus, &session_handle) == 0) {
|
||||
free(session_handle);
|
||||
char session_handle[128];
|
||||
if(gsr_dbus_client_screencast_create_session(&dbus_client, session_handle, sizeof(session_handle)) == 0)
|
||||
puts("portal");
|
||||
}
|
||||
gsr_dbus_deinit(&dbus);
|
||||
|
||||
gsr_dbus_client_deinit(&dbus_client);
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -1869,7 +1873,7 @@ static void info_command(void *userdata) {
|
||||
Display *dpy = XOpenDisplay(nullptr);
|
||||
if (!dpy) {
|
||||
wayland = true;
|
||||
fprintf(stderr, "Warning: failed to connect to the X server. Assuming wayland is running without Xwayland\n");
|
||||
fprintf(stderr, "gsr warning: failed to connect to the X server. Assuming wayland is running without Xwayland\n");
|
||||
}
|
||||
|
||||
XSetErrorHandler(x11_error_handler);
|
||||
@@ -1882,13 +1886,13 @@ static void info_command(void *userdata) {
|
||||
// Disable prime-run and similar options as it doesn't work, the monitor to capture has to be run on the same device.
|
||||
// This is fine on wayland since nvidia uses drm interface there and the monitor query checks the monitors connected
|
||||
// to the drm device.
|
||||
fprintf(stderr, "Warning: use of prime-run on X11 is not supported. Disabling prime-run\n");
|
||||
fprintf(stderr, "gsr warning: use of prime-run on X11 is not supported. Disabling prime-run\n");
|
||||
disable_prime_run();
|
||||
}
|
||||
|
||||
gsr_window *window = gsr_window_create(dpy, wayland);
|
||||
if(!window) {
|
||||
fprintf(stderr, "Error: failed to create window\n");
|
||||
fprintf(stderr, "gsr error: failed to create window\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -1903,7 +1907,7 @@ static void info_command(void *userdata) {
|
||||
if(monitor_capture_use_drm(window, egl.gpu_info.vendor)) {
|
||||
// TODO: Allow specifying another card, and in other places
|
||||
if(!gsr_get_valid_card_path(&egl, egl.card_path, true)) {
|
||||
fprintf(stderr, "Error: no /dev/dri/cardX device found. Make sure that you have at least one monitor connected\n");
|
||||
fprintf(stderr, "gsr error: no /dev/dri/cardX device found. Make sure that you have at least one monitor connected\n");
|
||||
list_monitors = false;
|
||||
}
|
||||
}
|
||||
@@ -1984,7 +1988,7 @@ static void list_capture_options_command(const char *card_path, void *userdata)
|
||||
Display *dpy = XOpenDisplay(nullptr);
|
||||
if (!dpy) {
|
||||
wayland = true;
|
||||
fprintf(stderr, "Warning: failed to connect to the X server. Assuming wayland is running without Xwayland\n");
|
||||
fprintf(stderr, "gsr warning: failed to connect to the X server. Assuming wayland is running without Xwayland\n");
|
||||
}
|
||||
|
||||
XSetErrorHandler(x11_error_handler);
|
||||
@@ -1997,13 +2001,13 @@ static void list_capture_options_command(const char *card_path, void *userdata)
|
||||
// Disable prime-run and similar options as it doesn't work, the monitor to capture has to be run on the same device.
|
||||
// This is fine on wayland since nvidia uses drm interface there and the monitor query checks the monitors connected
|
||||
// to the drm device.
|
||||
fprintf(stderr, "Warning: use of prime-run on X11 is not supported. Disabling prime-run\n");
|
||||
fprintf(stderr, "gsr warning: use of prime-run on X11 is not supported. Disabling prime-run\n");
|
||||
disable_prime_run();
|
||||
}
|
||||
|
||||
gsr_window *window = gsr_window_create(dpy, wayland);
|
||||
if(!window) {
|
||||
fprintf(stderr, "Error: failed to create window\n");
|
||||
fprintf(stderr, "gsr error: failed to create window\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -2021,7 +2025,7 @@ static void list_capture_options_command(const char *card_path, void *userdata)
|
||||
if(monitor_capture_use_drm(window, egl.gpu_info.vendor)) {
|
||||
// TODO: Allow specifying another card, and in other places
|
||||
if(!gsr_get_valid_card_path(&egl, egl.card_path, true)) {
|
||||
fprintf(stderr, "Error: no /dev/dri/cardX device found. Make sure that you have at least one monitor connected\n");
|
||||
fprintf(stderr, "gsr error: no /dev/dri/cardX device found. Make sure that you have at least one monitor connected\n");
|
||||
list_monitors = false;
|
||||
}
|
||||
}
|
||||
@@ -2054,7 +2058,7 @@ static std::string validate_monitor_get_valid(const gsr_egl *egl, const char* wi
|
||||
window_result = data.output_name;
|
||||
free(data.output_name);
|
||||
} else {
|
||||
fprintf(stderr, "Error: no usable output found\n");
|
||||
fprintf(stderr, "gsr error: no usable output found\n");
|
||||
_exit(51);
|
||||
}
|
||||
} else if(capture_use_drm || (strcmp(window_result.c_str(), "screen-direct") != 0 && strcmp(window_result.c_str(), "screen-direct-force") != 0)) {
|
||||
@@ -2124,7 +2128,7 @@ static gsr_capture* create_monitor_capture(const args_parser &arg_parser, gsr_eg
|
||||
const bool direct_capture = strcmp(arg_parser.window, "screen-direct") == 0 || strcmp(arg_parser.window, "screen-direct-force") == 0;
|
||||
if(direct_capture) {
|
||||
capture_target = "screen";
|
||||
fprintf(stderr, "Warning: %s capture option is not recommended unless you use G-SYNC as Nvidia has driver issues that can cause your system or games to freeze/crash.\n", arg_parser.window);
|
||||
fprintf(stderr, "gsr warning: %s capture option is not recommended unless you use G-SYNC as Nvidia has driver issues that can cause your system or games to freeze/crash.\n", arg_parser.window);
|
||||
}
|
||||
|
||||
gsr_capture_nvfbc_params nvfbc_params;
|
||||
@@ -2147,7 +2151,7 @@ static std::string region_get_data(gsr_egl *egl, vec2i *region_size, vec2i *regi
|
||||
if(window.empty()) {
|
||||
const bool is_x11 = gsr_window_get_display_server(egl->window) == GSR_DISPLAY_SERVER_X11;
|
||||
const gsr_connection_type connection_type = is_x11 ? GSR_CONNECTION_X11 : GSR_CONNECTION_DRM;
|
||||
fprintf(stderr, "Error: the region %dx%d+%d+%d doesn't match any monitor. Available monitors and their regions:\n", region_size->x, region_size->y, region_position->x, region_position->y);
|
||||
fprintf(stderr, "gsr error: the region %dx%d+%d+%d doesn't match any monitor. Available monitors and their regions:\n", region_size->x, region_size->y, region_position->x, region_position->y);
|
||||
|
||||
MonitorOutputCallbackUserdata userdata;
|
||||
userdata.window = egl->window;
|
||||
@@ -2174,12 +2178,12 @@ static gsr_capture* create_capture_impl(args_parser &arg_parser, gsr_egl *egl, b
|
||||
gsr_capture *capture = nullptr;
|
||||
if(strcmp(arg_parser.window, "focused") == 0) {
|
||||
if(wayland) {
|
||||
fprintf(stderr, "Error: GPU Screen Recorder window capture only works in a pure X11 session. Xwayland is not supported. You can record a monitor instead on wayland\n");
|
||||
fprintf(stderr, "gsr error: GPU Screen Recorder window capture only works in a pure X11 session. Xwayland is not supported. You can record a monitor instead on wayland\n");
|
||||
_exit(2);
|
||||
}
|
||||
|
||||
if(arg_parser.output_resolution.x <= 0 || arg_parser.output_resolution.y <= 0) {
|
||||
fprintf(stderr, "Error: invalid value for option -s '%dx%d' when using -w focused option. expected width and height to be greater than 0\n", arg_parser.output_resolution.x, arg_parser.output_resolution.y);
|
||||
fprintf(stderr, "gsr error: invalid value for option -s '%dx%d' when using -w focused option. expected width and height to be greater than 0\n", arg_parser.output_resolution.x, arg_parser.output_resolution.y);
|
||||
args_parser_print_usage();
|
||||
_exit(1);
|
||||
}
|
||||
@@ -2189,7 +2193,7 @@ static gsr_capture* create_capture_impl(args_parser &arg_parser, gsr_egl *egl, b
|
||||
#ifdef GSR_PORTAL
|
||||
// Desktop portal capture on x11 doesn't seem to be hardware accelerated
|
||||
if(!wayland) {
|
||||
fprintf(stderr, "Error: desktop portal capture is not supported on X11\n");
|
||||
fprintf(stderr, "gsr error: desktop portal capture is not supported on X11\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -2203,7 +2207,7 @@ static gsr_capture* create_capture_impl(args_parser &arg_parser, gsr_egl *egl, b
|
||||
if(!capture)
|
||||
_exit(1);
|
||||
#else
|
||||
fprintf(stderr, "Error: option '-w portal' used but GPU Screen Recorder was compiled without desktop portal support. Please recompile GPU Screen recorder with the -Dportal=true option\n");
|
||||
fprintf(stderr, "gsr error: option '-w portal' used but GPU Screen Recorder was compiled without desktop portal support. Please recompile GPU Screen recorder with the -Dportal=true option\n");
|
||||
_exit(2);
|
||||
#endif
|
||||
} else if(strcmp(arg_parser.window, "region") == 0) {
|
||||
@@ -2220,14 +2224,14 @@ static gsr_capture* create_capture_impl(args_parser &arg_parser, gsr_egl *egl, b
|
||||
_exit(1);
|
||||
} else {
|
||||
if(wayland) {
|
||||
fprintf(stderr, "Error: GPU Screen Recorder window capture only works in a pure X11 session. Xwayland is not supported. You can record a monitor instead on wayland or use -w portal option which supports window capture if your wayland compositor supports window capture\n");
|
||||
fprintf(stderr, "gsr error: GPU Screen Recorder window capture only works in a pure X11 session. Xwayland is not supported. You can record a monitor instead on wayland or use -w portal option which supports window capture if your wayland compositor supports window capture\n");
|
||||
_exit(2);
|
||||
}
|
||||
|
||||
errno = 0;
|
||||
src_window_id = strtol(arg_parser.window, nullptr, 0);
|
||||
if(src_window_id == None || errno == EINVAL) {
|
||||
fprintf(stderr, "Error: invalid window number %s\n", arg_parser.window);
|
||||
fprintf(stderr, "gsr error: invalid window number %s\n", arg_parser.window);
|
||||
args_parser_print_usage();
|
||||
_exit(1);
|
||||
}
|
||||
@@ -2403,13 +2407,13 @@ static std::vector<MergedAudioInputs> parse_audio_inputs(const AudioDevices &aud
|
||||
|
||||
if(request_audio_input.name == "default_output") {
|
||||
if(audio_devices.default_output.empty()) {
|
||||
fprintf(stderr, "Error: -a default_output was specified but no default audio output is specified in the audio server\n");
|
||||
fprintf(stderr, "gsr error: -a default_output was specified but no default audio output is specified in the audio server\n");
|
||||
_exit(2);
|
||||
}
|
||||
match = true;
|
||||
} else if(request_audio_input.name == "default_input") {
|
||||
if(audio_devices.default_input.empty()) {
|
||||
fprintf(stderr, "Error: -a default_input was specified but no default audio input is specified in the audio server\n");
|
||||
fprintf(stderr, "gsr error: -a default_input was specified but no default audio input is specified in the audio server\n");
|
||||
_exit(2);
|
||||
}
|
||||
match = true;
|
||||
@@ -2420,7 +2424,7 @@ static std::vector<MergedAudioInputs> parse_audio_inputs(const AudioDevices &aud
|
||||
}
|
||||
|
||||
if(!match) {
|
||||
fprintf(stderr, "Error: Audio device '%s' is not a valid audio device, expected one of:\n", request_audio_input.name.c_str());
|
||||
fprintf(stderr, "gsr error: Audio device '%s' is not a valid audio device, expected one of:\n", request_audio_input.name.c_str());
|
||||
if(!audio_devices.default_output.empty())
|
||||
fprintf(stderr, " default_output (Default output)\n");
|
||||
if(!audio_devices.default_input.empty())
|
||||
@@ -2504,7 +2508,7 @@ static gsr_audio_codec select_audio_codec_with_fallback(gsr_audio_codec audio_co
|
||||
if(file_extension == "webm") {
|
||||
//audio_codec_to_use = "opus";
|
||||
audio_codec = GSR_AUDIO_CODEC_OPUS;
|
||||
fprintf(stderr, "Warning: .webm files only support opus audio codec, changing audio codec from aac to opus\n");
|
||||
fprintf(stderr, "gsr warning: .webm files only support opus audio codec, changing audio codec from aac to opus\n");
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -2513,7 +2517,7 @@ static gsr_audio_codec select_audio_codec_with_fallback(gsr_audio_codec audio_co
|
||||
if(file_extension != "mp4" && file_extension != "mkv" && file_extension != "webm") {
|
||||
//audio_codec_to_use = "aac";
|
||||
audio_codec = GSR_AUDIO_CODEC_AAC;
|
||||
fprintf(stderr, "Warning: opus audio codec is only supported by .mp4, .mkv and .webm files, falling back to aac instead\n");
|
||||
fprintf(stderr, "gsr warning: opus audio codec is only supported by .mp4, .mkv and .webm files, falling back to aac instead\n");
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -2522,16 +2526,16 @@ static gsr_audio_codec select_audio_codec_with_fallback(gsr_audio_codec audio_co
|
||||
if(file_extension == "webm") {
|
||||
//audio_codec_to_use = "opus";
|
||||
audio_codec = GSR_AUDIO_CODEC_OPUS;
|
||||
fprintf(stderr, "Warning: .webm files only support opus audio codec, changing audio codec from flac to opus\n");
|
||||
fprintf(stderr, "gsr warning: .webm files only support opus audio codec, changing audio codec from flac to opus\n");
|
||||
} else if(file_extension != "mp4" && file_extension != "mkv") {
|
||||
//audio_codec_to_use = "aac";
|
||||
audio_codec = GSR_AUDIO_CODEC_AAC;
|
||||
fprintf(stderr, "Warning: flac audio codec is only supported by .mp4 and .mkv files, falling back to aac instead\n");
|
||||
fprintf(stderr, "gsr warning: flac audio codec is only supported by .mp4 and .mkv files, falling back to aac instead\n");
|
||||
} else if(uses_amix) {
|
||||
// TODO: remove this? is it true anymore?
|
||||
//audio_codec_to_use = "opus";
|
||||
audio_codec = GSR_AUDIO_CODEC_OPUS;
|
||||
fprintf(stderr, "Warning: flac audio codec is not supported when mixing audio sources, falling back to opus instead\n");
|
||||
fprintf(stderr, "gsr warning: flac audio codec is not supported when mixing audio sources, falling back to opus instead\n");
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -2562,7 +2566,7 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
|
||||
gsr_supported_video_codecs supported_video_codecs;
|
||||
if(!get_supported_video_codecs(egl, *video_codec, use_software_video_encoder, true, &supported_video_codecs)) {
|
||||
fprintf(stderr, "Error: failed to query for supported video codecs\n");
|
||||
fprintf(stderr, "gsr error: failed to query for supported video codecs\n");
|
||||
_exit(11);
|
||||
}
|
||||
|
||||
@@ -2632,7 +2636,7 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
if(!video_codec_auto && !video_codec_f && !is_flv) {
|
||||
switch(*video_codec) {
|
||||
case GSR_VIDEO_CODEC_H264: {
|
||||
fprintf(stderr, "Warning: selected video codec h264 is not supported, trying hevc instead\n");
|
||||
fprintf(stderr, "gsr warning: selected video codec h264 is not supported, trying hevc instead\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_HEVC;
|
||||
if(supported_video_codecs.hevc.supported)
|
||||
video_codec_f = get_ffmpeg_video_codec(*video_codec, egl->gpu_info.vendor);
|
||||
@@ -2641,7 +2645,7 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
case GSR_VIDEO_CODEC_HEVC:
|
||||
case GSR_VIDEO_CODEC_HEVC_HDR:
|
||||
case GSR_VIDEO_CODEC_HEVC_10BIT: {
|
||||
fprintf(stderr, "Warning: selected video codec hevc is not supported, trying h264 instead\n");
|
||||
fprintf(stderr, "gsr warning: selected video codec hevc is not supported, trying h264 instead\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_H264;
|
||||
if(supported_video_codecs.h264.supported)
|
||||
video_codec_f = get_ffmpeg_video_codec(*video_codec, egl->gpu_info.vendor);
|
||||
@@ -2650,7 +2654,7 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
case GSR_VIDEO_CODEC_AV1:
|
||||
case GSR_VIDEO_CODEC_AV1_HDR:
|
||||
case GSR_VIDEO_CODEC_AV1_10BIT: {
|
||||
fprintf(stderr, "Warning: selected video codec av1 is not supported, trying h264 instead\n");
|
||||
fprintf(stderr, "gsr warning: selected video codec av1 is not supported, trying h264 instead\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_H264;
|
||||
if(supported_video_codecs.h264.supported)
|
||||
video_codec_f = get_ffmpeg_video_codec(*video_codec, egl->gpu_info.vendor);
|
||||
@@ -2661,11 +2665,11 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
// TODO: Cant fallback to other codec because webm only supports vp8/vp9
|
||||
break;
|
||||
case GSR_VIDEO_CODEC_H264_VULKAN: {
|
||||
fprintf(stderr, "Warning: selected video codec h264_vulkan is not supported, trying h264 instead\n");
|
||||
fprintf(stderr, "gsr warning: selected video codec h264_vulkan is not supported, trying h264 instead\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_H264;
|
||||
// Need to do a query again because this time it's without vulkan
|
||||
if(!get_supported_video_codecs(egl, *video_codec, use_software_video_encoder, true, &supported_video_codecs)) {
|
||||
fprintf(stderr, "Error: failed to query for supported video codecs\n");
|
||||
fprintf(stderr, "gsr error: failed to query for supported video codecs\n");
|
||||
_exit(11);
|
||||
}
|
||||
if(supported_video_codecs.h264.supported)
|
||||
@@ -2673,11 +2677,11 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
break;
|
||||
}
|
||||
case GSR_VIDEO_CODEC_HEVC_VULKAN: {
|
||||
fprintf(stderr, "Warning: selected video codec hevc_vulkan is not supported, trying hevc instead\n");
|
||||
fprintf(stderr, "gsr warning: selected video codec hevc_vulkan is not supported, trying hevc instead\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_HEVC;
|
||||
// Need to do a query again because this time it's without vulkan
|
||||
if(!get_supported_video_codecs(egl, *video_codec, use_software_video_encoder, true, &supported_video_codecs)) {
|
||||
fprintf(stderr, "Error: failed to query for supported video codecs\n");
|
||||
fprintf(stderr, "gsr error: failed to query for supported video codecs\n");
|
||||
_exit(11);
|
||||
}
|
||||
if(supported_video_codecs.hevc.supported)
|
||||
@@ -2689,7 +2693,7 @@ static const AVCodec* pick_video_codec(gsr_video_codec *video_codec, gsr_egl *eg
|
||||
|
||||
if(!video_codec_f) {
|
||||
const char *video_codec_name = video_codec_to_string(*video_codec);
|
||||
fprintf(stderr, "Error: your gpu does not support '%s' video codec. If you are sure that your gpu does support '%s' video encoding and you are using an AMD/Intel GPU,\n"
|
||||
fprintf(stderr, "gsr error: your gpu does not support '%s' video codec. If you are sure that your gpu does support '%s' video encoding and you are using an AMD/Intel GPU,\n"
|
||||
" then make sure you have installed the GPU specific vaapi packages (intel-media-driver, libva-intel-driver, libva-mesa-driver and linux-firmware).\n"
|
||||
" It's also possible that your distro has disabled hardware accelerated video encoding for '%s' video codec.\n"
|
||||
" This may be the case on corporate distros such as Manjaro, Fedora or OpenSUSE.\n"
|
||||
@@ -2711,10 +2715,10 @@ static const AVCodec* select_video_codec_with_fallback(gsr_video_codec *video_co
|
||||
const bool video_codec_auto = *video_codec == (gsr_video_codec)GSR_VIDEO_CODEC_AUTO;
|
||||
if(video_codec_auto) {
|
||||
if(strcmp(file_extension, "webm") == 0) {
|
||||
fprintf(stderr, "Info: using vp8 encoder because a codec was not specified and the file extension is .webm\n");
|
||||
fprintf(stderr, "gsr info: using vp8 encoder because a codec was not specified and the file extension is .webm\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_VP8;
|
||||
} else {
|
||||
fprintf(stderr, "Info: using h264 encoder because a codec was not specified\n");
|
||||
fprintf(stderr, "gsr info: using h264 encoder because a codec was not specified\n");
|
||||
*video_codec = GSR_VIDEO_CODEC_H264;
|
||||
}
|
||||
}
|
||||
@@ -2724,13 +2728,13 @@ static const AVCodec* select_video_codec_with_fallback(gsr_video_codec *video_co
|
||||
if(is_flv) {
|
||||
if(*video_codec != GSR_VIDEO_CODEC_H264) {
|
||||
*video_codec = GSR_VIDEO_CODEC_H264;
|
||||
fprintf(stderr, "Warning: hevc/av1 is not compatible with flv, falling back to h264 instead.\n");
|
||||
fprintf(stderr, "gsr warning: hevc/av1 is not compatible with flv, falling back to h264 instead.\n");
|
||||
}
|
||||
|
||||
// if(audio_codec != GSR_AUDIO_CODEC_AAC) {
|
||||
// audio_codec_to_use = "aac";
|
||||
// audio_codec = GSR_AUDIO_CODEC_AAC;
|
||||
// fprintf(stderr, "Warning: flv only supports aac, falling back to aac instead.\n");
|
||||
// fprintf(stderr, "gsr warning: flv only supports aac, falling back to aac instead.\n");
|
||||
// }
|
||||
}
|
||||
|
||||
@@ -2738,18 +2742,18 @@ static const AVCodec* select_video_codec_with_fallback(gsr_video_codec *video_co
|
||||
if(is_hls) {
|
||||
if(video_codec_is_av1(*video_codec)) {
|
||||
*video_codec = GSR_VIDEO_CODEC_HEVC;
|
||||
fprintf(stderr, "Warning: av1 is not compatible with hls (m3u8), falling back to hevc instead.\n");
|
||||
fprintf(stderr, "gsr warning: av1 is not compatible with hls (m3u8), falling back to hevc instead.\n");
|
||||
}
|
||||
|
||||
// if(audio_codec != GSR_AUDIO_CODEC_AAC) {
|
||||
// audio_codec_to_use = "aac";
|
||||
// audio_codec = GSR_AUDIO_CODEC_AAC;
|
||||
// fprintf(stderr, "Warning: hls (m3u8) only supports aac, falling back to aac instead.\n");
|
||||
// fprintf(stderr, "gsr warning: hls (m3u8) only supports aac, falling back to aac instead.\n");
|
||||
// }
|
||||
}
|
||||
|
||||
if(use_software_video_encoder && *video_codec != GSR_VIDEO_CODEC_H264) {
|
||||
fprintf(stderr, "Error: \"-encoder cpu\" option is currently only available when using h264 codec option (-k)\n");
|
||||
fprintf(stderr, "gsr error: \"-encoder cpu\" option is currently only available when using h264 codec option (-k)\n");
|
||||
args_parser_print_usage();
|
||||
_exit(1);
|
||||
}
|
||||
@@ -2775,7 +2779,7 @@ static std::vector<AudioDeviceData> create_device_audio_inputs(const std::vector
|
||||
} else {
|
||||
const std::string description = "gsr-" + audio_input.name;
|
||||
if(sound_device_get_by_name(&audio_device.sound_device, audio_input.name.c_str(), description.c_str(), num_channels, audio_codec_context->frame_size, audio_codec_context_get_audio_format(audio_codec_context)) != 0) {
|
||||
fprintf(stderr, "Error: failed to get \"%s\" audio device\n", audio_input.name.c_str());
|
||||
fprintf(stderr, "gsr error: failed to get \"%s\" audio device\n", audio_input.name.c_str());
|
||||
_exit(1);
|
||||
}
|
||||
}
|
||||
@@ -2810,7 +2814,7 @@ static AudioDeviceData create_application_audio_audio_input(const MergedAudioInp
|
||||
combined_sink_name += ".monitor";
|
||||
|
||||
if(sound_device_get_by_name(&audio_device.sound_device, combined_sink_name.c_str(), "gpu-screen-recorder", num_channels, audio_codec_context->frame_size, audio_codec_context_get_audio_format(audio_codec_context)) != 0) {
|
||||
fprintf(stderr, "Error: failed to setup audio recording to combined sink\n");
|
||||
fprintf(stderr, "gsr error: failed to setup audio recording to combined sink\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -2868,7 +2872,7 @@ static bool get_image_format_from_filename(const char *filename, gsr_image_forma
|
||||
static bool av_open_file_write_header(AVFormatContext *av_format_context, const char *filename) {
|
||||
int ret = avio_open(&av_format_context->pb, filename, AVIO_FLAG_WRITE);
|
||||
if(ret < 0) {
|
||||
fprintf(stderr, "Error: Could not open '%s': %s\n", filename, av_error_to_string(ret));
|
||||
fprintf(stderr, "gsr error: Could not open '%s': %s\n", filename, av_error_to_string(ret));
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -2966,7 +2970,7 @@ int main(int argc, char **argv) {
|
||||
unsetenv("vblank_mode");
|
||||
|
||||
if(geteuid() == 0) {
|
||||
fprintf(stderr, "Error: don't run gpu-screen-recorder as the root user\n");
|
||||
fprintf(stderr, "gsr error: don't run gpu-screen-recorder as the root user\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -3025,7 +3029,7 @@ int main(int argc, char **argv) {
|
||||
Display *dpy = XOpenDisplay(nullptr);
|
||||
if (!dpy) {
|
||||
wayland = true;
|
||||
fprintf(stderr, "Warning: failed to connect to the X server. Assuming wayland is running without Xwayland\n");
|
||||
fprintf(stderr, "gsr warning: failed to connect to the X server. Assuming wayland is running without Xwayland\n");
|
||||
}
|
||||
|
||||
XSetErrorHandler(x11_error_handler);
|
||||
@@ -3038,18 +3042,18 @@ int main(int argc, char **argv) {
|
||||
// Disable prime-run and similar options as it doesn't work, the monitor to capture has to be run on the same device.
|
||||
// This is fine on wayland since nvidia uses drm interface there and the monitor query checks the monitors connected
|
||||
// to the drm device.
|
||||
fprintf(stderr, "Warning: use of prime-run on X11 is not supported. Disabling prime-run\n");
|
||||
fprintf(stderr, "gsr warning: use of prime-run on X11 is not supported. Disabling prime-run\n");
|
||||
disable_prime_run();
|
||||
}
|
||||
|
||||
gsr_window *window = gsr_window_create(dpy, wayland);
|
||||
if(!window) {
|
||||
fprintf(stderr, "Error: failed to create window\n");
|
||||
fprintf(stderr, "gsr error: failed to create window\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
if(is_portal_capture && is_using_prime_run()) {
|
||||
fprintf(stderr, "Warning: use of prime-run with -w portal option is currently not supported. Disabling prime-run\n");
|
||||
fprintf(stderr, "gsr warning: use of prime-run with -w portal option is currently not supported. Disabling prime-run\n");
|
||||
disable_prime_run();
|
||||
}
|
||||
|
||||
@@ -3072,7 +3076,7 @@ int main(int argc, char **argv) {
|
||||
if(monitor_capture_use_drm(window, egl.gpu_info.vendor)) {
|
||||
// TODO: Allow specifying another card, and in other places
|
||||
if(!gsr_get_valid_card_path(&egl, egl.card_path, is_monitor_capture)) {
|
||||
fprintf(stderr, "Error: no /dev/dri/cardX device found. Make sure that you have at least one monitor connected or record a single window instead on X11 or record with the -w portal option\n");
|
||||
fprintf(stderr, "gsr error: no /dev/dri/cardX device found. Make sure that you have at least one monitor connected or record a single window instead on X11 or record with the -w portal option\n");
|
||||
_exit(2);
|
||||
}
|
||||
}
|
||||
@@ -3085,7 +3089,7 @@ int main(int argc, char **argv) {
|
||||
gsr_image_format image_format;
|
||||
if(get_image_format_from_filename(arg_parser.filename, &image_format)) {
|
||||
if(audio_input_arg->num_values > 0) {
|
||||
fprintf(stderr, "Error: can't record audio (-a) when taking a screenshot\n");
|
||||
fprintf(stderr, "gsr error: can't record audio (-a) when taking a screenshot\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -3098,9 +3102,9 @@ int main(int argc, char **argv) {
|
||||
avformat_alloc_output_context2(&av_format_context, nullptr, arg_parser.container_format, arg_parser.filename);
|
||||
if (!av_format_context) {
|
||||
if(arg_parser.container_format) {
|
||||
fprintf(stderr, "Error: Container format '%s' (argument -c) is not valid\n", arg_parser.container_format);
|
||||
fprintf(stderr, "gsr error: Container format '%s' (argument -c) is not valid\n", arg_parser.container_format);
|
||||
} else {
|
||||
fprintf(stderr, "Error: Failed to deduce container format from file extension. Use the '-c' option to specify container format\n");
|
||||
fprintf(stderr, "gsr error: Failed to deduce container format from file extension. Use the '-c' option to specify container format\n");
|
||||
args_parser_print_usage();
|
||||
_exit(1);
|
||||
}
|
||||
@@ -3129,7 +3133,7 @@ int main(int argc, char **argv) {
|
||||
// (Some?) livestreaming services require at least one audio track to work.
|
||||
// If not audio is provided then create one silent audio track.
|
||||
if(arg_parser.is_livestream && requested_audio_inputs.empty()) {
|
||||
fprintf(stderr, "Info: live streaming but no audio track was added. Adding a silent audio track\n");
|
||||
fprintf(stderr, "gsr info: live streaming but no audio track was added. Adding a silent audio track\n");
|
||||
MergedAudioInputs mai;
|
||||
mai.audio_inputs.push_back({""});
|
||||
requested_audio_inputs.push_back(std::move(mai));
|
||||
@@ -3148,7 +3152,7 @@ int main(int argc, char **argv) {
|
||||
|
||||
AVFrame *video_frame = av_frame_alloc();
|
||||
if(!video_frame) {
|
||||
fprintf(stderr, "Error: Failed to allocate video frame\n");
|
||||
fprintf(stderr, "gsr error: Failed to allocate video frame\n");
|
||||
_exit(1);
|
||||
}
|
||||
video_frame->format = video_codec_context->pix_fmt;
|
||||
@@ -3181,18 +3185,18 @@ int main(int argc, char **argv) {
|
||||
const size_t estimated_replay_buffer_packets = calculate_estimated_replay_buffer_packets(arg_parser.replay_buffer_size_secs, arg_parser.fps, arg_parser.audio_codec, requested_audio_inputs);
|
||||
gsr_encoder encoder;
|
||||
if(!gsr_encoder_init(&encoder, arg_parser.replay_storage, estimated_replay_buffer_packets, arg_parser.replay_buffer_size_secs, arg_parser.filename)) {
|
||||
fprintf(stderr, "Error: failed to create encoder\n");
|
||||
fprintf(stderr, "gsr error: failed to create encoder\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
gsr_video_encoder *video_encoder = create_video_encoder(&egl, arg_parser);
|
||||
if(!video_encoder) {
|
||||
fprintf(stderr, "Error: failed to create video encoder\n");
|
||||
fprintf(stderr, "gsr error: failed to create video encoder\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
if(!gsr_video_encoder_start(video_encoder, video_codec_context, video_frame)) {
|
||||
fprintf(stderr, "Error: failed to start video encoder\n");
|
||||
fprintf(stderr, "gsr error: failed to start video encoder\n");
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
@@ -3259,7 +3263,7 @@ int main(int argc, char **argv) {
|
||||
if(use_amix) {
|
||||
int err = init_filter_graph(audio_codec_context, &graph, &sink, src_filter_ctx, merged_audio_inputs.audio_inputs.size());
|
||||
if(err < 0) {
|
||||
fprintf(stderr, "Error: failed to create audio filter\n");
|
||||
fprintf(stderr, "gsr error: failed to create audio filter\n");
|
||||
_exit(1);
|
||||
}
|
||||
}
|
||||
@@ -3320,12 +3324,11 @@ int main(int argc, char **argv) {
|
||||
std::mutex audio_filter_mutex;
|
||||
|
||||
const double record_start_time = clock_get_monotonic_seconds();
|
||||
std::atomic<double> replay_start_time(record_start_time);
|
||||
|
||||
const size_t audio_buffer_size = audio_max_frame_size * 4 * 2; // max 4 bytes/sample, 2 channels
|
||||
uint8_t *empty_audio = (uint8_t*)malloc(audio_buffer_size);
|
||||
if(!empty_audio) {
|
||||
fprintf(stderr, "Error: failed to create empty audio\n");
|
||||
fprintf(stderr, "gsr error: failed to create empty audio\n");
|
||||
_exit(1);
|
||||
}
|
||||
memset(empty_audio, 0, audio_buffer_size);
|
||||
@@ -3431,7 +3434,7 @@ int main(int argc, char **argv) {
|
||||
if(audio_track.graph) {
|
||||
// TODO: av_buffersrc_add_frame
|
||||
if(av_buffersrc_write_frame(audio_device.src_filter_ctx, audio_device.frame) < 0) {
|
||||
fprintf(stderr, "Error: failed to add audio frame to filter\n");
|
||||
fprintf(stderr, "gsr error: failed to add audio frame to filter\n");
|
||||
}
|
||||
} else {
|
||||
ret = avcodec_send_frame(audio_track.codec_context, audio_device.frame);
|
||||
@@ -3465,7 +3468,7 @@ int main(int argc, char **argv) {
|
||||
if(audio_track.graph) {
|
||||
// TODO: av_buffersrc_add_frame
|
||||
if(av_buffersrc_write_frame(audio_device.src_filter_ctx, audio_device.frame) < 0) {
|
||||
fprintf(stderr, "Error: failed to add audio frame to filter\n");
|
||||
fprintf(stderr, "gsr error: failed to add audio frame to filter\n");
|
||||
}
|
||||
} else {
|
||||
ret = avcodec_send_frame(audio_track.codec_context, audio_device.frame);
|
||||
@@ -3658,7 +3661,7 @@ int main(int argc, char **argv) {
|
||||
// TODO: Move to separate thread because this could write to network (for example when livestreaming)
|
||||
gsr_encoder_receive_packets(&encoder, video_codec_context, video_frame->pts, VIDEO_STREAM_INDEX);
|
||||
} else {
|
||||
fprintf(stderr, "Error: avcodec_send_frame failed, error: %s\n", av_error_to_string(ret));
|
||||
fprintf(stderr, "gsr error: avcodec_send_frame failed, error: %s\n", av_error_to_string(ret));
|
||||
}
|
||||
|
||||
if(force_iframe_frame) {
|
||||
@@ -3686,7 +3689,7 @@ int main(int argc, char **argv) {
|
||||
|
||||
if(toggle_replay_recording && !arg_parser.replay_recording_directory) {
|
||||
toggle_replay_recording = 0;
|
||||
printf("Error: Unable to start recording since the -ro option was not specified\n");
|
||||
printf("gsr error: Unable to start recording since the -ro option was not specified\n");
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
@@ -3713,7 +3716,7 @@ int main(int argc, char **argv) {
|
||||
force_iframe_frame = true;
|
||||
fprintf(stderr, "Started recording\n");
|
||||
} else {
|
||||
printf("Error: Failed to start recording\n");
|
||||
printf("gsr error: Failed to start recording\n");
|
||||
fflush(stdout);
|
||||
}
|
||||
} else if(replay_recording_start_result.av_format_context) {
|
||||
@@ -3729,7 +3732,7 @@ int main(int argc, char **argv) {
|
||||
if(arg_parser.recording_saved_script)
|
||||
run_recording_saved_script_async(arg_parser.recording_saved_script, replay_recording_filepath.c_str(), "regular");
|
||||
} else {
|
||||
printf("Error: Failed to save recording\n");
|
||||
printf("gsr error: Failed to save recording\n");
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
@@ -3742,7 +3745,7 @@ int main(int argc, char **argv) {
|
||||
if(save_replay_thread.valid() && save_replay_thread.wait_for(std::chrono::seconds(0)) == std::future_status::ready) {
|
||||
save_replay_thread.get();
|
||||
if(save_replay_output_filepath.empty()) {
|
||||
printf("Error: Failed to save replay\n");
|
||||
printf("gsr error: Failed to save replay\n");
|
||||
fflush(stdout);
|
||||
} else {
|
||||
puts(save_replay_output_filepath.c_str());
|
||||
@@ -3761,10 +3764,8 @@ int main(int argc, char **argv) {
|
||||
save_replay_output_filepath.clear();
|
||||
save_replay_async(video_codec_context, VIDEO_STREAM_INDEX, audio_tracks, encoder.replay_buffer, arg_parser.filename, arg_parser.container_format, file_extension, arg_parser.date_folders, hdr, capture, current_save_replay_seconds);
|
||||
|
||||
if(arg_parser.restart_replay_on_save && current_save_replay_seconds == save_replay_seconds_full) {
|
||||
if(arg_parser.restart_replay_on_save && current_save_replay_seconds == save_replay_seconds_full)
|
||||
gsr_replay_buffer_clear(encoder.replay_buffer);
|
||||
replay_start_time = clock_get_monotonic_seconds() - paused_time_offset;
|
||||
}
|
||||
}
|
||||
|
||||
const double frame_end = clock_get_monotonic_seconds();
|
||||
@@ -3820,7 +3821,7 @@ int main(int argc, char **argv) {
|
||||
if(arg_parser.recording_saved_script)
|
||||
run_recording_saved_script_async(arg_parser.recording_saved_script, replay_recording_filepath.c_str(), "regular");
|
||||
} else {
|
||||
printf("Error: Failed to save recording\n");
|
||||
printf("gsr error: Failed to save recording\n");
|
||||
fflush(stdout);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
#include <pipewire/extensions/metadata.h>
|
||||
#include <pipewire/impl-module.h>
|
||||
|
||||
typedef struct {
|
||||
const gsr_pipewire_audio_port *output_port;
|
||||
const gsr_pipewire_audio_port *input_port;
|
||||
} gsr_pipewire_audio_desired_link;
|
||||
|
||||
static void on_core_info_cb(void *user_data, const struct pw_core_info *info) {
|
||||
gsr_pipewire_audio *self = user_data;
|
||||
//fprintf(stderr, "server name: %s\n", info->name);
|
||||
@@ -29,7 +34,7 @@ static const struct pw_core_events core_events = {
|
||||
};
|
||||
|
||||
static gsr_pipewire_audio_node* gsr_pipewire_audio_get_node_by_name_case_insensitive(gsr_pipewire_audio *self, const char *node_name, gsr_pipewire_audio_node_type node_type) {
|
||||
for(int i = 0; i < self->num_stream_nodes; ++i) {
|
||||
for(size_t i = 0; i < self->num_stream_nodes; ++i) {
|
||||
const gsr_pipewire_audio_node *node = &self->stream_nodes[i];
|
||||
if(node->type == node_type && strcasecmp(node->name, node_name) == 0)
|
||||
return &self->stream_nodes[i];
|
||||
@@ -38,7 +43,7 @@ static gsr_pipewire_audio_node* gsr_pipewire_audio_get_node_by_name_case_insensi
|
||||
}
|
||||
|
||||
static gsr_pipewire_audio_port* gsr_pipewire_audio_get_node_port_by_name(gsr_pipewire_audio *self, uint32_t node_id, const char *port_name) {
|
||||
for(int i = 0; i < self->num_ports; ++i) {
|
||||
for(size_t i = 0; i < self->num_ports; ++i) {
|
||||
if(self->ports[i].node_id == node_id && strcmp(self->ports[i].name, port_name) == 0)
|
||||
return &self->ports[i];
|
||||
}
|
||||
@@ -81,69 +86,68 @@ static void gsr_pipewire_get_node_input_port_by_type(gsr_pipewire_audio *self, c
|
||||
}
|
||||
}
|
||||
|
||||
static void gsr_pipewire_get_node_output_port_by_type(gsr_pipewire_audio *self, const gsr_pipewire_audio_node *output_node, gsr_pipewire_audio_node_type output_type,
|
||||
const gsr_pipewire_audio_port **output_fl_port, const gsr_pipewire_audio_port **output_fr_port)
|
||||
{
|
||||
*output_fl_port = NULL;
|
||||
*output_fr_port = NULL;
|
||||
|
||||
switch(output_type) {
|
||||
case GSR_PIPEWIRE_AUDIO_NODE_TYPE_STREAM_OUTPUT:
|
||||
*output_fl_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "output_FL");
|
||||
*output_fr_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "output_FR");
|
||||
break;
|
||||
case GSR_PIPEWIRE_AUDIO_NODE_TYPE_STREAM_INPUT:
|
||||
*output_fl_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "monitor_FL");
|
||||
*output_fr_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "monitor_FR");
|
||||
break;
|
||||
case GSR_PIPEWIRE_AUDIO_NODE_TYPE_SINK_OR_SOURCE: {
|
||||
*output_fl_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "monitor_FL");
|
||||
*output_fr_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "monitor_FR");
|
||||
if(!*output_fl_port || !*output_fr_port) {
|
||||
*output_fl_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "capture_FL");
|
||||
*output_fr_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "capture_FR");
|
||||
}
|
||||
if(!*output_fl_port || !*output_fr_port) {
|
||||
const gsr_pipewire_audio_port *output_mono_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "monitor_MONO");
|
||||
if(!output_mono_port)
|
||||
output_mono_port = gsr_pipewire_audio_get_node_port_by_name(self, output_node->id, "capture_MONO");
|
||||
|
||||
if(output_mono_port) {
|
||||
*output_fl_port = output_mono_port;
|
||||
*output_fr_port = output_mono_port;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
static bool string_starts_with(const char *str, const char *substr) {
|
||||
const int len = strlen(str);
|
||||
const int substr_len = strlen(substr);
|
||||
return len >= substr_len && memcmp(str, substr, substr_len) == 0;
|
||||
}
|
||||
|
||||
static void gsr_pipewire_audio_establish_link(gsr_pipewire_audio *self, const gsr_pipewire_audio_port *input_fl_port, const gsr_pipewire_audio_port *input_fr_port,
|
||||
const gsr_pipewire_audio_port *output_fl_port, const gsr_pipewire_audio_port *output_fr_port)
|
||||
static bool string_ends_with(const char *str, const char *substr) {
|
||||
const int len = strlen(str);
|
||||
const int substr_len = strlen(substr);
|
||||
return len >= substr_len && memcmp(str + len - substr_len, substr, substr_len) == 0;
|
||||
}
|
||||
|
||||
/* Returns number of desired links */
|
||||
static size_t gsr_pipewire_get_node_output_ports(gsr_pipewire_audio *self, const gsr_pipewire_audio_node *output_node,
|
||||
gsr_pipewire_audio_desired_link *desired_links, size_t desired_links_max_size,
|
||||
const gsr_pipewire_audio_port *input_fl_port, const gsr_pipewire_audio_port *input_fr_port)
|
||||
{
|
||||
// TODO: Detect if link already exists before so we dont create these proxies when not needed
|
||||
size_t num_desired_links = 0;
|
||||
for(size_t i = 0; i < self->num_ports && num_desired_links < desired_links_max_size; ++i) {
|
||||
if(self->ports[i].node_id != output_node->id)
|
||||
continue;
|
||||
|
||||
if(string_starts_with(self->ports[i].name, "playback_"))
|
||||
continue;
|
||||
|
||||
if(string_ends_with(self->ports[i].name, "_MONO") || string_ends_with(self->ports[i].name, "_FC") || string_ends_with(self->ports[i].name, "_LFE")) {
|
||||
if(num_desired_links + 2 >= desired_links_max_size)
|
||||
break;
|
||||
|
||||
desired_links[num_desired_links + 0] = (gsr_pipewire_audio_desired_link){ .output_port = &self->ports[i], .input_port = input_fl_port };
|
||||
desired_links[num_desired_links + 1] = (gsr_pipewire_audio_desired_link){ .output_port = &self->ports[i], .input_port = input_fr_port };
|
||||
num_desired_links += 2;
|
||||
} else if(string_ends_with(self->ports[i].name, "_FL") || string_ends_with(self->ports[i].name, "_RL") || string_ends_with(self->ports[i].name, "_SL")) {
|
||||
if(num_desired_links + 1 >= desired_links_max_size)
|
||||
break;
|
||||
|
||||
desired_links[num_desired_links] = (gsr_pipewire_audio_desired_link){ .output_port = &self->ports[i], .input_port = input_fl_port };
|
||||
num_desired_links += 1;
|
||||
} else if(string_ends_with(self->ports[i].name, "_FR") || string_ends_with(self->ports[i].name, "_RR") || string_ends_with(self->ports[i].name, "_SR")) {
|
||||
if(num_desired_links + 1 >= desired_links_max_size)
|
||||
break;
|
||||
|
||||
desired_links[num_desired_links] = (gsr_pipewire_audio_desired_link){ .output_port = &self->ports[i], .input_port = input_fr_port };
|
||||
num_desired_links += 1;
|
||||
}
|
||||
}
|
||||
return num_desired_links;
|
||||
}
|
||||
|
||||
static void gsr_pipewire_audio_establish_link(gsr_pipewire_audio *self, const gsr_pipewire_audio_port *output_port, const gsr_pipewire_audio_port *input_port) {
|
||||
// TODO: Detect if link already exists before so we dont create these proxies when not needed.
|
||||
// We could do that by saving which nodes have been linked with which nodes after linking them.
|
||||
|
||||
//fprintf(stderr, "linking!\n");
|
||||
// TODO: error check and cleanup
|
||||
{
|
||||
struct pw_properties *props = pw_properties_new(NULL, NULL);
|
||||
pw_properties_setf(props, PW_KEY_LINK_OUTPUT_PORT, "%u", output_fl_port->id);
|
||||
pw_properties_setf(props, PW_KEY_LINK_INPUT_PORT, "%u", input_fl_port->id);
|
||||
// TODO: Clean this up when removing node
|
||||
struct pw_proxy *proxy = pw_core_create_object(self->core, "link-factory", PW_TYPE_INTERFACE_Link, PW_VERSION_LINK, &props->dict, 0);
|
||||
//self->server_version_sync = pw_core_sync(self->core, PW_ID_CORE, self->server_version_sync);
|
||||
pw_properties_free(props);
|
||||
}
|
||||
|
||||
{
|
||||
struct pw_properties *props = pw_properties_new(NULL, NULL);
|
||||
pw_properties_setf(props, PW_KEY_LINK_OUTPUT_PORT, "%u", output_fr_port->id);
|
||||
pw_properties_setf(props, PW_KEY_LINK_INPUT_PORT, "%u", input_fr_port->id);
|
||||
// TODO: Clean this up when removing node
|
||||
struct pw_proxy *proxy = pw_core_create_object(self->core, "link-factory", PW_TYPE_INTERFACE_Link, PW_VERSION_LINK, &props->dict, 0);
|
||||
//self->server_version_sync = pw_core_sync(self->core, PW_ID_CORE, self->server_version_sync);
|
||||
pw_properties_free(props);
|
||||
}
|
||||
struct pw_properties *props = pw_properties_new(NULL, NULL);
|
||||
pw_properties_setf(props, PW_KEY_LINK_OUTPUT_PORT, "%u", output_port->id);
|
||||
pw_properties_setf(props, PW_KEY_LINK_INPUT_PORT, "%u", input_port->id);
|
||||
// TODO: Clean this up when removing node
|
||||
struct pw_proxy *proxy = pw_core_create_object(self->core, "link-factory", PW_TYPE_INTERFACE_Link, PW_VERSION_LINK, &props->dict, 0);
|
||||
//self->server_version_sync = pw_core_sync(self->core, PW_ID_CORE, self->server_version_sync);
|
||||
pw_properties_free(props);
|
||||
}
|
||||
|
||||
static void gsr_pipewire_audio_create_link(gsr_pipewire_audio *self, const gsr_pipewire_audio_requested_link *requested_link) {
|
||||
@@ -158,7 +162,8 @@ static void gsr_pipewire_audio_create_link(gsr_pipewire_audio *self, const gsr_p
|
||||
if(!input_fl_port || !input_fr_port)
|
||||
return;
|
||||
|
||||
for(int i = 0; i < self->num_stream_nodes; ++i) {
|
||||
gsr_pipewire_audio_desired_link desired_links[64];
|
||||
for(size_t i = 0; i < self->num_stream_nodes; ++i) {
|
||||
const gsr_pipewire_audio_node *output_node = &self->stream_nodes[i];
|
||||
if(output_node->type != requested_link->output_type)
|
||||
continue;
|
||||
@@ -172,18 +177,15 @@ static void gsr_pipewire_audio_create_link(gsr_pipewire_audio *self, const gsr_p
|
||||
continue;
|
||||
}
|
||||
|
||||
const gsr_pipewire_audio_port *output_fl_port = NULL;
|
||||
const gsr_pipewire_audio_port *output_fr_port = NULL;
|
||||
gsr_pipewire_get_node_output_port_by_type(self, output_node, requested_link->output_type, &output_fl_port, &output_fr_port);
|
||||
if(!output_fl_port || !output_fr_port)
|
||||
continue;
|
||||
|
||||
gsr_pipewire_audio_establish_link(self, input_fl_port, input_fr_port, output_fl_port, output_fr_port);
|
||||
const size_t num_desired_links = gsr_pipewire_get_node_output_ports(self, output_node, desired_links, 64, input_fl_port, input_fr_port);
|
||||
for(size_t j = 0; j < num_desired_links; ++j) {
|
||||
gsr_pipewire_audio_establish_link(self, desired_links[j].output_port, desired_links[j].input_port);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void gsr_pipewire_audio_create_links(gsr_pipewire_audio *self) {
|
||||
for(int i = 0; i < self->num_requested_links; ++i) {
|
||||
for(size_t i = 0; i < self->num_requested_links; ++i) {
|
||||
gsr_pipewire_audio_create_link(self, &self->requested_links[i]);
|
||||
}
|
||||
}
|
||||
@@ -214,24 +216,21 @@ static void gsr_pipewire_audio_create_link_for_default_devices(gsr_pipewire_audi
|
||||
if(!stream_output_node)
|
||||
return;
|
||||
|
||||
const gsr_pipewire_audio_port *output_fl_port = NULL;
|
||||
const gsr_pipewire_audio_port *output_fr_port = NULL;
|
||||
gsr_pipewire_get_node_output_port_by_type(self, stream_output_node, requested_link->output_type, &output_fl_port, &output_fr_port);
|
||||
if(!output_fl_port || !output_fr_port)
|
||||
return;
|
||||
|
||||
gsr_pipewire_audio_establish_link(self, input_fl_port, input_fr_port, output_fl_port, output_fr_port);
|
||||
//fprintf(stderr, "establishing a link from %u to %u\n", stream_output_node->id, stream_input_node->id);
|
||||
gsr_pipewire_audio_desired_link desired_links[64];
|
||||
const size_t num_desired_links = gsr_pipewire_get_node_output_ports(self, stream_output_node, desired_links, 64, input_fl_port, input_fr_port);
|
||||
for(size_t i = 0; i < num_desired_links; ++i) {
|
||||
gsr_pipewire_audio_establish_link(self, desired_links[i].output_port, desired_links[i].input_port);
|
||||
}
|
||||
}
|
||||
|
||||
static void gsr_pipewire_audio_create_links_for_default_devices(gsr_pipewire_audio *self, gsr_pipewire_audio_requested_type default_device_type) {
|
||||
for(int i = 0; i < self->num_requested_links; ++i) {
|
||||
for(size_t i = 0; i < self->num_requested_links; ++i) {
|
||||
gsr_pipewire_audio_create_link_for_default_devices(self, &self->requested_links[i], default_device_type);
|
||||
}
|
||||
}
|
||||
|
||||
static void gsr_pipewire_audio_destroy_links_by_output_to_input(gsr_pipewire_audio *self, uint32_t output_node_id, uint32_t input_node_id) {
|
||||
for(int i = 0; i < self->num_links; ++i) {
|
||||
for(size_t i = 0; i < self->num_links; ++i) {
|
||||
if(self->links[i].output_node_id == output_node_id && self->links[i].input_node_id == input_node_id)
|
||||
pw_registry_destroy(self->registry, self->links[i].id);
|
||||
}
|
||||
@@ -271,7 +270,7 @@ static void gsr_pipewire_destroy_default_device_link(gsr_pipewire_audio *self, c
|
||||
}
|
||||
|
||||
static void gsr_pipewire_destroy_default_device_links(gsr_pipewire_audio *self, gsr_pipewire_audio_requested_type default_device_type) {
|
||||
for(int i = 0; i < self->num_requested_links; ++i) {
|
||||
for(size_t i = 0; i < self->num_requested_links; ++i) {
|
||||
gsr_pipewire_destroy_default_device_link(self, &self->requested_links[i], default_device_type);
|
||||
}
|
||||
}
|
||||
@@ -370,6 +369,24 @@ static bool gsr_pipewire_audio_listen_on_metadata(gsr_pipewire_audio *self, uint
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool array_ensure_capacity(void **array, size_t size, size_t *capacity_items, size_t element_size) {
|
||||
if(size + 1 >= *capacity_items) {
|
||||
size_t new_capacity_items = *capacity_items * 2;
|
||||
if(new_capacity_items == 0)
|
||||
new_capacity_items = 32;
|
||||
|
||||
void *new_data = realloc(*array, new_capacity_items * element_size);
|
||||
if(!new_data) {
|
||||
fprintf(stderr, "gsr error: pipewire_audio: failed to reallocate memory\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
*array = new_data;
|
||||
*capacity_items = new_capacity_items;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
const char *type, uint32_t version,
|
||||
const struct spa_dict *props)
|
||||
@@ -389,11 +406,14 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
const bool is_stream_input = media_class && strcmp(media_class, "Stream/Input/Audio") == 0;
|
||||
const bool is_sink = media_class && strcmp(media_class, "Audio/Sink") == 0;
|
||||
const bool is_source = media_class && strcmp(media_class, "Audio/Source") == 0;
|
||||
if(self->num_stream_nodes < GSR_PIPEWIRE_AUDIO_MAX_STREAM_NODES && node_name && (is_stream_output || is_stream_input || is_sink || is_source)) {
|
||||
if(node_name && (is_stream_output || is_stream_input || is_sink || is_source)) {
|
||||
//const char *application_binary = spa_dict_lookup(props, PW_KEY_APP_PROCESS_BINARY);
|
||||
//const char *application_name = spa_dict_lookup(props, PW_KEY_APP_NAME);
|
||||
//fprintf(stderr, " node name: %s, app binary: %s, app name: %s\n", node_name, application_binary, application_name);
|
||||
|
||||
if(!array_ensure_capacity((void**)&self->stream_nodes, self->num_stream_nodes, &self->stream_nodes_capacity_items, sizeof(gsr_pipewire_audio_node)))
|
||||
return;
|
||||
|
||||
char *node_name_copy = strdup(node_name);
|
||||
if(node_name_copy) {
|
||||
self->stream_nodes[self->num_stream_nodes].id = id;
|
||||
@@ -408,8 +428,6 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
|
||||
gsr_pipewire_audio_create_links(self);
|
||||
}
|
||||
} else if(self->num_stream_nodes >= GSR_PIPEWIRE_AUDIO_MAX_STREAM_NODES) {
|
||||
fprintf(stderr, "gsr error: reached the maximum amount of audio stream nodes\n");
|
||||
}
|
||||
} else if(strcmp(type, PW_TYPE_INTERFACE_Port) == 0) {
|
||||
const char *port_name = spa_dict_lookup(props, PW_KEY_PORT_NAME);
|
||||
@@ -424,7 +442,10 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
const char *node_id = spa_dict_lookup(props, PW_KEY_NODE_ID);
|
||||
const int node_id_num = node_id ? atoi(node_id) : 0;
|
||||
|
||||
if(self->num_ports < GSR_PIPEWIRE_AUDIO_MAX_PORTS && port_name && direction >= 0 && node_id_num > 0) {
|
||||
if(port_name && direction >= 0 && node_id_num > 0) {
|
||||
if(!array_ensure_capacity((void**)&self->ports, self->num_ports, &self->ports_capacity_items, sizeof(gsr_pipewire_audio_port)))
|
||||
return;
|
||||
|
||||
//fprintf(stderr, " port name: %s, node id: %d, direction: %s\n", port_name, node_id_num, port_direction);
|
||||
char *port_name_copy = strdup(port_name);
|
||||
if(port_name_copy) {
|
||||
@@ -437,8 +458,6 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
|
||||
gsr_pipewire_audio_create_links(self);
|
||||
}
|
||||
} else if(self->num_ports >= GSR_PIPEWIRE_AUDIO_MAX_PORTS) {
|
||||
fprintf(stderr, "gsr error: reached the maximum amount of audio ports\n");
|
||||
}
|
||||
} else if(strcmp(type, PW_TYPE_INTERFACE_Link) == 0) {
|
||||
const char *output_node = spa_dict_lookup(props, PW_KEY_LINK_OUTPUT_NODE);
|
||||
@@ -446,14 +465,15 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
|
||||
const uint32_t output_node_id_num = output_node ? atoi(output_node) : 0;
|
||||
const uint32_t input_node_id_num = input_node ? atoi(input_node) : 0;
|
||||
if(self->num_links < GSR_PIPEWIRE_AUDIO_MAX_LINKS && output_node_id_num > 0 && input_node_id_num > 0) {
|
||||
if(output_node_id_num > 0 && input_node_id_num > 0) {
|
||||
if(!array_ensure_capacity((void**)&self->links, self->num_links, &self->links_capacity_items, sizeof(gsr_pipewire_audio_link)))
|
||||
return;
|
||||
|
||||
//fprintf(stderr, " new link (%u): %u -> %u\n", id, output_node_id_num, input_node_id_num);
|
||||
self->links[self->num_links].id = id;
|
||||
self->links[self->num_links].output_node_id = output_node_id_num;
|
||||
self->links[self->num_links].input_node_id = input_node_id_num;
|
||||
++self->num_links;
|
||||
} else if(self->num_ports >= GSR_PIPEWIRE_AUDIO_MAX_LINKS) {
|
||||
fprintf(stderr, "gsr error: reached the maximum amount of audio links\n");
|
||||
}
|
||||
} else if(strcmp(type, PW_TYPE_INTERFACE_Metadata) == 0) {
|
||||
const char *name = spa_dict_lookup(props, PW_KEY_METADATA_NAME);
|
||||
@@ -463,7 +483,7 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
||||
}
|
||||
|
||||
static bool gsr_pipewire_audio_remove_node_by_id(gsr_pipewire_audio *self, uint32_t node_id) {
|
||||
for(int i = 0; i < self->num_stream_nodes; ++i) {
|
||||
for(size_t i = 0; i < self->num_stream_nodes; ++i) {
|
||||
if(self->stream_nodes[i].id != node_id)
|
||||
continue;
|
||||
|
||||
@@ -476,7 +496,7 @@ static bool gsr_pipewire_audio_remove_node_by_id(gsr_pipewire_audio *self, uint3
|
||||
}
|
||||
|
||||
static bool gsr_pipewire_audio_remove_port_by_id(gsr_pipewire_audio *self, uint32_t port_id) {
|
||||
for(int i = 0; i < self->num_ports; ++i) {
|
||||
for(size_t i = 0; i < self->num_ports; ++i) {
|
||||
if(self->ports[i].id != port_id)
|
||||
continue;
|
||||
|
||||
@@ -489,7 +509,7 @@ static bool gsr_pipewire_audio_remove_port_by_id(gsr_pipewire_audio *self, uint3
|
||||
}
|
||||
|
||||
static bool gsr_pipewire_audio_remove_link_by_id(gsr_pipewire_audio *self, uint32_t link_id) {
|
||||
for(int i = 0; i < self->num_links; ++i) {
|
||||
for(size_t i = 0; i < self->num_links; ++i) {
|
||||
if(self->links[i].id != link_id)
|
||||
continue;
|
||||
|
||||
@@ -580,13 +600,19 @@ void gsr_pipewire_audio_deinit(gsr_pipewire_audio *self) {
|
||||
pw_thread_loop_stop(self->thread_loop);
|
||||
}
|
||||
|
||||
for(int i = 0; i < self->num_virtual_sink_proxies; ++i) {
|
||||
for(size_t i = 0; i < self->num_virtual_sink_proxies; ++i) {
|
||||
if(self->virtual_sink_proxies[i]) {
|
||||
pw_proxy_destroy(self->virtual_sink_proxies[i]);
|
||||
self->virtual_sink_proxies[i] = NULL;
|
||||
}
|
||||
}
|
||||
self->num_virtual_sink_proxies = 0;
|
||||
self->virtual_sink_proxies_capacity_items = 0;
|
||||
|
||||
if(self->virtual_sink_proxies) {
|
||||
free(self->virtual_sink_proxies);
|
||||
self->virtual_sink_proxies = NULL;
|
||||
}
|
||||
|
||||
if(self->metadata_proxy) {
|
||||
spa_hook_remove(&self->metadata_listener);
|
||||
@@ -615,26 +641,50 @@ void gsr_pipewire_audio_deinit(gsr_pipewire_audio *self) {
|
||||
self->thread_loop = NULL;
|
||||
}
|
||||
|
||||
for(int i = 0; i < self->num_stream_nodes; ++i) {
|
||||
free(self->stream_nodes[i].name);
|
||||
}
|
||||
self->num_stream_nodes = 0;
|
||||
|
||||
for(int i = 0; i < self->num_ports; ++i) {
|
||||
free(self->ports[i].name);
|
||||
}
|
||||
self->num_ports = 0;
|
||||
|
||||
self->num_links = 0;
|
||||
|
||||
for(int i = 0; i < self->num_requested_links; ++i) {
|
||||
for(int j = 0; j < self->requested_links[i].num_outputs; ++j) {
|
||||
free(self->requested_links[i].outputs[j].name);
|
||||
if(self->stream_nodes) {
|
||||
for(size_t i = 0; i < self->num_stream_nodes; ++i) {
|
||||
free(self->stream_nodes[i].name);
|
||||
}
|
||||
free(self->requested_links[i].outputs);
|
||||
free(self->requested_links[i].input_name);
|
||||
self->num_stream_nodes = 0;
|
||||
self->stream_nodes_capacity_items = 0;
|
||||
|
||||
free(self->stream_nodes);
|
||||
self->stream_nodes = NULL;
|
||||
}
|
||||
|
||||
if(self->ports) {
|
||||
for(size_t i = 0; i < self->num_ports; ++i) {
|
||||
free(self->ports[i].name);
|
||||
}
|
||||
self->num_ports = 0;
|
||||
self->ports_capacity_items = 0;
|
||||
|
||||
free(self->ports);
|
||||
self->ports = NULL;
|
||||
}
|
||||
|
||||
if(self->links) {
|
||||
self->num_links = 0;
|
||||
self->links_capacity_items = 0;
|
||||
|
||||
free(self->links);
|
||||
self->links = NULL;
|
||||
}
|
||||
|
||||
if(self->requested_links) {
|
||||
for(size_t i = 0; i < self->num_requested_links; ++i) {
|
||||
for(int j = 0; j < self->requested_links[i].num_outputs; ++j) {
|
||||
free(self->requested_links[i].outputs[j].name);
|
||||
}
|
||||
free(self->requested_links[i].outputs);
|
||||
free(self->requested_links[i].input_name);
|
||||
}
|
||||
self->num_requested_links = 0;
|
||||
self->requested_links_capacity_items = 0;
|
||||
|
||||
free(self->requested_links);
|
||||
self->requested_links = NULL;
|
||||
}
|
||||
self->num_requested_links = 0;
|
||||
|
||||
#if PW_CHECK_VERSION(0, 3, 49)
|
||||
pw_deinit();
|
||||
@@ -653,10 +703,8 @@ static struct pw_properties* gsr_pipewire_create_null_audio_sink(const char *nam
|
||||
}
|
||||
|
||||
bool gsr_pipewire_audio_create_virtual_sink(gsr_pipewire_audio *self, const char *name) {
|
||||
if(self->num_virtual_sink_proxies == GSR_PIPEWIRE_AUDIO_MAX_VIRTUAL_SINKS) {
|
||||
fprintf(stderr, "gsr error: gsr_pipewire_audio_create_virtual_sink: reached max number of virtual sinks\n");
|
||||
if(!array_ensure_capacity((void**)&self->virtual_sink_proxies, self->num_virtual_sink_proxies, &self->virtual_sink_proxies_capacity_items, sizeof(struct pw_proxy*)))
|
||||
return false;
|
||||
}
|
||||
|
||||
pw_thread_loop_lock(self->thread_loop);
|
||||
|
||||
@@ -701,10 +749,8 @@ static bool string_remove_suffix(char *str, const char *suffix) {
|
||||
}
|
||||
|
||||
static bool gsr_pipewire_audio_add_links_to_output(gsr_pipewire_audio *self, const char **output_names, int num_output_names, const char *input_name, gsr_pipewire_audio_node_type output_type, gsr_pipewire_audio_link_input_type input_type, bool inverted) {
|
||||
if(self->num_requested_links >= GSR_PIPEWIRE_AUDIO_MAX_REQUESTED_LINKS) {
|
||||
fprintf(stderr, "gsr error: reached the maximum amount of audio links\n");
|
||||
if(!array_ensure_capacity((void**)&self->requested_links, self->num_requested_links, &self->requested_links_capacity_items, sizeof(gsr_pipewire_audio_requested_link)))
|
||||
return false;
|
||||
}
|
||||
|
||||
gsr_pipewire_audio_requested_output *outputs = calloc(num_output_names, sizeof(gsr_pipewire_audio_requested_output));
|
||||
if(!outputs)
|
||||
@@ -781,7 +827,7 @@ bool gsr_pipewire_audio_add_link_from_sources_to_sink(gsr_pipewire_audio *self,
|
||||
|
||||
void gsr_pipewire_audio_for_each_app(gsr_pipewire_audio *self, gsr_pipewire_audio_app_query_callback callback, void *userdata) {
|
||||
pw_thread_loop_lock(self->thread_loop);
|
||||
for(int i = 0; i < self->num_stream_nodes; ++i) {
|
||||
for(int i = 0; i < (int)self->num_stream_nodes; ++i) {
|
||||
const gsr_pipewire_audio_node *node = &self->stream_nodes[i];
|
||||
if(node->type != GSR_PIPEWIRE_AUDIO_NODE_TYPE_STREAM_OUTPUT)
|
||||
continue;
|
||||
|
||||
@@ -36,7 +36,7 @@ static gsr_replay_buffer_file* gsr_replay_buffer_file_create(char *replay_direct
|
||||
}
|
||||
|
||||
char filename[PATH_MAX];
|
||||
snprintf(filename, sizeof(filename), "%s/%s_%d.mp4", replay_directory, FILE_PREFIX, (int)replay_storage_counter);
|
||||
snprintf(filename, sizeof(filename), "%s/%s_%d.gsr", replay_directory, FILE_PREFIX, (int)replay_storage_counter);
|
||||
*replay_storage_fd = creat(filename, 0700);
|
||||
if(*replay_storage_fd <= 0) {
|
||||
fprintf(stderr, "gsr error: gsr_av_packet_file_init: failed to create replay file: %s\n", filename);
|
||||
@@ -71,7 +71,7 @@ static void gsr_replay_buffer_file_free(gsr_replay_buffer_file *self, const char
|
||||
}
|
||||
|
||||
char filename[PATH_MAX];
|
||||
snprintf(filename, sizeof(filename), "%s/%s_%d.mp4", replay_directory, FILE_PREFIX, (int)self->id);
|
||||
snprintf(filename, sizeof(filename), "%s/%s_%d.gsr", replay_directory, FILE_PREFIX, (int)self->id);
|
||||
remove(filename);
|
||||
|
||||
if(self->packets) {
|
||||
@@ -234,7 +234,7 @@ static uint8_t* gsr_replay_buffer_disk_iterator_get_packet_data(gsr_replay_buffe
|
||||
|
||||
if(file->fd <= 0) {
|
||||
char filename[PATH_MAX];
|
||||
snprintf(filename, sizeof(filename), "%s/%s_%d.mp4", self->replay_directory, FILE_PREFIX, (int)file->id);
|
||||
snprintf(filename, sizeof(filename), "%s/%s_%d.gsr", self->replay_directory, FILE_PREFIX, (int)file->id);
|
||||
file->fd = open(filename, O_RDONLY);
|
||||
if(file->fd <= 0) {
|
||||
fprintf(stderr, "gsr error: gsr_replay_buffer_disk_iterator_get_packet_data: failed to open file\n");
|
||||
@@ -360,17 +360,20 @@ static gsr_replay_buffer_iterator gsr_replay_buffer_disk_find_keyframe(gsr_repla
|
||||
gsr_replay_buffer_disk *self = (gsr_replay_buffer_disk*)replay_buffer;
|
||||
gsr_replay_buffer_iterator keyframe_iterator = {(size_t)-1, 0};
|
||||
gsr_replay_buffer_lock(&self->replay_buffer);
|
||||
size_t packet_index = start_iterator.packet_index;
|
||||
for(size_t file_index = start_iterator.file_index; file_index < self->num_files; ++file_index) {
|
||||
const gsr_replay_buffer_file *file = self->files[file_index];
|
||||
for(size_t packet_index = start_iterator.packet_index; packet_index < file->num_packets; ++packet_index) {
|
||||
for(; packet_index < file->num_packets; ++packet_index) {
|
||||
const gsr_av_packet_disk *packet = &file->packets[packet_index];
|
||||
if((packet->packet.flags & AV_PKT_FLAG_KEY) && (invert_stream_index ? packet->packet.stream_index != stream_index : packet->packet.stream_index == stream_index)) {
|
||||
keyframe_iterator.packet_index = packet_index;
|
||||
keyframe_iterator.file_index = file_index;
|
||||
break;
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
packet_index = 0;
|
||||
}
|
||||
done:
|
||||
gsr_replay_buffer_unlock(&self->replay_buffer);
|
||||
return keyframe_iterator;
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ static bool startup_get_default_devices(pa_handle *p, const char *device_name) {
|
||||
}
|
||||
|
||||
if(p->default_output_device_name[0] == '\0') {
|
||||
fprintf(stderr, "Error: failed to find default audio output device\n");
|
||||
fprintf(stderr, "gsr error: failed to find default audio output device\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -197,7 +197,7 @@ static pa_handle* pa_sound_device_new(const char *server,
|
||||
const int buffer_size = attr->fragsize;
|
||||
void *buffer = malloc(buffer_size);
|
||||
if(!buffer) {
|
||||
fprintf(stderr, "Error: failed to allocate buffer for audio\n");
|
||||
fprintf(stderr, "gsr error: failed to allocate buffer for audio\n");
|
||||
*rerror = -1;
|
||||
return NULL;
|
||||
}
|
||||
@@ -426,7 +426,7 @@ int sound_device_get_by_name(SoundDevice *device, const char *device_name, const
|
||||
int error = 0;
|
||||
pa_handle *handle = pa_sound_device_new(nullptr, description, device_name, description, &ss, &buffer_attr, &error);
|
||||
if(!handle) {
|
||||
fprintf(stderr, "Error: pa_sound_device_new() failed: %s. Audio input device %s might not be valid\n", pa_strerror(error), device_name);
|
||||
fprintf(stderr, "gsr error: pa_sound_device_new() failed: %s. Audio input device %s might not be valid\n", pa_strerror(error), device_name);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
194
src/utils.c
194
src/utils.c
@@ -19,6 +19,8 @@
|
||||
#include <libavcodec/avcodec.h>
|
||||
#include <libavutil/hwcontext_vaapi.h>
|
||||
|
||||
#define DRM_NUM_BUF_ATTRS 4
|
||||
|
||||
double clock_get_monotonic_seconds(void) {
|
||||
struct timespec ts;
|
||||
ts.tv_sec = 0;
|
||||
@@ -108,7 +110,7 @@ void for_each_active_monitor_output_x11_not_cached(Display *display, active_moni
|
||||
// but gpu screen recorder captures the drm framebuffer instead of x11 api. This drm framebuffer which doesn't increase in size when using xrandr scaling.
|
||||
// Maybe a better option would be to get the drm crtc size instead.
|
||||
const XRRModeInfo *mode_info = get_mode_info(screen_res, crt_info->mode);
|
||||
if(mode_info && out_info->nameLen < (int)sizeof(display_name)) {
|
||||
if(mode_info) {
|
||||
snprintf(display_name, sizeof(display_name), "%.*s", (int)out_info->nameLen, out_info->name);
|
||||
const gsr_monitor_rotation rotation = x11_rotation_to_gsr_rotation(crt_info->rotation);
|
||||
const vec2i monitor_size = get_monitor_size_rotated(mode_info->width, mode_info->height, rotation);
|
||||
@@ -150,21 +152,22 @@ int get_connector_type_by_name(const char *name) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
drm_connector_type_count* drm_connector_types_get_index(drm_connector_type_count *type_counts, int *num_type_counts, int connector_type) {
|
||||
for(int i = 0; i < *num_type_counts; ++i) {
|
||||
if(type_counts[i].type == connector_type)
|
||||
return &type_counts[i];
|
||||
int get_connector_type_id_by_name(const char *name) {
|
||||
int len = strlen(name);
|
||||
int num_start = 0;
|
||||
for(int i = len - 1; i >= 0; --i) {
|
||||
const bool is_num = name[i] >= '0' && name[i] <= '9';
|
||||
if(!is_num) {
|
||||
num_start = i + 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(*num_type_counts == CONNECTOR_TYPE_COUNTS)
|
||||
return NULL;
|
||||
const int num_len = len - num_start;
|
||||
if(num_len <= 0)
|
||||
return -1;
|
||||
|
||||
const int index = *num_type_counts;
|
||||
type_counts[index].type = connector_type;
|
||||
type_counts[index].count = 0;
|
||||
type_counts[index].count_active = 0;
|
||||
++*num_type_counts;
|
||||
return &type_counts[index];
|
||||
return atoi(name + num_start);
|
||||
}
|
||||
|
||||
uint32_t monitor_identifier_from_type_and_count(int monitor_type_index, int monitor_type_count) {
|
||||
@@ -195,9 +198,6 @@ static void for_each_active_monitor_output_drm(const char *card_path, active_mon
|
||||
|
||||
drmSetClientCap(fd, DRM_CLIENT_CAP_ATOMIC, 1);
|
||||
|
||||
drm_connector_type_count type_counts[CONNECTOR_TYPE_COUNTS];
|
||||
int num_type_counts = 0;
|
||||
|
||||
char display_name[256];
|
||||
drmModeResPtr resources = drmModeGetResources(fd);
|
||||
if(resources) {
|
||||
@@ -206,35 +206,29 @@ static void for_each_active_monitor_output_drm(const char *card_path, active_mon
|
||||
if(!connector)
|
||||
continue;
|
||||
|
||||
drm_connector_type_count *connector_type = drm_connector_types_get_index(type_counts, &num_type_counts, connector->connector_type);
|
||||
const char *connection_name = drmModeGetConnectorTypeName(connector->connector_type);
|
||||
const int connection_name_len = strlen(connection_name);
|
||||
if(connector_type)
|
||||
++connector_type->count;
|
||||
|
||||
if(connector->connection != DRM_MODE_CONNECTED) {
|
||||
drmModeFreeConnector(connector);
|
||||
continue;
|
||||
}
|
||||
|
||||
if(connector_type)
|
||||
++connector_type->count_active;
|
||||
|
||||
uint64_t crtc_id = 0;
|
||||
connector_get_property_by_name(fd, connector, "CRTC_ID", &crtc_id);
|
||||
|
||||
drmModeCrtcPtr crtc = drmModeGetCrtc(fd, crtc_id);
|
||||
if(connector_type && crtc_id > 0 && crtc && connection_name_len + 5 < (int)sizeof(display_name)) {
|
||||
const int display_name_len = snprintf(display_name, sizeof(display_name), "%s-%d", connection_name, connector_type->count);
|
||||
const char *connection_name = drmModeGetConnectorTypeName(connector->connector_type);
|
||||
|
||||
if(connection_name && crtc_id > 0 && crtc) {
|
||||
const int connector_type_index_name = get_connector_type_by_name(display_name);
|
||||
gsr_monitor monitor = {
|
||||
const int display_name_len = snprintf(display_name, sizeof(display_name), "%s-%u", connection_name, connector->connector_type_id);
|
||||
|
||||
const gsr_monitor monitor = {
|
||||
.name = display_name,
|
||||
.name_len = display_name_len,
|
||||
.pos = { .x = crtc->x, .y = crtc->y },
|
||||
.size = { .x = (int)crtc->width, .y = (int)crtc->height },
|
||||
.connector_id = connector->connector_id,
|
||||
.rotation = GSR_MONITOR_ROT_0,
|
||||
.monitor_identifier = connector_type_index_name != -1 ? monitor_identifier_from_type_and_count(connector_type_index_name, connector_type->count_active) : 0
|
||||
.monitor_identifier = connector_type_index_name != -1 ? monitor_identifier_from_type_and_count(connector_type_index_name, connector->connector_type_id) : 0
|
||||
};
|
||||
callback(&monitor, userdata);
|
||||
}
|
||||
@@ -516,6 +510,41 @@ int create_directory_recursive(char *path) {
|
||||
}
|
||||
|
||||
void setup_dma_buf_attrs(intptr_t *img_attr, uint32_t format, uint32_t width, uint32_t height, const int *fds, const uint32_t *offsets, const uint32_t *pitches, const uint64_t *modifiers, int num_planes, bool use_modifier) {
|
||||
const uint32_t plane_fd_attrs[DRM_NUM_BUF_ATTRS] = {
|
||||
EGL_DMA_BUF_PLANE0_FD_EXT,
|
||||
EGL_DMA_BUF_PLANE1_FD_EXT,
|
||||
EGL_DMA_BUF_PLANE2_FD_EXT,
|
||||
EGL_DMA_BUF_PLANE3_FD_EXT
|
||||
};
|
||||
|
||||
const uint32_t plane_offset_attrs[DRM_NUM_BUF_ATTRS] = {
|
||||
EGL_DMA_BUF_PLANE0_OFFSET_EXT,
|
||||
EGL_DMA_BUF_PLANE1_OFFSET_EXT,
|
||||
EGL_DMA_BUF_PLANE2_OFFSET_EXT,
|
||||
EGL_DMA_BUF_PLANE3_OFFSET_EXT
|
||||
};
|
||||
|
||||
const uint32_t plane_pitch_attrs[DRM_NUM_BUF_ATTRS] = {
|
||||
EGL_DMA_BUF_PLANE0_PITCH_EXT,
|
||||
EGL_DMA_BUF_PLANE1_PITCH_EXT,
|
||||
EGL_DMA_BUF_PLANE2_PITCH_EXT,
|
||||
EGL_DMA_BUF_PLANE3_PITCH_EXT
|
||||
};
|
||||
|
||||
const uint32_t plane_modifier_lo_attrs[DRM_NUM_BUF_ATTRS] = {
|
||||
EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT,
|
||||
EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT,
|
||||
EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT,
|
||||
EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT
|
||||
};
|
||||
|
||||
const uint32_t plane_modifier_hi_attrs[DRM_NUM_BUF_ATTRS] = {
|
||||
EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT,
|
||||
EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT,
|
||||
EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT,
|
||||
EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT
|
||||
};
|
||||
|
||||
size_t img_attr_index = 0;
|
||||
|
||||
img_attr[img_attr_index++] = EGL_LINUX_DRM_FOURCC_EXT;
|
||||
@@ -527,79 +556,23 @@ void setup_dma_buf_attrs(intptr_t *img_attr, uint32_t format, uint32_t width, ui
|
||||
img_attr[img_attr_index++] = EGL_HEIGHT;
|
||||
img_attr[img_attr_index++] = height;
|
||||
|
||||
if(num_planes >= 1) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE0_FD_EXT;
|
||||
img_attr[img_attr_index++] = fds[0];
|
||||
assert(num_planes <= DRM_NUM_BUF_ATTRS);
|
||||
for(int i = 0; i < num_planes; ++i) {
|
||||
img_attr[img_attr_index++] = plane_fd_attrs[i];
|
||||
img_attr[img_attr_index++] = fds[i];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE0_OFFSET_EXT;
|
||||
img_attr[img_attr_index++] = offsets[0];
|
||||
img_attr[img_attr_index++] = plane_offset_attrs[i];
|
||||
img_attr[img_attr_index++] = offsets[i];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE0_PITCH_EXT;
|
||||
img_attr[img_attr_index++] = pitches[0];
|
||||
img_attr[img_attr_index++] = plane_pitch_attrs[i];
|
||||
img_attr[img_attr_index++] = pitches[i];
|
||||
|
||||
if(use_modifier) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[0] & 0xFFFFFFFFULL;
|
||||
img_attr[img_attr_index++] = plane_modifier_lo_attrs[i];
|
||||
img_attr[img_attr_index++] = modifiers[i] & 0xFFFFFFFFULL;
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[0] >> 32ULL;
|
||||
}
|
||||
}
|
||||
|
||||
if(num_planes >= 2) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE1_FD_EXT;
|
||||
img_attr[img_attr_index++] = fds[1];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE1_OFFSET_EXT;
|
||||
img_attr[img_attr_index++] = offsets[1];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE1_PITCH_EXT;
|
||||
img_attr[img_attr_index++] = pitches[1];
|
||||
|
||||
if(use_modifier) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[1] & 0xFFFFFFFFULL;
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[1] >> 32ULL;
|
||||
}
|
||||
}
|
||||
|
||||
if(num_planes >= 3) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE2_FD_EXT;
|
||||
img_attr[img_attr_index++] = fds[2];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE2_OFFSET_EXT;
|
||||
img_attr[img_attr_index++] = offsets[2];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE2_PITCH_EXT;
|
||||
img_attr[img_attr_index++] = pitches[2];
|
||||
|
||||
if(use_modifier) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[2] & 0xFFFFFFFFULL;
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[2] >> 32ULL;
|
||||
}
|
||||
}
|
||||
|
||||
if(num_planes >= 4) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE3_FD_EXT;
|
||||
img_attr[img_attr_index++] = fds[3];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE3_OFFSET_EXT;
|
||||
img_attr[img_attr_index++] = offsets[3];
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE3_PITCH_EXT;
|
||||
img_attr[img_attr_index++] = pitches[3];
|
||||
|
||||
if(use_modifier) {
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[3] & 0xFFFFFFFFULL;
|
||||
|
||||
img_attr[img_attr_index++] = EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT;
|
||||
img_attr[img_attr_index++] = modifiers[3] >> 32ULL;
|
||||
img_attr[img_attr_index++] = plane_modifier_hi_attrs[i];
|
||||
img_attr[img_attr_index++] = modifiers[i] >> 32ULL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -607,33 +580,6 @@ void setup_dma_buf_attrs(intptr_t *img_attr, uint32_t format, uint32_t width, ui
|
||||
assert(img_attr_index <= 44);
|
||||
}
|
||||
|
||||
static VADisplay video_codec_context_get_vaapi_display(AVCodecContext *video_codec_context) {
|
||||
AVBufferRef *hw_frames_ctx = video_codec_context->hw_frames_ctx;
|
||||
if(!hw_frames_ctx)
|
||||
return NULL;
|
||||
|
||||
AVHWFramesContext *hw_frame_context = (AVHWFramesContext*)hw_frames_ctx->data;
|
||||
AVHWDeviceContext *device_context = (AVHWDeviceContext*)hw_frame_context->device_ctx;
|
||||
if(device_context->type != AV_HWDEVICE_TYPE_VAAPI)
|
||||
return NULL;
|
||||
|
||||
AVVAAPIDeviceContext *vactx = device_context->hwctx;
|
||||
return vactx->display;
|
||||
}
|
||||
|
||||
bool video_codec_context_is_vaapi(AVCodecContext *video_codec_context) {
|
||||
if(!video_codec_context)
|
||||
return false;
|
||||
|
||||
AVBufferRef *hw_frames_ctx = video_codec_context->hw_frames_ctx;
|
||||
if(!hw_frames_ctx)
|
||||
return false;
|
||||
|
||||
AVHWFramesContext *hw_frame_context = (AVHWFramesContext*)hw_frames_ctx->data;
|
||||
AVHWDeviceContext *device_context = (AVHWDeviceContext*)hw_frame_context->device_ctx;
|
||||
return device_context->type == AV_HWDEVICE_TYPE_VAAPI;
|
||||
}
|
||||
|
||||
vec2i scale_keep_aspect_ratio(vec2i from, vec2i to) {
|
||||
if(from.x == 0 || from.y == 0)
|
||||
return (vec2i){0, 0};
|
||||
|
||||
@@ -339,24 +339,13 @@ static gsr_monitor_rotation wayland_transform_to_gsr_rotation(int32_t rot) {
|
||||
|
||||
static void gsr_window_wayland_for_each_active_monitor_output_cached(const gsr_window *window, active_monitor_callback callback, void *userdata) {
|
||||
const gsr_window_wayland *self = window->priv;
|
||||
drm_connector_type_count type_counts[CONNECTOR_TYPE_COUNTS];
|
||||
int num_type_counts = 0;
|
||||
|
||||
for(int i = 0; i < self->num_outputs; ++i) {
|
||||
const gsr_wayland_output *output = &self->outputs[i];
|
||||
if(!output->name)
|
||||
continue;
|
||||
|
||||
const int connector_type_index = get_connector_type_by_name(output->name);
|
||||
drm_connector_type_count *connector_type = NULL;
|
||||
if(connector_type_index != -1)
|
||||
connector_type = drm_connector_types_get_index(type_counts, &num_type_counts, connector_type_index);
|
||||
|
||||
if(connector_type) {
|
||||
++connector_type->count;
|
||||
++connector_type->count_active;
|
||||
}
|
||||
|
||||
const int connector_type_id = get_connector_type_id_by_name(output->name);
|
||||
const gsr_monitor monitor = {
|
||||
.name = output->name,
|
||||
.name_len = strlen(output->name),
|
||||
@@ -364,7 +353,7 @@ static void gsr_window_wayland_for_each_active_monitor_output_cached(const gsr_w
|
||||
.size = { .x = output->size.x, .y = output->size.y },
|
||||
.connector_id = 0,
|
||||
.rotation = wayland_transform_to_gsr_rotation(output->transform),
|
||||
.monitor_identifier = connector_type ? monitor_identifier_from_type_and_count(connector_type_index, connector_type->count_active) : 0
|
||||
.monitor_identifier = (connector_type_index != -1 && connector_type_id != -1) ? monitor_identifier_from_type_and_count(connector_type_index, connector_type_id) : 0
|
||||
};
|
||||
callback(&monitor, userdata);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user