Lines Matching refs:polyphony
268 def SetPolyphony (self, polyphony): argument
270 eas_logger.debug('Call EAS_SetPolyphony: polyphony=%d' % polyphony)
272 result = eas_dll.EAS_SetPolyphony(self.eas.handle, self.handle, polyphony)
279 polyphony = c_int(0)
281 result = eas_dll.EAS_GetPolyphony(self.eas.handle, self.handle, byref(polyphony))
284 eas_logger.debug('EAS_SetPolyphony: polyphony=%d' % polyphony.value)
285 return polyphony.value
834 def SetPolyphony (self, polyphony, synth_num=0): argument
836 …eas_logger.debug('Call EAS_SetSynthPolyphony: synth_num=%d, polyphony=%d' % (synth_num, polyphony))
838 result = eas_dll.EAS_SetSynthPolyphony(self.handle, synth_num, polyphony)
845 polyphony = c_int(0)
847 result = eas_dll.EAS_GetSynthPolyphony(self.handle, synth_num, byref(polyphony))
850 …eas_logger.debug('Call EAS_GetSynthPolyphony: synth_num=%d, polyphony=%d' % (synth_num, polyphony.…
851 return polyphony.value