diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-09-20 03:39:15 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-09-20 03:39:15 +0200 |
commit | 919890b7b2eb16fc57439e6c9b8b28183febc467 (patch) | |
tree | dd8bb3f83e1f8edd9cfe9b51df5fba41356fe91f /build.sh | |
parent | 9f2ddf380291f34ce03fd9af3c10751192a884c2 (diff) |
Fix replay video/audio desync, fix dummy audio when dropping audio input, give each audio stream a new name so it can be replaced with pipewire graphs
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ #!/bin/sh -e -dependencies="glew libavcodec libavformat libavutil x11 xcomposite glfw3 libpulse-simple libswresample" +dependencies="glew libavcodec libavformat libavutil x11 xcomposite glfw3 libpulse libswresample" includes="$(pkg-config --cflags $dependencies) -I/opt/cuda/targets/x86_64-linux/include" libs="$(pkg-config --libs $dependencies) /usr/lib64/libcuda.so -ldl -pthread -lm" -g++ -c src/sound.cpp -O2 $includes -DPULSEAUDIO=1 -g++ -c src/main.cpp -O2 $includes -DPULSEAUDIO=1 +g++ -c src/sound.cpp -O2 $includes +g++ -c src/main.cpp -O2 $includes g++ -o gpu-screen-recorder -O2 sound.o main.o -s $libs |