We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/neutrinolabs/pulseaudio-module-xrdp/blob/devel/src/module-xrdp-sink.c#L363
pulseaudio has an assertion pa_frame_aligned on function pa_sink_render
pa_frame_aligned
pa_sink_render
https://github.com/pulseaudio/pulseaudio/blob/master/src/pulsecore/sink.c#L1234
it restricts request_bytes must be divisible by channels number * 1, 2, 3 or 4
request_bytes
channels number * 1, 2, 3 or 4
https://github.com/pulseaudio/pulseaudio/blob/master/src/pulsecore/sample-util.c#L121 https://github.com/pulseaudio/pulseaudio/blob/master/src/pulse/sample.c#L69
on surround sound, u->sink->thread_info.max_request is always greater than 16 * 1024. so request_bytes will be 16384. it can not to be divisible by 6.
u->sink->thread_info.max_request
16 * 1024
16384
6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/neutrinolabs/pulseaudio-module-xrdp/blob/devel/src/module-xrdp-sink.c#L363
pulseaudio has an assertion
pa_frame_aligned
on functionpa_sink_render
https://github.com/pulseaudio/pulseaudio/blob/master/src/pulsecore/sink.c#L1234
it restricts
request_bytes
must be divisible bychannels number * 1, 2, 3 or 4
https://github.com/pulseaudio/pulseaudio/blob/master/src/pulsecore/sample-util.c#L121
https://github.com/pulseaudio/pulseaudio/blob/master/src/pulse/sample.c#L69
on surround sound,
u->sink->thread_info.max_request
is always greater than16 * 1024
. sorequest_bytes
will be16384
. it can not to be divisible by6
.The text was updated successfully, but these errors were encountered: