]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Critical fix for SOAPY.
authorc vw <dl1ycf@darc.de>
Mon, 25 May 2020 14:23:35 +0000 (16:23 +0200)
committerc vw <dl1ycf@darc.de>
Mon, 25 May 2020 14:23:35 +0000 (16:23 +0200)
portaudio.c

index bdbde1db16f475ecc7a232646937580a74255a46..6e6f4de64169f70fb81fb47edba90686987e46dc 100644 (file)
@@ -220,6 +220,9 @@ int pa_mic_cb(const void *inputBuffer, void *outputBuffer, unsigned long framesP
     switch(protocol) {
       case ORIGINAL_PROTOCOL:
       case NEW_PROTOCOL:
+#ifdef SOAPYSDR
+      case SOAPYSDR_PROTOCOL:
+#endif
        //
        // put sample into ring buffer
        //
@@ -236,12 +239,6 @@ int pa_mic_cb(const void *inputBuffer, void *outputBuffer, unsigned long framesP
          }
        }
        break;
-#ifdef SOAPYSDR
-      case SOAPYSDR_PROTOCOL:
-       // Note that this call ends up deeply in the TX engine
-       soapy_protocol_process_local_mic(sample);
-       break;
-#endif
       default:
        break;
     }