Example #1
0
//int64_t swr_get_delay (struct SwrContext *s, int64_t base)
//Gets the delay the next input sample will experience relative to the next output sample.
func Swr_get_delay(s *SwrContext, b int64) int64 {
	return int64(C.swr_get_delay((*C.struct_SwrContext)(s), C.int64_t(b)))
}
Example #2
0
//Gets the delay the next input sample will experience relative to the next output sample.
func (s *Context) SwrGetDelay(b int64) int64 {
	return int64(C.swr_get_delay((*C.struct_SwrContext)(s), C.int64_t(b)))
}