mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
149 lines
2.9 KiB
Go
149 lines
2.9 KiB
Go
// Copyright 2017 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.
|
|
|
|
// +build !js
|
|
|
|
package mp3
|
|
|
|
// #include "pdmp3.h"
|
|
import "C"
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
var (
|
|
reader io.Reader
|
|
readerCache []uint8
|
|
readerPos int
|
|
readerEOF bool
|
|
writer io.Writer
|
|
)
|
|
|
|
func decodeL3() error {
|
|
out := make([]uint32, 576)
|
|
// Number of channels(1 for mono and 2 for stereo)
|
|
nch := 2
|
|
if theMPEG1FrameHeader.mode == mpeg1ModeSingleChannel {
|
|
nch = 1
|
|
}
|
|
for gr := 0; gr < 2; gr++ {
|
|
for ch := 0; ch < nch; ch++ {
|
|
l3Requantize(gr, ch)
|
|
// Reorder short blocks
|
|
l3Reorder(gr, ch)
|
|
}
|
|
l3Stereo(gr)
|
|
for ch := 0; ch < nch; ch++ {
|
|
l3Antialias(gr, ch)
|
|
// (IMDCT,windowing,overlapp add)
|
|
l3HybridSynthesis(gr, ch)
|
|
l3FrequencyInversion(gr, ch)
|
|
// Polyphase subband synthesis
|
|
l3SubbandSynthesis(gr, ch, out)
|
|
}
|
|
if err := audioWriteRaw(out); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func audioWriteRaw(samples []uint32) error {
|
|
nch := 2
|
|
if theMPEG1FrameHeader.mode == mpeg1ModeSingleChannel {
|
|
nch = 1
|
|
}
|
|
s := make([]uint8, len(samples)*2*nch)
|
|
for i, v := range samples {
|
|
if nch == 1 {
|
|
s[2*i] = uint8(v)
|
|
s[2*i+1] = uint8(v >> 8)
|
|
} else {
|
|
s[4*i] = uint8(v)
|
|
s[4*i+1] = uint8(v >> 8)
|
|
s[4*i+2] = uint8(v >> 16)
|
|
s[4*i+3] = uint8(v >> 24)
|
|
}
|
|
}
|
|
if _, err := writer.Write(s); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getByte() (uint8, error) {
|
|
for len(readerCache) == 0 && !readerEOF {
|
|
buf := make([]uint8, 4096)
|
|
n, err := reader.Read(buf)
|
|
readerCache = append(readerCache, buf[:n]...)
|
|
if err != nil {
|
|
if err == io.EOF {
|
|
readerEOF = true
|
|
} else {
|
|
return 0, err
|
|
}
|
|
}
|
|
}
|
|
if len(readerCache) == 0 {
|
|
return 0, io.EOF
|
|
}
|
|
b := readerCache[0]
|
|
readerCache = readerCache[1:]
|
|
readerPos++
|
|
return b, nil
|
|
}
|
|
|
|
func getBytes(buf []int) (int, error) {
|
|
for i := range buf {
|
|
v, err := getByte()
|
|
buf[i] = int(v)
|
|
if err == io.EOF {
|
|
return i, io.EOF
|
|
}
|
|
}
|
|
return len(buf), nil
|
|
}
|
|
|
|
func isEOF() bool {
|
|
if len(readerCache) == 0 && readerEOF {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func getFilepos() int {
|
|
return readerPos
|
|
}
|
|
|
|
func decode(r io.Reader, w io.Writer) error {
|
|
// TODO: Decoder should know number of channels
|
|
reader = r
|
|
writer = w
|
|
for !isEOF() {
|
|
err := readFrame()
|
|
if err == nil {
|
|
if err := decodeL3(); err != nil {
|
|
return err
|
|
}
|
|
continue
|
|
}
|
|
if isEOF() {
|
|
break
|
|
}
|
|
return err
|
|
}
|
|
return nil
|
|
}
|