示例#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())
}