cmd/flac2wav: Add notice about azul3d/examples and remove TODO for azul3d/engine#83.

This commit is contained in:
mewmew 2016-03-07 02:04:20 +01:00
parent 25f52780f5
commit 19a80bb8a8

View file

@ -1,7 +1,8 @@
// TODO: Remove +build ignore when azul3d.org is go get'able from Travis CI
// again.
//
// Issue tracking this: https://github.com/azul3d/audio/issues/16
// NOTE: This example is longer than needs to be when using Azul3d. The reason
// for this is to make the FLAC decoding explicit to showcase the low-level API,
// rather than using the front-end decoder implemented for Azul3d. An equivalent
// example using the Azul3d audio decoder interface for FLAC decoding may be
// viewed at github.com/azul3d/examples/azul3d_flac2wav.
// flac2wav is a tool which converts FLAC files to WAV files.
package main
@ -33,7 +34,7 @@ func main() {
for _, path := range flag.Args() {
err := flac2wav(path)
if err != nil {
log.Fatalln(err)
log.Fatal(err)
}
}
}