Example #1
0
//SwsVector * sws_allocVec (int length)
//Allocate and return an uninitialized vector with length coefficients.
func Sws_allocVec(l int) *C.struct_SwsVector {
	return C.sws_allocVec(C.int(l))
}
Example #2
0
//Allocate and return an uninitialized vector with length coefficients.
func SwsAllocvec(l int) *Vector {
	return (*Vector)(C.sws_allocVec(C.int(l)))
}