mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Initialize pa_buffer_attr.maxlength to -1
(cherry picked from commit b5622e9f78
)
This commit is contained in:
parent
afc36d9a0e
commit
4cb45c7fce
1 changed files with 2 additions and 1 deletions
|
@ -708,7 +708,8 @@ Error AudioDriverPulseAudio::capture_init_device() {
|
|||
int input_buffer_frames = closest_power_of_2(input_latency * mix_rate / 1000);
|
||||
int input_buffer_size = input_buffer_frames * spec.channels;
|
||||
|
||||
pa_buffer_attr attr;
|
||||
pa_buffer_attr attr = {};
|
||||
attr.maxlength = (uint32_t)-1;
|
||||
attr.fragsize = input_buffer_size * sizeof(int16_t);
|
||||
|
||||
pa_rec_str = pa_stream_new(pa_ctx, "Record", &spec, &pa_rec_map);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue