Compare commits

...

3 Commits

2 changed files with 5 additions and 3 deletions
Unified View
  1. +4
    -2
      scripts/install_pulseaudio_sources_apt_wrapper.sh
  2. +1
    -1
      src/module-xrdp-sink.c

+ 4
- 2
scripts/install_pulseaudio_sources_apt_wrapper.sh View File

@ -37,9 +37,11 @@
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# G L O B A L S # G L O B A L S
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
REPO_ROOT_PATH="$(realpath $(dirname "$0")/..)"
# Where the output files are going # Where the output files are going
PULSE_DIRNAME=pulseaudio.src PULSE_DIRNAME=pulseaudio.src
PULSE_DIR=$HOME/$PULSE_DIRNAME
PULSE_DIR=$REPO_ROOT_PATH/$PULSE_DIRNAME
# Absolute path to the script we're wrapping. This picks it up from # Absolute path to the script we're wrapping. This picks it up from
# the same directory this file is in # the same directory this file is in
@ -51,7 +53,7 @@ BUILDROOT=/var/lib/pa-build/$USER
# Extra packages to install in the build root which the wrapped script # Extra packages to install in the build root which the wrapped script
# may be using. These are packages available by default when using # may be using. These are packages available by default when using
# GitHub actions # GitHub actions
WRAPPED_SCRIPT_DEPS="sudo lsb-release"
WRAPPED_SCRIPT_DEPS="sudo lsb-release doxygen"
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# S U I T E E X I S T S # S U I T E E X I S T S


+ 1
- 1
src/module-xrdp-sink.c View File

@ -87,7 +87,7 @@ PA_MODULE_USAGE(
"xrdp_pulse_sink_socket=<name of sink socket>"); "xrdp_pulse_sink_socket=<name of sink socket>");
#define DEFAULT_SINK_NAME "xrdp-sink" #define DEFAULT_SINK_NAME "xrdp-sink"
#define BLOCK_USEC 30000
#define BLOCK_USEC 3000
//#define BLOCK_USEC (PA_USEC_PER_SEC * 2) //#define BLOCK_USEC (PA_USEC_PER_SEC * 2)
#define UNUSED_VAR(x) ((void) (x)) #define UNUSED_VAR(x) ((void) (x))


Loading…
Cancel
Save