File tree Expand file tree Collapse file tree 6 files changed +0
-35
lines changed Expand file tree Collapse file tree 6 files changed +0
-35
lines changed Original file line number Diff line number Diff line change @@ -598,9 +598,5 @@ class RTSPOutput : public AudioOutput {
598
598
AudioStreamer rtsp_streamer;
599
599
};
600
600
601
- // legacy name
602
- #if USE_OBSOLETE
603
- using RTSPStream = RTSPOutput;
604
- #endif
605
601
606
602
} // namespace audio_tools
Original file line number Diff line number Diff line change @@ -109,9 +109,5 @@ class MetaDataOutput : public AudioOutput {
109
109
110
110
};
111
111
112
- // legacy name
113
- #if USE_OBSOLETE
114
- using MetaDataPrint = MetaDataOutput;
115
- #endif
116
112
117
113
}
Original file line number Diff line number Diff line change @@ -232,10 +232,6 @@ template <typename T> class CsvOutput : public AudioOutput {
232
232
}
233
233
};
234
234
235
- // legacy name
236
- #if USE_OBSOLETE
237
- template <typename T> using CsvStream = CsvOutput<T>;
238
- #endif
239
235
240
236
/* *
241
237
* @brief Creates a Hex Dump
@@ -298,10 +294,6 @@ class HexDumpOutput : public AudioOutput {
298
294
int pos = 0 ;
299
295
};
300
296
301
- // legacy name
302
- #if USE_OBSOLETE
303
- using HexDumpOutput = HexDumpOutput;
304
- #endif
305
297
306
298
/* *
307
299
* @brief Mixing of multiple outputs to one final output
@@ -610,10 +602,6 @@ class MemoryOutput : public AudioOutput {
610
602
size_t max_size;
611
603
};
612
604
613
- // legacy name
614
- #if USE_OBSOLETE
615
- using MemoryPrint = MemoryOutput;
616
- #endif
617
605
618
606
/* *
619
607
* @brief Simple functionality to extract mono streams from a multichannel (e.g.
Original file line number Diff line number Diff line change @@ -95,10 +95,6 @@ class PWMAudioOutput : public AudioOutput {
95
95
PWMDriver pwm; // platform specific pwm
96
96
};
97
97
98
- // legacy name
99
- #if USE_OBSOLETE
100
- using PWMAudioStream = PWMAudioOutput;
101
- #endif
102
98
103
99
} // namespace audio_tools
104
100
Original file line number Diff line number Diff line change @@ -145,12 +145,6 @@ class AudioInfoSupport {
145
145
// / provides the actual output AudioInfo: this is usually the same as audioInfo() unless we use a transforming stream
146
146
virtual AudioInfo audioInfoOut () { return audioInfo ();}
147
147
};
148
- // Support legacy name
149
- #if USE_OBSOLETE
150
- using AudioBaseInfo = AudioInfo;
151
- using AudioBaseInfoDependent = AudioInfoSupport;
152
- using AudioInfoDependent = AudioInfoSupport;
153
- #endif
154
148
155
149
/* *
156
150
* @brief Supports the subscription to audio change notifications
Original file line number Diff line number Diff line change @@ -405,11 +405,6 @@ class QueueStream : public BaseStream {
405
405
bool owns_buffer = false ;
406
406
};
407
407
408
- #if USE_OBSOLETE
409
- // support legacy name
410
- template <typename T>
411
- using CallbackBufferedStream = QueueStream<T>;
412
- #endif
413
408
414
409
#ifndef SWIG
415
410
You can’t perform that action at this time.
0 commit comments