Fix error detecting for PulseAudio pa_stream_new call

(cherry picked from commit 86e101ec82)
This commit is contained in:
Marcelo Fernandez 2018-04-11 11:46:58 -03:00 committed by Hein-Pieter van Braam
parent 3dc4447cb8
commit 4b5472b100
1 changed files with 4 additions and 1 deletions

View File

@ -178,7 +178,10 @@ Error AudioDriverPulseAudio::init_device() {
attr.minreq = (uint32_t)-1; attr.minreq = (uint32_t)-1;
pa_str = pa_stream_new(pa_ctx, "Sound", &spec, NULL); pa_str = pa_stream_new(pa_ctx, "Sound", &spec, NULL);
ERR_FAIL_COND_V(pa_ctx == NULL, ERR_CANT_OPEN); if (pa_str == NULL) {
ERR_PRINTS("PulseAudio: pa_stream_new error: " + String(pa_strerror(pa_context_errno(pa_ctx))));
ERR_FAIL_V(ERR_CANT_OPEN);
}
const char *dev = device_name == "Default" ? NULL : device_name.utf8().get_data(); const char *dev = device_name == "Default" ? NULL : device_name.utf8().get_data();
pa_stream_flags flags = pa_stream_flags(PA_STREAM_INTERPOLATE_TIMING | PA_STREAM_ADJUST_LATENCY | PA_STREAM_AUTO_TIMING_UPDATE); pa_stream_flags flags = pa_stream_flags(PA_STREAM_INTERPOLATE_TIMING | PA_STREAM_ADJUST_LATENCY | PA_STREAM_AUTO_TIMING_UPDATE);