コード例 #1
0
ファイル: swscale.go プロジェクト: hyhy01/goav
//struct SwsContext * sws_alloc_context (void)
//Allocate an empty SwsContext.
func Sws_alloc_context() *SwsContext {
	return (*SwsContext)(C.sws_alloc_context())
}
コード例 #2
0
ファイル: context.go プロジェクト: gale320/goav
//Allocate an empty Context.
func SwsAllocContext() *Context {
	return (*Context)(C.sws_alloc_context())
}