Exemplo n.º 1
0
Arquivo: sox.go Projeto: vbatts/go-sox
/*
Find and load format handler plugins.
*/
func FormatInit() int {
	return int(C.sox_format_init())
}
Exemplo n.º 2
0
Arquivo: sox.go Projeto: 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
}