fix: raw don't access registry

This commit is contained in:
Unlock Music Dev 2022-11-19 07:25:45 +08:00
parent 8fd6763b29
commit 6f1cdc5b4f
Signed by: um-dev
GPG Key ID: 95202E10D3413A1D
1 changed files with 5 additions and 7 deletions

View File

@ -4,7 +4,6 @@ import (
"errors" "errors"
"fmt" "fmt"
"io" "io"
"strings"
) )
type RawDecoder struct { type RawDecoder struct {
@ -26,13 +25,12 @@ func (d *RawDecoder) Validate() error {
return fmt.Errorf("seek file failed: %v", err) return fmt.Errorf("seek file failed: %v", err)
} }
for ext, sniffer := range snifferRegistry { var ok bool
if sniffer(header) { d.audioExt, ok = SniffAll(header)
d.audioExt = strings.ToLower(ext) if !ok {
return nil return errors.New("raw: sniff audio type failed")
}
} }
return errors.New("audio doesn't recognized") return nil
} }
func (d *RawDecoder) Read(p []byte) (n int, err error) { func (d *RawDecoder) Read(p []byte) (n int, err error) {