HomeSort by relevance Sort by last modified time
    Searched refs:polyphony (Results 1 - 2 of 2) sorted by null

  /external/sonivox/arm-wt-22k/host_src/
eas_main.c 50 EAS_I32 polyphony; variable
260 polyphony = atoi(&argv[i][2]);
261 if (polyphony < 1)
262 polyphony = 1;
263 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "Polyphony set to %d\n", polyphony); */ }
279 if (polyphony > pLibConfig->maxVoices)
280 polyphony = pLibConfig->maxVoices;
294 polyphony = pLibConfig->maxVoices;
440 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "\tMaximum polyphony: %d\n", pLibConfig->maxVoices); */
    [all...]
  /external/sonivox/jet_tools/JetCreator/
eas.py 268 def SetPolyphony (self, polyphony):
269 """Set the polyphony of a stream."""
270 eas_logger.debug('Call EAS_SetPolyphony: polyphony=%d' % polyphony)
272 result = eas_dll.EAS_SetPolyphony(self.eas.handle, self.handle, polyphony)
277 """Get the polyphony of a stream."""
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)
    [all...]

Completed in 332 milliseconds