Ejemplo n.º 1
0
Archivo: avfilter.go Proyecto: ovr/goav
//Free a filter context.
func (ctx *Context) AvfilterFree() {
	C.avfilter_free((*C.struct_AVFilterContext)(ctx))
}
Ejemplo n.º 2
0
//void 	avfilter_free (AVFilterContext *filter)
//Free a filter context.
func Avfilter_free(f *AVFilterContext) {
	C.avfilter_free((*C.struct_AVFilterContext)(f))
}