예제 #1
0
파일: swresample.go 프로젝트: hyhy01/goav
//void swr_close (struct SwrContext *s)
//Closes the context so that swr_is_initialized() returns 0.
func Swr_close(s *SwrContext) {
	C.swr_close((*C.struct_SwrContext)(s))
}
예제 #2
0
파일: context.go 프로젝트: gale320/goav
//Closes the context so that swr_is_initialized() returns 0.
func (s *Context) SwrClose() {
	C.swr_close((*C.struct_SwrContext)(s))
}