File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/AudioTools/AudioCodecs Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ class ADTSDecoder : public AudioDecoder {
211
211
void setParseBufferSize (int size) { buffer.resize (size); }
212
212
213
213
// / Defines where the decoded result is written to
214
- virtual void setOutput (AudioStream &out_stream) {
214
+ void setOutput (AudioStream &out_stream) override {
215
215
if (p_dec) {
216
216
p_dec->setOutput (out_stream);
217
217
} else {
@@ -220,7 +220,7 @@ class ADTSDecoder : public AudioDecoder {
220
220
}
221
221
222
222
// / Defines where the decoded result is written to
223
- virtual void setOutput (AudioOutput &out_stream) {
223
+ void setOutput (AudioOutput &out_stream) override {
224
224
if (p_dec) {
225
225
p_dec->setOutput (out_stream);
226
226
} else {
@@ -229,7 +229,7 @@ class ADTSDecoder : public AudioDecoder {
229
229
}
230
230
231
231
// / Defines where the decoded result is written to
232
- virtual void setOutput (Print &out_stream) override {
232
+ void setOutput (Print &out_stream) override {
233
233
if (p_dec) {
234
234
p_dec->setOutput (out_stream);
235
235
} else {
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ class MTSDecoder : public AudioDecoder {
165
165
}
166
166
167
167
// / Defines where the decoded result is written to
168
- virtual void setOutput (AudioStream &out_stream) {
168
+ void setOutput (AudioStream &out_stream) override {
169
169
if (p_dec) {
170
170
p_dec->setOutput (out_stream);
171
171
} else {
@@ -174,7 +174,7 @@ class MTSDecoder : public AudioDecoder {
174
174
}
175
175
176
176
// / Defines where the decoded result is written to
177
- virtual void setOutput (AudioOutput &out_stream) {
177
+ void setOutput (AudioOutput &out_stream) override {
178
178
if (p_dec) {
179
179
p_dec->setOutput (out_stream);
180
180
} else {
@@ -183,7 +183,7 @@ class MTSDecoder : public AudioDecoder {
183
183
}
184
184
185
185
// / Defines where the decoded result is written to
186
- virtual void setOutput (Print &out_stream) override {
186
+ void setOutput (Print &out_stream) override {
187
187
if (p_dec) {
188
188
p_dec->setOutput (out_stream);
189
189
} else {
You can’t perform that action at this time.
0 commit comments