We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984c4b1 commit 775771eCopy full SHA for 775771e
src/AudioTools/AudioCodecs/CodecMP3Helix.h
@@ -68,11 +68,13 @@ class MP3DecoderHelix : public AudioDecoder {
68
if (mp3!=nullptr) delete mp3;
69
}
70
71
+#if defined(ARDUINO)
72
/// Defines the output Stream
73
void setOutput(Print &outStream) override {
74
AudioDecoder::setOutput(outStream);
75
if (mp3!=nullptr) mp3->setOutput(outStream);
76
77
+#endif
78
79
/// Starts the processing
80
bool begin(){
src/AudioTools/CoreAudio/AudioHttp/AudioHttp.h
@@ -7,6 +7,7 @@
7
8
#include "URLStream.h"
9
#include "AudioServer.h"
10
-#if defined(ESP32) && defined(USE_URL_ARDUINO)
+
11
+#if ((defined(ESP32) && defined(USE_URL_ARDUINO)) || defined(ESP32_CMAKE))
12
# include "URLStreamESP32.h"
13
#endif
0 commit comments