adpcm, pcm: updated documentation

This commit is contained in:
Trek H 2019-05-08 20:04:40 +09:30
parent 9fadb47902
commit 29e49a7a1c
6 changed files with 8 additions and 15 deletions

View File

@ -2,9 +2,6 @@
NAME
adpcm.go
DESCRIPTION
adpcm.go contains functions for encoding/compressing pcm into adpcm and decoding/decompressing back to pcm.
AUTHOR
Trek Hopton <trek@ausocean.org>

View File

@ -24,6 +24,8 @@ LICENSE
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).
*/
// Package pcm provides functions for processing and converting pcm audio.
package pcm
import (

View File

@ -2,9 +2,6 @@
NAME
decode-pcm.go
DESCRIPTION
decode-pcm.go is a program for decoding/decompressing an adpcm file to a pcm file.
AUTHOR
Trek Hopton <trek@ausocean.org>
@ -25,6 +22,7 @@ LICENSE
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
import (

View File

@ -2,9 +2,6 @@
NAME
encode-pcm.go
DESCRIPTION
encode-pcm.go is a program for encoding/compressing a pcm file to an adpcm file.
AUTHOR
Trek Hopton <trek@ausocean.org>
@ -25,6 +22,7 @@ LICENSE
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
import (

View File

@ -2,9 +2,6 @@
NAME
resample.go
DESCRIPTION
resample.go is a program for resampling a pcm file.
AUTHOR
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.
If not, see [GNU licenses](http://www.gnu.org/licenses).
*/
// resample is a command-line program for resampling a pcm file.
package main
import (

View File

@ -2,9 +2,6 @@
NAME
stereo-to-mono.go
DESCRIPTION
stereo-to-mono.go is a program for converting a mono pcm file to a stereo pcm file.
AUTHOR
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.
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
import (