Unregister Raw Decoders

This commit is contained in:
Emmm Monster 2020-12-26 23:21:11 +08:00
parent 91e23a20dd
commit 95f613481d
No known key found for this signature in database
GPG Key ID: C98279C83FB50DB9
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ func DecoderFuncWithExt(ext string) NewDecoderFunc {
}
}
func init() {
RegisterDecoder("mp3", DecoderFuncWithExt("mp3"))
/*RegisterDecoder("mp3", DecoderFuncWithExt("mp3"))
RegisterDecoder("flac", DecoderFuncWithExt("flac"))
RegisterDecoder("wav", DecoderFuncWithExt("wav"))
RegisterDecoder("ogg", DecoderFuncWithExt("ogg"))
RegisterDecoder("m4a", DecoderFuncWithExt("m4a"))
RegisterDecoder("m4a", DecoderFuncWithExt("m4a"))*/
}