/* NAME encode-pcm.go DESCRIPTION See Readme.md AUTHOR Trek Hopton LICENSE encode-pcm.go is Copyright (C) 2018 the Australian Ocean Lab (AusOcean) It is free software: you can redistribute it and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses). */ package main import ( "flag" "io/ioutil" "bitbucket.org/ausocean/av/stream/adpcm" ) func main() { var inPath string var adpcmPath string flag.StringVar(&inPath, "in", "data.pcm", "file path of input data") flag.StringVar(&adpcmPath, "out", "encoded.adpcm", "file path of output") flag.Parse() //read pcm pcm, err := ioutil.ReadFile(inPath) if err != nil { panic(err) } //encode adpcm var comp []byte start := 0 bSize := 1010 for i := 0; i < len(pcm); i++ { if i%bSize == bSize-1 { block := pcm[start : i+1] encBlock, err := adpcm.EncodeBlock(block) if err != nil { panic(err) } comp = append(comp, encBlock...) start = i + 1 } } // save adpcm to file err = ioutil.WriteFile(adpcmPath, comp, 0644) if err != nil { panic(err) } }