Exemplo n.º 1
0
//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))))
}
Exemplo n.º 2
0
//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))))
}