-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partially document exported types and functions
- Loading branch information
Showing
4 changed files
with
63 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
Package opus provides decoding of opus files, | ||
using the xiph.org C libraries | ||
[opus], [opusfile], and [ogg]. | ||
Rather than use cgo to utilise system installed instances of the libraries | ||
(that may or may not be installed on a given system), | ||
the source for the libraries is included with this package. | ||
The libraries are compiled, with the help of cgo, when the package is compiled. | ||
This means that a C compiler (such as gcc or clang) and a linker need to be | ||
available on the path for cgo to use when building the package. | ||
It may take several seconds to build this package the first time, | ||
until the Go tools cache the result of the build. | ||
[opus]: https://github.com/xiph/opus | ||
[opusfile]: https://github.com/xiph/opusfile | ||
[ogg]: https://github.com/xiph/ogg | ||
*/ | ||
package opus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters