File tree Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 101
101
#define SOFT_MUTE_VALUE LOW
102
102
#endif
103
103
104
-
105
- /**
106
- * -------------------------------------------------------------------------
107
- * @brief typedefs for DefaultStream
108
- *
109
- */
110
- #if defined(__linux__ ) || defined(_WIN32 ) || defined(__APPLE__ )
111
- typedef PortAudioStream DefaultStream ;
112
- #elif defined(ESP32 ) || defined(ESP8266 ) || defined(__SAMD21G18A__ )
113
- typedef A2DPStream DefaultStream ;
114
- #endif
Original file line number Diff line number Diff line change 31
31
#include " AudioHttp/AudioServer.h"
32
32
#include " AudioHttp/URLStreamESP32.h"
33
33
#endif
34
+
35
+
36
+ /* *
37
+ * -------------------------------------------------------------------------
38
+ * @brief typedefs for DefaultStream
39
+ *
40
+ */
41
+ namespace audio_tools {
42
+
43
+ #if defined(__linux__) || defined(_WIN32) || defined(__APPLE__)
44
+ typedef PortAudioStream DefaultStream;
45
+ #elif defined(ESP32) || defined(ESP8266) || defined(__SAMD21G18A__)
46
+ typedef A2DPStream DefaultStream;
47
+ #endif
48
+
49
+ }
You can’t perform that action at this time.
0 commit comments