File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/AudioTools/AudioCodecs Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
3
3
#include " AudioTools/AudioCodecs/AudioCodecsBase.h"
4
+ #define HELIX_PRINT
4
5
#include " AACDecoderHelix.h"
5
6
6
7
namespace audio_tools {
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
3
3
#include " AudioTools/AudioCodecs/AudioCodecsBase.h"
4
+ #define HELIX_PRINT
4
5
#include " MP3DecoderHelix.h"
5
6
6
7
namespace audio_tools {
@@ -68,13 +69,11 @@ class MP3DecoderHelix : public AudioDecoder {
68
69
if (mp3!=nullptr ) delete mp3;
69
70
}
70
71
71
- #if defined(ARDUINO)
72
72
// / Defines the output Stream
73
73
void setOutput (Print &outStream) override {
74
74
AudioDecoder::setOutput (outStream);
75
75
if (mp3!=nullptr ) mp3->setOutput (outStream);
76
76
}
77
- #endif
78
77
79
78
// / Starts the processing
80
79
bool begin (){
You can’t perform that action at this time.
0 commit comments