//int swr_set_channel_mapping (struct SwrContext *s, const int *channel_map) //Set a customized input channel mapping. func Swr_set_channel_mapping(s *SwrContext, cm *int) int { return int(C.swr_set_channel_mapping((*C.struct_SwrContext)(s), (*C.int)(unsafe.Pointer(cm)))) }
//Set a customized input channel mapping. func (s *Context) SwrSetChannelMapping(cm *int) int { return int(C.swr_set_channel_mapping((*C.struct_SwrContext)(s), (*C.int)(unsafe.Pointer(cm)))) }