projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af34287
)
Critical fix for SOAPY.
author
c vw
<dl1ycf@darc.de>
Mon, 25 May 2020 14:23:35 +0000
(16:23 +0200)
committer
c vw
<dl1ycf@darc.de>
Mon, 25 May 2020 14:23:35 +0000
(16:23 +0200)
portaudio.c
patch
|
blob
|
history
diff --git
a/portaudio.c
b/portaudio.c
index bdbde1db16f475ecc7a232646937580a74255a46..6e6f4de64169f70fb81fb47edba90686987e46dc 100644
(file)
--- a/
portaudio.c
+++ b/
portaudio.c
@@
-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;
}