コード例 #1
0
ファイル: swscale.go プロジェクト: hyhy01/goav
//const AVClass * sws_get_class (void)
//Get the AVClass for swsContext.
func Sws_get_class() *C.struct_AVClass {
	return C.sws_get_class()
}
コード例 #2
0
ファイル: swscale.go プロジェクト: gale320/goav
//Get the Class for swsContext.
func SwsGetClass() *Class {
	return (*Class)(C.sws_get_class())
}
コード例 #3
0
ファイル: swscale.go プロジェクト: stephenwithav/goav
//const AVClass * sws_get_class (void)
//Get the AVClass for swsContext.
func Sws_get_class() *AVClass {
	return (*AVClass)(C.sws_get_class())
}