示例#1
0
文件: swresample.go 项目: hyhy01/goav
//SwrContext destructor functions
//void swr_free (struct SwrContext **s)
//Free the given SwrContext and set the pointer to NULL.
func Swr_free(s **SwrContext) {
	C.swr_free((**C.struct_SwrContext)(unsafe.Pointer(s)))
}
示例#2
0
文件: swr.go 项目: Dim0N22/gmf
func (this *SwrCtx) Free() {
	C.swr_free(&this.swrCtx)
}
示例#3
0
文件: context.go 项目: gale320/goav
//Context destructor functions. Free the given Context and set the pointer to NULL.
func (s *Context) SwrFree() {
	C.swr_free((**C.struct_SwrContext)(unsafe.Pointer(s)))
}