예제 #1
0
파일: avfilter.go 프로젝트: ovr/goav
//Free a filter context.
func (ctx *Context) AvfilterFree() {
	C.avfilter_free((*C.struct_AVFilterContext)(ctx))
}
예제 #2
0
파일: avfilter.go 프로젝트: hyhy01/goav
//void 	avfilter_free (AVFilterContext *filter)
//Free a filter context.
func Avfilter_free(f *AVFilterContext) {
	C.avfilter_free((*C.struct_AVFilterContext)(f))
}