audio/mp3: Remove Close calls

Close is removed at 14af46a99b
This commit is contained in:
Hajime Hoshi 2019-03-31 22:42:28 +09:00
parent d56668bfdb
commit aa042980ee

View File

@ -57,7 +57,7 @@ func (s *Stream) Close() error {
if s.resampling != nil {
return s.resampling.Close()
}
return s.orig.Close()
return nil
}
// Length returns the size of decoded stream in bytes.