2015-01-10 17:23:43 +01:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
|
|
|
// +build js
|
|
|
|
|
2016-02-07 08:03:33 +01:00
|
|
|
package audio
|
2015-01-10 17:23:43 +01:00
|
|
|
|
|
|
|
import (
|
2016-02-11 09:07:28 +01:00
|
|
|
"io"
|
2016-03-09 19:27:51 +01:00
|
|
|
"runtime"
|
2016-02-10 18:04:23 +01:00
|
|
|
|
2015-01-10 17:23:43 +01:00
|
|
|
"github.com/gopherjs/gopherjs/js"
|
|
|
|
)
|
|
|
|
|
2016-02-11 10:43:11 +01:00
|
|
|
type player struct {
|
2016-03-03 03:57:25 +01:00
|
|
|
src io.Reader
|
2016-02-11 11:55:59 +01:00
|
|
|
sampleRate int
|
|
|
|
position float64
|
2016-03-05 11:35:30 +01:00
|
|
|
context *js.Object
|
2016-02-11 11:55:59 +01:00
|
|
|
bufferSource *js.Object
|
|
|
|
}
|
|
|
|
|
2016-03-07 18:30:38 +01:00
|
|
|
func startPlaying(src io.Reader, sampleRate int) (*player, error) {
|
2016-02-11 11:55:59 +01:00
|
|
|
// Do nothing in node.js.
|
|
|
|
if js.Global.Get("require") != js.Undefined {
|
2016-03-07 18:30:38 +01:00
|
|
|
return nil, nil
|
2016-02-11 11:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class := js.Global.Get("AudioContext")
|
|
|
|
if class == js.Undefined {
|
|
|
|
class = js.Global.Get("webkitAudioContext")
|
|
|
|
}
|
|
|
|
if class == js.Undefined {
|
2016-03-04 18:02:19 +01:00
|
|
|
panic("audio: audio couldn't be initialized")
|
2016-02-11 11:55:59 +01:00
|
|
|
}
|
2016-03-07 18:30:38 +01:00
|
|
|
p := &player{
|
2016-02-11 11:55:59 +01:00
|
|
|
src: src,
|
|
|
|
sampleRate: sampleRate,
|
|
|
|
bufferSource: nil,
|
2016-03-05 11:35:30 +01:00
|
|
|
context: class.New(),
|
2016-02-11 10:43:11 +01:00
|
|
|
}
|
2016-03-07 18:30:38 +01:00
|
|
|
p.position = p.context.Get("currentTime").Float()
|
|
|
|
if err := p.start(); err != nil {
|
|
|
|
return nil, err
|
2016-03-04 17:52:28 +01:00
|
|
|
}
|
2016-03-07 18:30:38 +01:00
|
|
|
return p, nil
|
2016-02-11 10:43:11 +01:00
|
|
|
}
|
|
|
|
|
2015-06-13 19:37:20 +02:00
|
|
|
func toLR(data []byte) ([]int16, []int16) {
|
|
|
|
l := make([]int16, len(data)/4)
|
|
|
|
r := make([]int16, len(data)/4)
|
|
|
|
for i := 0; i < len(data)/4; i++ {
|
|
|
|
l[i] = int16(data[4*i]) | int16(data[4*i+1])<<8
|
|
|
|
r[i] = int16(data[4*i+2]) | int16(data[4*i+3])<<8
|
|
|
|
}
|
|
|
|
return l, r
|
|
|
|
}
|
|
|
|
|
2016-03-05 13:09:17 +01:00
|
|
|
func maxF(a, b float64) float64 {
|
|
|
|
if a > b {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-02-13 14:36:08 +01:00
|
|
|
func (p *player) proceed() error {
|
2016-03-05 13:09:17 +01:00
|
|
|
const bufferSize = 4096
|
|
|
|
c := p.context.Get("currentTime").Float()
|
|
|
|
if c < p.position-bufferSize*0.5/float64(p.sampleRate) {
|
|
|
|
return nil
|
|
|
|
}
|
2016-03-05 15:01:13 +01:00
|
|
|
if p.position < c {
|
|
|
|
p.position = c
|
|
|
|
}
|
2016-03-05 13:09:17 +01:00
|
|
|
b := make([]byte, bufferSize)
|
2016-03-05 19:48:47 +01:00
|
|
|
for 0 < len(b) {
|
|
|
|
n, err := p.src.Read(b)
|
|
|
|
if 0 < n {
|
|
|
|
const channelNum = 2
|
|
|
|
const bytesPerSample = channelNum * 16 / 8
|
|
|
|
buf := p.context.Call("createBuffer", channelNum, n/bytesPerSample, p.sampleRate)
|
|
|
|
l := buf.Call("getChannelData", 0)
|
|
|
|
r := buf.Call("getChannelData", 1)
|
|
|
|
il, ir := toLR(b[:n])
|
|
|
|
const max = 1 << 15
|
|
|
|
for i := 0; i < len(il); i++ {
|
|
|
|
l.SetIndex(i, float64(il[i])/max)
|
|
|
|
r.SetIndex(i, float64(ir[i])/max)
|
|
|
|
}
|
|
|
|
p.bufferSource = p.context.Call("createBufferSource")
|
|
|
|
p.bufferSource.Set("buffer", buf)
|
|
|
|
p.bufferSource.Call("connect", p.context.Get("destination"))
|
|
|
|
p.bufferSource.Call("start", maxF(p.position, c))
|
|
|
|
p.position += buf.Get("duration").Float()
|
|
|
|
b = b[n:]
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-02-13 14:36:08 +01:00
|
|
|
}
|
2016-03-09 19:27:51 +01:00
|
|
|
runtime.Gosched()
|
2016-02-09 14:35:55 +01:00
|
|
|
}
|
2016-03-05 19:48:47 +01:00
|
|
|
return nil
|
2016-02-13 14:36:08 +01:00
|
|
|
}
|
|
|
|
|
2016-03-04 17:52:28 +01:00
|
|
|
func (p *player) start() error {
|
2016-02-13 14:36:08 +01:00
|
|
|
// TODO: What if play is already called?
|
|
|
|
go func() {
|
|
|
|
defer p.close()
|
|
|
|
for {
|
|
|
|
err := p.proceed()
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// TODO: Record the last error
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-03-09 19:27:51 +01:00
|
|
|
runtime.Gosched()
|
2016-02-13 14:36:08 +01:00
|
|
|
}
|
|
|
|
}()
|
2016-02-10 18:04:23 +01:00
|
|
|
return nil
|
2016-02-09 14:35:55 +01:00
|
|
|
}
|
|
|
|
|
2016-02-11 11:55:59 +01:00
|
|
|
func (p *player) close() error {
|
2016-02-13 14:36:08 +01:00
|
|
|
if p.bufferSource == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2016-02-11 11:55:59 +01:00
|
|
|
p.bufferSource.Call("stop")
|
|
|
|
p.bufferSource.Call("disconnect")
|
2016-02-13 14:36:08 +01:00
|
|
|
p.bufferSource = nil
|
2016-02-11 11:55:59 +01:00
|
|
|
return nil
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|