예제 #1
0
파일: swscale.go 프로젝트: hyhy01/goav
//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))
}
예제 #2
0
파일: vector.go 프로젝트: gale320/goav
//Allocate and return an uninitialized vector with length coefficients.
func SwsAllocvec(l int) *Vector {
	return (*Vector)(C.sws_allocVec(C.int(l)))
}