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