//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))) }
//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))) }