コード例 #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)))
}