//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))) }
func (this *SwrCtx) Free() { C.swr_free(&this.swrCtx) }
//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))) }