示例#1
0
//SwsVector * sws_getIdentityVec (void)
//Allocate and return a vector with just one coefficient, with value 1.0.
func Sws_getIdentityVec() *SwsVector {
	return (*SwsVector)(unsafe.Pointer(C.sws_getIdentityVec()))
}
示例#2
0
文件: swscale.go 项目: hyhy01/goav
//SwsVector * sws_getIdentityVec (void)
//Allocate and return a vector with just one coefficient, with value 1.0.
func Sws_getIdentityVec() *C.struct_SwsVector {
	return C.sws_getIdentityVec()
}
示例#3
0
文件: vector.go 项目: gale320/goav
//Allocate and return a vector with just one coefficient, with value 1.0.
func SwsGetidentityvec() *Vector {
	return (*Vector)(unsafe.Pointer(C.sws_getIdentityVec()))
}