pa_sample_spec sample_spec;
int err;
- pa_buffer_attr attr;
- attr.maxlength = (uint32_t) 4800;
- attr.tlength = (uint32_t) 3800;
- attr.prebuf = (uint32_t) 3072; // about 64 msec "pre-filling"
- attr.minreq = (uint32_t) -1;
- attr.fragsize = (uint32_t) -1;
-
if(rx->audio_name==NULL) {
result=-1;
} else {
stream_id, // Description of our stream.
&sample_spec, // Our sample format.
NULL, // Use default channel map
- &attr, // use our "prebuf" value
+ NULL, // Use default attributes
&err // error code if returns NULL
);