示例#1
0
文件: swresample.go 项目: hyhy01/goav
//Sample handling functions
//int swr_drop_output (struct SwrContext *s, int count)
//Drops the specified number of output samples.
func Swr_drop_output(s *SwrContext, c int) int {
	return int(C.swr_drop_output((*C.struct_SwrContext)(s), C.int(c)))
}
示例#2
0
文件: context.go 项目: gale320/goav
//Sample handling functions. Drops the specified number of output samples.
func (s *Context) SwrDropOutput(c int) int {
	return int(C.swr_drop_output((*C.struct_SwrContext)(s), C.int(c)))
}