audio: Remove returning values from Play/Pause

This commit is contained in:
Hajime Hoshi 2020-10-10 23:45:18 +09:00
parent 6135929a0e
commit 8e46769284

View File

@ -321,11 +321,8 @@ func (p *playerImpl) Close() error {
}
// Play plays the stream.
//
// Play always returns nil.
func (p *Player) Play() error {
func (p *Player) Play() {
p.p.Play()
return nil
}
func (p *playerImpl) Play() {
@ -501,11 +498,8 @@ func (p *playerImpl) Seek(offset time.Duration) error {
}
// Pause pauses the playing.
//
// Pause always returns nil.
func (p *Player) Pause() error {
func (p *Player) Pause() {
p.p.Pause()
return nil
}
func (p *playerImpl) Pause() {