Example #1
0
File: sox.go Project: vbatts/go-sox
/*
Find and load format handler plugins.
*/
func FormatInit() int {
	return int(C.sox_format_init())
}
Example #2
0
File: sox.go Project: krig/go-sox
// FormatInit finds and loads format handler plugins.
// Returns true if successful.
func FormatInit() bool {
	ret := C.sox_format_init()
	return ret == C.SOX_SUCCESS
}