2018-07-03 14:09:12 +02:00
|
|
|
// Copyright 2018 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 stb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/gopherjs/gopherwasm/js"
|
|
|
|
)
|
|
|
|
|
2018-07-21 23:27:57 +02:00
|
|
|
var flatten = js.Global().Get("window").Call("eval", `(function(arr) {
|
|
|
|
var ch = arr.length;
|
|
|
|
var len = arr[0].length;
|
|
|
|
var result = new Float32Array(ch * len);
|
|
|
|
for (var j = 0; j < len; j++) {
|
|
|
|
for (var i = 0; i < ch; i++) {
|
|
|
|
result[j*ch+i] = arr[i][j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
})`)
|
|
|
|
|
2018-07-03 14:09:12 +02:00
|
|
|
func init() {
|
|
|
|
// Eval wasm.js first to set the Wasm binary to Module.
|
|
|
|
js.Global().Get("window").Call("eval", string(stbvorbis_js))
|
|
|
|
}
|
|
|
|
|
2018-07-04 18:37:51 +02:00
|
|
|
func DecodeVorbis(buf []byte) ([]float32, int, int, error) {
|
2018-07-21 23:27:57 +02:00
|
|
|
var r js.Value
|
|
|
|
ch := make(chan struct{})
|
2018-07-07 10:45:00 +02:00
|
|
|
arr := js.TypedArrayOf(buf)
|
2018-07-21 23:27:57 +02:00
|
|
|
var f js.Callback
|
|
|
|
f = js.NewCallback(func(args []js.Value) {
|
|
|
|
r = args[0]
|
|
|
|
close(ch)
|
|
|
|
f.Release()
|
|
|
|
})
|
|
|
|
js.Global().Get("stbvorbis").Call("decode", arr).Call("then", f)
|
2018-07-07 10:45:00 +02:00
|
|
|
arr.Release()
|
2018-07-21 23:27:57 +02:00
|
|
|
<-ch
|
|
|
|
|
2018-07-03 14:09:12 +02:00
|
|
|
if r == js.Null() {
|
|
|
|
return nil, 0, 0, fmt.Errorf("audio/vorbis/internal/stb: decode failed")
|
|
|
|
}
|
2018-07-07 10:45:00 +02:00
|
|
|
|
2018-07-21 23:27:57 +02:00
|
|
|
channels := r.Get("data").Length()
|
|
|
|
flattened := flatten.Invoke(r.Get("data"))
|
|
|
|
data := make([]float32, flattened.Length())
|
2018-07-07 10:45:00 +02:00
|
|
|
arr = js.TypedArrayOf(data)
|
2018-07-21 23:27:57 +02:00
|
|
|
arr.Call("set", flattened)
|
2018-07-07 10:45:00 +02:00
|
|
|
arr.Release()
|
2018-07-21 23:27:57 +02:00
|
|
|
return data, channels, r.Get("sampleRate").Int(), nil
|
2018-07-03 14:09:12 +02:00
|
|
|
}
|