Skip to content

Commit 5706166

Browse files
authored
Fix typo in CodecHelix.h (#1935)
1 parent 748876c commit 5706166

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/AudioTools/AudioCodecs/CodecHelix.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class DecoderHelix : public MultiDecoder {
2222
public:
2323
DecoderHelix() {
2424
// register supported codecs with their mime type
25-
multi.addDecoder(mp3, "audio/mpeg");
26-
multi.addDecoder(aac, "audio/aac");
27-
multi.addDecoder(wav, "audio/vnd.wave");
25+
addDecoder(mp3, "audio/mpeg");
26+
addDecoder(aac, "audio/aac");
27+
addDecoder(wav, "audio/vnd.wave");
2828
}
2929

3030
protected:

0 commit comments

Comments
 (0)