Example #1
0
//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)))
}
Example #2
0
File: swr.go Project: Dim0N22/gmf
func (this *SwrCtx) Free() {
	C.swr_free(&this.swrCtx)
}
Example #3
0
//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)))
}