コード例 #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))
}