Skip to content

Commit 75800e0

Browse files
fix merge issue
1 parent 84da183 commit 75800e0

File tree

2 files changed

+4
-2
lines changed
  • decoder_modules/radio/src/demodulators
  • sink_modules/audio_sink/src

2 files changed

+4
-2
lines changed

decoder_modules/radio/src/demodulators/wfm.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ namespace demod {
1616
public:
1717
WFM() : diag(0.5, 4096) {}
1818

19-
WFM(std::string name, ConfigManager* config, dsp::stream<dsp::complex_t>* input, double bandwidth, double audioSR) : diag(0.5, 4096) {
20-
init(name, config, input, bandwidth, audioSR);
19+
WFM(std::string name, ConfigManager* config, dsp::stream<dsp::complex_t>* input, double bandwidth) : diag(0.5, 4096) {
20+
init(name, config, input, bandwidth);
2121
}
2222

2323
~WFM() {

sink_modules/audio_sink/src/main.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class AudioSink : public Sink {
4343
audio.setErrorCallback(&errorCallback);
4444
#endif
4545

46+
// Load config (TODO)
4647
bool created = false;
4748
std::string device = "";
4849
// config.acquire();
@@ -59,6 +60,7 @@ class AudioSink : public Sink {
5960
// }
6061
// config.release(modified);
6162

63+
// List devices
6264
RtAudio::DeviceInfo info;
6365
#if RTAUDIO_VERSION_MAJOR >= 6
6466
for (int i : audio.getDeviceIds()) {

0 commit comments

Comments
 (0)