예제 #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()))
}