示例#1
0
//SwsVector * sws_cloneVec (SwsVector *a)
//Allocate and return a clone of the vector a, that is a vector with the same coefficients as a.
func Sws_cloneVec(a *SwsVector) *SwsVector {
	return (*SwsVector)(unsafe.Pointer(C.sws_cloneVec((*C.struct_SwsVector)(a))))
}
示例#2
0
文件: swscale.go 项目: hyhy01/goav
//SwsVector * sws_cloneVec (SwsVector *a)
//Allocate and return a clone of the vector a, that is a vector with the same coefficients as a.
func Sws_cloneVec(a *C.struct_SwsVector) *C.struct_SwsVector {
	return C.sws_cloneVec(a)
}
示例#3
0
文件: vector.go 项目: gale320/goav
//Allocate and return a clone of the vector a, that is a vector with the same coefficients as a.
func (a *Vector) SwsClonevec() *Vector {
	return (*Vector)(unsafe.Pointer(C.sws_cloneVec((*C.struct_SwsVector)(a))))
}