Example #1
0
File: avfilter.go Project: ovr/goav
//Free a filter context.
func (ctx *Context) AvfilterFree() {
	C.avfilter_free((*C.struct_AVFilterContext)(ctx))
}
Example #2
0
//void 	avfilter_free (AVFilterContext *filter)
//Free a filter context.
func Avfilter_free(f *AVFilterContext) {
	C.avfilter_free((*C.struct_AVFilterContext)(f))
}