Ejemplo n.º 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))
}
Ejemplo n.º 2
0
//Allocate and return an uninitialized vector with length coefficients.
func SwsAllocvec(l int) *Vector {
	return (*Vector)(C.sws_allocVec(C.int(l)))
}