]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Use default attributes for output buffer size
authorc vw <dl1ycf@darc.de>
Mon, 1 Nov 2021 12:48:38 +0000 (13:48 +0100)
committerc vw <dl1ycf@darc.de>
Mon, 1 Nov 2021 12:48:38 +0000 (13:48 +0100)
pulseaudio.c

index ebf0c42b7c1a4bdf0aeda94c15b56c67b1c98c4b..81dfc7e774a253e878ab8866a8291495aaeb6da0 100644 (file)
@@ -134,13 +134,6 @@ int audio_open_output(RECEIVER *rx) {
   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 {
@@ -160,7 +153,7 @@ int audio_open_output(RECEIVER *rx) {
                     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
                     );