mirror of https://bitbucket.org/ausocean/av.git
adpcm, pcm: updated documentation
This commit is contained in:
parent
9fadb47902
commit
29e49a7a1c
|
@ -2,9 +2,6 @@
|
||||||
NAME
|
NAME
|
||||||
adpcm.go
|
adpcm.go
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
adpcm.go contains functions for encoding/compressing pcm into adpcm and decoding/decompressing back to pcm.
|
|
||||||
|
|
||||||
AUTHOR
|
AUTHOR
|
||||||
Trek Hopton <trek@ausocean.org>
|
Trek Hopton <trek@ausocean.org>
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@ LICENSE
|
||||||
You should have received a copy of the GNU General Public License in gpl.txt.
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
||||||
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// Package pcm provides functions for processing and converting pcm audio.
|
||||||
package pcm
|
package pcm
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
NAME
|
NAME
|
||||||
decode-pcm.go
|
decode-pcm.go
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
decode-pcm.go is a program for decoding/decompressing an adpcm file to a pcm file.
|
|
||||||
|
|
||||||
AUTHOR
|
AUTHOR
|
||||||
Trek Hopton <trek@ausocean.org>
|
Trek Hopton <trek@ausocean.org>
|
||||||
|
|
||||||
|
@ -25,6 +22,7 @@ LICENSE
|
||||||
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// decode-pcm is a command-line program for decoding/decompressing an adpcm file to a pcm file.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
NAME
|
NAME
|
||||||
encode-pcm.go
|
encode-pcm.go
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
encode-pcm.go is a program for encoding/compressing a pcm file to an adpcm file.
|
|
||||||
|
|
||||||
AUTHOR
|
AUTHOR
|
||||||
Trek Hopton <trek@ausocean.org>
|
Trek Hopton <trek@ausocean.org>
|
||||||
|
|
||||||
|
@ -25,6 +22,7 @@ LICENSE
|
||||||
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// encode-pcm is a command-line program for encoding/compressing a pcm file to an adpcm file.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
NAME
|
NAME
|
||||||
resample.go
|
resample.go
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
resample.go is a program for resampling a pcm file.
|
|
||||||
|
|
||||||
AUTHOR
|
AUTHOR
|
||||||
Trek Hopton <trek@ausocean.org>
|
Trek Hopton <trek@ausocean.org>
|
||||||
|
|
||||||
|
@ -24,6 +21,8 @@ LICENSE
|
||||||
You should have received a copy of the GNU General Public License in gpl.txt.
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
||||||
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// resample is a command-line program for resampling a pcm file.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
NAME
|
NAME
|
||||||
stereo-to-mono.go
|
stereo-to-mono.go
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
stereo-to-mono.go is a program for converting a mono pcm file to a stereo pcm file.
|
|
||||||
|
|
||||||
AUTHOR
|
AUTHOR
|
||||||
Trek Hopton <trek@ausocean.org>
|
Trek Hopton <trek@ausocean.org>
|
||||||
|
|
||||||
|
@ -24,6 +21,8 @@ LICENSE
|
||||||
You should have received a copy of the GNU General Public License in gpl.txt.
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
||||||
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// stereo-to-mono is a command-line program for converting a mono pcm file to a stereo pcm file.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
Loading…
Reference in New Issue