//int64_t swr_next_pts (struct SwrContext *s, int64_t pts) //Convert the next timestamp from input to output timestamps are in 1/(in_sample_rate * out_sample_rate) units. func Swr_next_pts(s *SwrContext, pts int64) int64 { return int64(C.swr_next_pts((*C.struct_SwrContext)(s), C.int64_t(pts))) }
//Convert the next timestamp from input to output timestamps are in 1/(in_sample_rate * out_sample_rate) units. func (s *Context) SwrNextPts(pts int64) int64 { return int64(C.swr_next_pts((*C.struct_SwrContext)(s), C.int64_t(pts))) }