2019-01-15 03:14:55 +01:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2024-07-07 09:59:45 +02:00
|
|
|
package vorbis
|
2019-01-15 03:14:55 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
2024-07-07 09:59:45 +02:00
|
|
|
type float32Reader interface {
|
2019-01-15 03:14:55 +01:00
|
|
|
Read([]float32) (int, error)
|
|
|
|
}
|
|
|
|
|
2024-07-07 09:59:45 +02:00
|
|
|
func newInt16BytesReaderFromFloat32Reader(r float32Reader) io.Reader {
|
|
|
|
return &int16BytesReader{r: r}
|
2019-01-15 03:14:55 +01:00
|
|
|
}
|
|
|
|
|
2024-07-07 09:59:45 +02:00
|
|
|
type int16BytesReader struct {
|
|
|
|
r float32Reader
|
2021-10-31 11:47:42 +01:00
|
|
|
eof bool
|
|
|
|
hasRemain bool
|
|
|
|
remain byte
|
|
|
|
fbuf []float32
|
2019-01-15 03:14:55 +01:00
|
|
|
}
|
|
|
|
|
2021-01-04 13:42:00 +01:00
|
|
|
func max(a, b int) int {
|
|
|
|
if a < b {
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2024-07-07 09:59:45 +02:00
|
|
|
func (r *int16BytesReader) Read(buf []byte) (int, error) {
|
|
|
|
if r.eof {
|
2019-01-15 03:14:55 +01:00
|
|
|
return 0, io.EOF
|
|
|
|
}
|
|
|
|
if len(buf) == 0 {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2024-07-07 09:59:45 +02:00
|
|
|
if r.hasRemain {
|
|
|
|
buf[0] = r.remain
|
|
|
|
r.hasRemain = false
|
2019-01-15 03:14:55 +01:00
|
|
|
return 1, nil
|
|
|
|
}
|
|
|
|
|
2021-01-14 16:37:21 +01:00
|
|
|
l := max(len(buf)/2, 1)
|
2024-07-07 09:59:45 +02:00
|
|
|
if cap(r.fbuf) < l {
|
|
|
|
r.fbuf = make([]float32, l)
|
2021-01-24 19:04:53 +01:00
|
|
|
}
|
2019-01-15 03:14:55 +01:00
|
|
|
|
2024-07-07 09:59:45 +02:00
|
|
|
n, err := r.r.Read(r.fbuf[:l])
|
2019-01-15 03:14:55 +01:00
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
if err == io.EOF {
|
2024-07-07 09:59:45 +02:00
|
|
|
r.eof = true
|
2019-01-15 03:14:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
b := buf
|
|
|
|
if len(buf) == 1 && n > 0 {
|
|
|
|
b = make([]byte, 2)
|
|
|
|
}
|
|
|
|
for i := 0; i < n; i++ {
|
2024-07-07 09:59:45 +02:00
|
|
|
f := r.fbuf[i]
|
2019-01-15 03:14:55 +01:00
|
|
|
s := int16(f * (1<<15 - 1))
|
2021-10-31 11:34:52 +01:00
|
|
|
b[2*i] = byte(s)
|
|
|
|
b[2*i+1] = byte(s >> 8)
|
2019-01-15 03:14:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(buf) == 1 && len(b) == 2 {
|
|
|
|
buf[0] = b[0]
|
2024-07-07 09:59:45 +02:00
|
|
|
r.remain = b[1]
|
|
|
|
r.hasRemain = true
|
2019-01-15 03:14:55 +01:00
|
|
|
return 1, err
|
|
|
|
}
|
|
|
|
return n * 2, err
|
|
|
|
}
|