예제 #1
0
파일: swscale.go 프로젝트: gale320/goav
//Return a pointer to yuv<->rgb coefficients for the given colorspace suitable for sws_setColorspaceDetails().
func SwsGetcoefficients(c int) *int {
	return (*int)(unsafe.Pointer(C.sws_getCoefficients(C.int(c))))
}
예제 #2
0
파일: swscale.go 프로젝트: hyhy01/goav
//const int * sws_getCoefficients (int colorspace)
//Return a pointer to yuv<->rgb coefficients for the given colorspace suitable for sws_setColorspaceDetails().
func Sws_getCoefficients(c int) *C.int {
	return C.sws_getCoefficients(C.int(c))
}