2021-01-06 19:20:36 +01:00
|
|
|
// Copyright 2021 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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 audio
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2021-03-21 20:09:57 +01:00
|
|
|
"runtime"
|
2021-01-06 19:20:36 +01:00
|
|
|
"sync"
|
2024-11-06 13:12:05 +01:00
|
|
|
"sync/atomic"
|
2021-01-06 19:20:36 +01:00
|
|
|
"time"
|
2021-03-28 11:07:38 +02:00
|
|
|
)
|
2021-01-06 19:20:36 +01:00
|
|
|
|
2022-06-30 19:06:30 +02:00
|
|
|
// player is almost the same as the interface oto.Player.
|
2021-12-17 07:30:32 +01:00
|
|
|
// This is defined in order to remove the dependency on Oto from this file.
|
2021-12-17 08:01:24 +01:00
|
|
|
type player interface {
|
2021-12-17 07:30:32 +01:00
|
|
|
Pause()
|
|
|
|
Play()
|
|
|
|
IsPlaying() bool
|
|
|
|
Volume() float64
|
|
|
|
SetVolume(volume float64)
|
2023-07-30 09:05:17 +02:00
|
|
|
BufferedSize() int
|
2021-12-17 07:30:32 +01:00
|
|
|
Err() error
|
2022-03-24 19:03:46 +01:00
|
|
|
SetBufferSize(bufferSize int)
|
2022-06-30 19:21:17 +02:00
|
|
|
io.Seeker
|
2021-12-17 07:30:32 +01:00
|
|
|
io.Closer
|
|
|
|
}
|
|
|
|
|
2021-08-21 16:54:29 +02:00
|
|
|
type context interface {
|
2021-12-17 08:01:24 +01:00
|
|
|
NewPlayer(io.Reader) player
|
2021-08-21 16:54:29 +02:00
|
|
|
Suspend() error
|
|
|
|
Resume() error
|
2021-10-22 08:29:00 +02:00
|
|
|
Err() error
|
2021-08-21 16:54:29 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
type playerFactory struct {
|
2021-08-21 16:54:29 +02:00
|
|
|
context context
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate int
|
2021-07-10 12:48:00 +02:00
|
|
|
|
|
|
|
m sync.Mutex
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 16:54:29 +02:00
|
|
|
var driverForTesting context
|
2021-03-21 18:57:52 +01:00
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func newPlayerFactory(sampleRate int) *playerFactory {
|
|
|
|
f := &playerFactory{
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate: sampleRate,
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-08-21 12:52:11 +02:00
|
|
|
if driverForTesting != nil {
|
|
|
|
f.context = driverForTesting
|
2021-03-21 18:57:52 +01:00
|
|
|
}
|
|
|
|
return f
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
type playerImpl struct {
|
2022-03-24 19:03:46 +01:00
|
|
|
context *Context
|
|
|
|
player player
|
|
|
|
src io.Reader
|
2024-07-07 11:55:37 +02:00
|
|
|
seekable bool
|
|
|
|
srcIdent any
|
2022-03-24 19:03:46 +01:00
|
|
|
stream *timeStream
|
|
|
|
factory *playerFactory
|
|
|
|
initBufferSize int
|
2024-07-06 16:43:27 +02:00
|
|
|
bytesPerSample int
|
2024-02-01 07:43:02 +01:00
|
|
|
|
2024-11-06 13:12:05 +01:00
|
|
|
// adjustedPosition is the player's more accurate position as time.Duration.
|
2024-02-01 07:43:02 +01:00
|
|
|
// The underlying buffer might not be changed even if the player is playing.
|
|
|
|
// adjustedPosition is adjusted by the time duration during the player position doesn't change while its playing.
|
2024-11-06 13:12:05 +01:00
|
|
|
adjustedPosition atomic.Int64
|
2024-02-01 07:43:02 +01:00
|
|
|
|
|
|
|
// lastSamples is the last value of the number of samples.
|
|
|
|
// When lastSamples is a negative number, this value is not initialized yet.
|
|
|
|
lastSamples int64
|
|
|
|
|
|
|
|
// stopwatch is a stopwatch to measure the time duration during the player position doesn't change while its playing.
|
|
|
|
stopwatch stopwatch
|
|
|
|
|
|
|
|
m sync.Mutex
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2024-07-07 11:55:37 +02:00
|
|
|
func (f *playerFactory) newPlayer(context *Context, src io.Reader, seekable bool, srcIdent any, bitDepthInBytes int) (*playerImpl, error) {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
p := &playerImpl{
|
2024-07-06 16:43:27 +02:00
|
|
|
src: src,
|
2024-07-07 11:55:37 +02:00
|
|
|
seekable: seekable,
|
|
|
|
srcIdent: srcIdent,
|
2024-07-06 16:43:27 +02:00
|
|
|
context: context,
|
|
|
|
factory: f,
|
|
|
|
lastSamples: -1,
|
|
|
|
bytesPerSample: bitDepthInBytes * channelCount,
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-12-17 08:01:24 +01:00
|
|
|
runtime.SetFinalizer(p, (*playerImpl).Close)
|
2021-01-06 19:20:36 +01:00
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) suspend() error {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
2021-05-04 11:49:34 +02:00
|
|
|
if f.context == nil {
|
2021-05-04 16:18:16 +02:00
|
|
|
return nil
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
2024-09-10 05:20:11 +02:00
|
|
|
return addErrorInfo(f.context.Suspend())
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) resume() error {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
2021-05-04 11:49:34 +02:00
|
|
|
if f.context == nil {
|
2021-05-04 16:18:16 +02:00
|
|
|
return nil
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
2024-09-10 05:20:11 +02:00
|
|
|
return addErrorInfo(f.context.Resume())
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
|
|
|
|
2021-10-22 08:29:00 +02:00
|
|
|
func (f *playerFactory) error() error {
|
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
|
|
|
if f.context == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-09-10 05:20:11 +02:00
|
|
|
return addErrorInfo(f.context.Err())
|
2021-10-22 08:29:00 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) initContextIfNeeded() (<-chan struct{}, error) {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
|
|
|
if f.context != nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2023-01-09 10:45:36 +01:00
|
|
|
c, ready, err := newContext(f.sampleRate)
|
2021-07-10 12:48:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
f.context = c
|
|
|
|
return ready, nil
|
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) ensurePlayer() error {
|
2021-02-28 15:41:30 +01:00
|
|
|
// Initialize the underlying player lazily to enable calling NewContext in an 'init' function.
|
|
|
|
// Accessing the underlying player functions requires the environment to be already initialized,
|
2022-05-25 17:27:27 +02:00
|
|
|
// but if Ebitengine is used for a shared library, the timing when init functions are called
|
2021-02-28 15:41:30 +01:00
|
|
|
// is unexpectable.
|
|
|
|
// e.g. a variable for JVM on Android might not be set.
|
2021-07-10 12:48:00 +02:00
|
|
|
ready, err := p.factory.initContextIfNeeded()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ready != nil {
|
2021-04-29 11:21:06 +02:00
|
|
|
go func() {
|
|
|
|
<-ready
|
|
|
|
p.context.setReady()
|
|
|
|
}()
|
2021-03-28 11:07:38 +02:00
|
|
|
}
|
2021-07-10 12:48:00 +02:00
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
if p.stream == nil {
|
2024-07-07 11:55:37 +02:00
|
|
|
s, err := newTimeStream(p.src, p.seekable, p.factory.sampleRate, p.bytesPerSample/channelCount)
|
2021-02-20 17:47:39 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-03-28 11:07:38 +02:00
|
|
|
p.stream = s
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
|
|
|
if p.player == nil {
|
2021-03-28 11:07:38 +02:00
|
|
|
p.player = p.factory.context.NewPlayer(p.stream)
|
2022-03-24 19:03:46 +01:00
|
|
|
if p.initBufferSize != 0 {
|
|
|
|
p.player.SetBufferSize(p.initBufferSize)
|
|
|
|
p.initBufferSize = 0
|
|
|
|
}
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
2021-02-20 17:47:39 +01:00
|
|
|
return nil
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) Play() {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return
|
|
|
|
}
|
2021-03-23 16:19:46 +01:00
|
|
|
if p.player.IsPlaying() {
|
|
|
|
return
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
p.player.Play()
|
2024-02-01 06:24:07 +01:00
|
|
|
p.context.addPlayingPlayer(p)
|
2024-02-01 07:43:02 +01:00
|
|
|
p.stopwatch.start()
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) Pause() {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !p.player.IsPlaying() {
|
2021-02-20 17:47:39 +01:00
|
|
|
return
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
|
|
|
|
p.player.Pause()
|
2024-02-01 06:24:07 +01:00
|
|
|
p.context.removePlayingPlayer(p)
|
2024-02-01 07:43:02 +01:00
|
|
|
p.stopwatch.stop()
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) IsPlaying() bool {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2024-02-01 07:43:02 +01:00
|
|
|
return p.isPlaying()
|
|
|
|
}
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2024-02-01 07:43:02 +01:00
|
|
|
func (p *playerImpl) isPlaying() bool {
|
2021-03-23 16:19:46 +01:00
|
|
|
if p.player == nil {
|
2021-02-20 17:47:39 +01:00
|
|
|
return false
|
|
|
|
}
|
2021-01-15 17:01:19 +01:00
|
|
|
return p.player.IsPlaying()
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) Volume() float64 {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return 0
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
return p.player.Volume()
|
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) SetVolume(volume float64) {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
p.player.SetVolume(volume)
|
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) Close() error {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-21 20:09:57 +01:00
|
|
|
runtime.SetFinalizer(p, nil)
|
2021-01-06 19:20:36 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if p.player != nil {
|
2021-03-21 20:09:57 +01:00
|
|
|
defer func() {
|
|
|
|
p.player = nil
|
|
|
|
}()
|
2021-03-21 18:57:52 +01:00
|
|
|
p.player.Pause()
|
2024-02-01 07:43:02 +01:00
|
|
|
p.stopwatch.stop()
|
2024-09-10 05:20:11 +02:00
|
|
|
return addErrorInfo(p.player.Close())
|
2021-02-20 17:47:39 +01:00
|
|
|
}
|
|
|
|
return nil
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2023-08-01 18:20:57 +02:00
|
|
|
func (p *playerImpl) Position() time.Duration {
|
2024-11-06 13:12:05 +01:00
|
|
|
return time.Duration(p.adjustedPosition.Load())
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) Rewind() error {
|
2023-08-01 18:20:57 +02:00
|
|
|
return p.SetPosition(0)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2023-08-01 18:20:57 +02:00
|
|
|
func (p *playerImpl) SetPosition(offset time.Duration) error {
|
2021-01-08 20:03:38 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
2024-02-01 09:31:16 +01:00
|
|
|
if offset == 0 && p.player == nil {
|
2024-11-06 13:12:05 +01:00
|
|
|
p.adjustedPosition.Store(0)
|
2024-02-01 09:31:16 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
return err
|
2021-02-21 15:54:43 +01:00
|
|
|
}
|
2021-03-28 11:07:38 +02:00
|
|
|
|
2022-06-30 19:21:17 +02:00
|
|
|
pos := p.stream.timeDurationToPos(offset)
|
|
|
|
if _, err := p.player.Seek(pos, io.SeekStart); err != nil {
|
2024-09-10 05:20:11 +02:00
|
|
|
return addErrorInfo(err)
|
2021-03-28 11:07:38 +02:00
|
|
|
}
|
2024-02-01 07:43:02 +01:00
|
|
|
p.lastSamples = -1
|
|
|
|
// Just after setting a position, the buffer size should be 0 as no data is sent.
|
2024-11-06 13:12:05 +01:00
|
|
|
p.adjustedPosition.Store(int64(p.stream.positionInTimeDuration()))
|
2024-02-01 07:43:02 +01:00
|
|
|
p.stopwatch.reset()
|
|
|
|
if p.isPlaying() {
|
|
|
|
p.stopwatch.start()
|
|
|
|
}
|
2022-06-30 19:21:17 +02:00
|
|
|
return nil
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-17 08:01:24 +01:00
|
|
|
func (p *playerImpl) Err() error {
|
2021-03-28 14:57:39 +02:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-09-10 05:20:11 +02:00
|
|
|
return addErrorInfo(p.player.Err())
|
2021-03-28 14:57:39 +02:00
|
|
|
}
|
|
|
|
|
2022-03-25 12:46:59 +01:00
|
|
|
func (p *playerImpl) SetBufferSize(bufferSize time.Duration) {
|
2022-03-24 19:03:46 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
2024-07-06 16:43:27 +02:00
|
|
|
bufferSizeInBytes := int(bufferSize * time.Duration(p.bytesPerSample) * time.Duration(p.factory.sampleRate) / time.Second)
|
|
|
|
bufferSizeInBytes = bufferSizeInBytes / p.bytesPerSample * p.bytesPerSample
|
2022-03-24 19:03:46 +01:00
|
|
|
if p.player == nil {
|
2022-03-25 12:46:59 +01:00
|
|
|
p.initBufferSize = bufferSizeInBytes
|
2022-03-24 19:03:46 +01:00
|
|
|
return
|
|
|
|
}
|
2022-03-25 12:46:59 +01:00
|
|
|
p.player.SetBufferSize(bufferSizeInBytes)
|
2022-03-24 19:03:46 +01:00
|
|
|
}
|
|
|
|
|
2024-07-07 11:55:37 +02:00
|
|
|
func (p *playerImpl) sourceIdent() any {
|
|
|
|
return p.srcIdent
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-01-08 20:03:38 +01:00
|
|
|
|
2024-02-01 12:28:52 +01:00
|
|
|
func (p *playerImpl) onContextSuspended() {
|
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.stopwatch.stop()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *playerImpl) onContextResumed() {
|
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if p.isPlaying() {
|
|
|
|
p.stopwatch.start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-01 07:43:02 +01:00
|
|
|
func (p *playerImpl) updatePosition() {
|
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
|
|
|
if p.player == nil {
|
2024-11-06 13:12:05 +01:00
|
|
|
p.adjustedPosition.Store(0)
|
2024-02-01 07:43:02 +01:00
|
|
|
return
|
|
|
|
}
|
2024-03-16 14:03:34 +01:00
|
|
|
if !p.context.IsReady() {
|
2024-11-06 13:12:05 +01:00
|
|
|
p.adjustedPosition.Store(0)
|
2024-03-16 14:03:34 +01:00
|
|
|
return
|
|
|
|
}
|
2024-02-01 07:43:02 +01:00
|
|
|
|
2024-07-06 16:43:27 +02:00
|
|
|
samples := (p.stream.position() - int64(p.player.BufferedSize())) / int64(p.bytesPerSample)
|
2024-02-01 07:43:02 +01:00
|
|
|
|
|
|
|
var adjustingTime time.Duration
|
|
|
|
if p.lastSamples >= 0 && p.lastSamples == samples {
|
|
|
|
// If the number of samples is not changed from the last tick,
|
|
|
|
// the underlying buffer is not updated yet. Adjust the position by the time (#2901).
|
|
|
|
adjustingTime = p.stopwatch.current()
|
|
|
|
} else {
|
|
|
|
p.lastSamples = samples
|
|
|
|
p.stopwatch.reset()
|
|
|
|
if p.isPlaying() {
|
|
|
|
p.stopwatch.start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the adjusted position every tick. This is necessary to keep the position accurate.
|
2024-11-06 13:12:05 +01:00
|
|
|
p.adjustedPosition.Store(int64(time.Duration(samples)*time.Second/time.Duration(p.factory.sampleRate) + adjustingTime))
|
2024-02-01 07:43:02 +01:00
|
|
|
}
|
|
|
|
|
2021-01-08 20:03:38 +01:00
|
|
|
type timeStream struct {
|
2024-07-06 16:43:27 +02:00
|
|
|
r io.Reader
|
2024-07-07 11:55:37 +02:00
|
|
|
seekable bool
|
2024-07-06 16:43:27 +02:00
|
|
|
sampleRate int
|
2024-11-06 14:12:16 +01:00
|
|
|
pos atomic.Int64
|
2024-07-06 16:43:27 +02:00
|
|
|
bytesPerSample int
|
2021-05-01 09:15:36 +02:00
|
|
|
|
|
|
|
// m is a mutex for this stream.
|
|
|
|
// All the exported functions are protected by this mutex as Read can be read from a different goroutine than Seek.
|
|
|
|
m sync.Mutex
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
|
2024-07-07 11:55:37 +02:00
|
|
|
func newTimeStream(r io.Reader, seekable bool, sampleRate int, bitDepthInBytes int) (*timeStream, error) {
|
2021-01-08 20:03:38 +01:00
|
|
|
s := &timeStream{
|
2024-07-06 16:43:27 +02:00
|
|
|
r: r,
|
2024-07-07 11:55:37 +02:00
|
|
|
seekable: seekable,
|
2024-07-06 16:43:27 +02:00
|
|
|
sampleRate: sampleRate,
|
|
|
|
bytesPerSample: bitDepthInBytes * channelCount,
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
2024-07-07 11:55:37 +02:00
|
|
|
if seekable {
|
2021-01-08 20:03:38 +01:00
|
|
|
// Get the current position of the source.
|
2024-07-07 11:55:37 +02:00
|
|
|
pos, err := s.r.(io.Seeker).Seek(0, io.SeekCurrent)
|
2021-01-08 20:03:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-11-06 14:12:16 +01:00
|
|
|
s.pos.Store(pos)
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *timeStream) Read(buf []byte) (int, error) {
|
2021-05-01 09:15:36 +02:00
|
|
|
s.m.Lock()
|
|
|
|
defer s.m.Unlock()
|
|
|
|
|
2021-02-21 10:48:54 +01:00
|
|
|
n, err := s.r.Read(buf)
|
2024-11-06 14:12:16 +01:00
|
|
|
s.pos.Add(int64(n))
|
2021-01-08 20:03:38 +01:00
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
2022-06-30 19:21:17 +02:00
|
|
|
func (s *timeStream) Seek(offset int64, whence int) (int64, error) {
|
2021-05-01 09:15:36 +02:00
|
|
|
s.m.Lock()
|
|
|
|
defer s.m.Unlock()
|
|
|
|
|
2024-07-07 11:55:37 +02:00
|
|
|
if !s.seekable {
|
2022-06-30 19:21:17 +02:00
|
|
|
// TODO: Should this return an error?
|
2021-01-08 20:03:38 +01:00
|
|
|
panic("audio: the source must be io.Seeker when seeking but not")
|
|
|
|
}
|
2024-07-07 11:55:37 +02:00
|
|
|
pos, err := s.r.(io.Seeker).Seek(offset, whence)
|
2021-01-08 20:03:38 +01:00
|
|
|
if err != nil {
|
2022-06-30 19:21:17 +02:00
|
|
|
return pos, err
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
|
2024-11-06 14:12:16 +01:00
|
|
|
s.pos.Store(pos)
|
2022-06-30 19:21:17 +02:00
|
|
|
return pos, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *timeStream) timeDurationToPos(offset time.Duration) int64 {
|
2024-07-06 16:43:27 +02:00
|
|
|
o := int64(offset) * int64(s.bytesPerSample) * int64(s.sampleRate) / int64(time.Second)
|
2022-06-30 19:21:17 +02:00
|
|
|
|
|
|
|
// Align the byte position with the samples.
|
2024-07-06 16:43:27 +02:00
|
|
|
o -= o % int64(s.bytesPerSample)
|
2024-11-06 14:12:16 +01:00
|
|
|
o += s.pos.Load() % int64(s.bytesPerSample)
|
2022-06-30 19:21:17 +02:00
|
|
|
|
|
|
|
return o
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
|
2024-02-01 06:24:07 +01:00
|
|
|
func (s *timeStream) position() int64 {
|
2024-11-06 14:12:16 +01:00
|
|
|
return s.pos.Load()
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
2024-02-01 07:43:02 +01:00
|
|
|
|
|
|
|
func (s *timeStream) positionInTimeDuration() time.Duration {
|
2024-11-06 14:12:16 +01:00
|
|
|
return time.Duration(s.pos.Load()) * time.Second / (time.Duration(s.sampleRate * s.bytesPerSample))
|
2024-02-01 07:43:02 +01:00
|
|
|
}
|