예제 #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)))
}