コード例 #1
0
ファイル: swscale.go プロジェクト: stephenwithav/goav
//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()))
}