예제 #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())
}