Exemplo n.º 1
0
//int swr_inject_silence (struct SwrContext *s, int count)
//Injects the specified number of silence samples.
func Swr_inject_silence(s *SwrContext, c int) int {
	return int(C.swr_inject_silence((*C.struct_SwrContext)(s), C.int(c)))
}
Exemplo n.º 2
0
//Injects the specified number of silence samples.
func (s *Context) SwrInjectSilence(c int) int {
	return int(C.swr_inject_silence((*C.struct_SwrContext)(s), C.int(c)))
}