2016-03-14 17:36:54 +01:00
|
|
|
// Copyright 2016 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package vorbis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2016-03-26 17:15:28 +01:00
|
|
|
type Stream struct {
|
2016-03-14 17:36:54 +01:00
|
|
|
buf *bytes.Reader
|
|
|
|
sampleRate int
|
|
|
|
}
|
|
|
|
|
2016-03-26 17:15:28 +01:00
|
|
|
func (s *Stream) Read(p []byte) (int, error) {
|
2016-03-14 17:36:54 +01:00
|
|
|
return s.buf.Read(p)
|
|
|
|
}
|
|
|
|
|
2016-03-26 17:15:28 +01:00
|
|
|
func (s *Stream) Seek(offset int64, whence int) (int64, error) {
|
2016-03-14 17:36:54 +01:00
|
|
|
return s.buf.Seek(offset, whence)
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:06:37 +02:00
|
|
|
func (s *Stream) Close() error {
|
|
|
|
s.buf = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-26 17:15:28 +01:00
|
|
|
func (s *Stream) Len() time.Duration {
|
2016-03-14 17:36:54 +01:00
|
|
|
const bytesPerSample = 4
|
2016-03-17 14:59:29 +01:00
|
|
|
return time.Duration(s.buf.Len()/bytesPerSample) * time.Second / time.Duration(s.sampleRate)
|
2016-03-14 17:36:54 +01:00
|
|
|
}
|