示例#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))
}