Searched refs:polyphony (Results 1 - 4 of 4) sorted by relevance

/external/sonivox/arm-fm-22k/host_src/
H A Deas_main.c50 EAS_I32 polyphony; variable
257 polyphony = atoi(&argv[i][2]);
258 if (polyphony < 1)
259 polyphony = 1;
260 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "Polyphony set to %d\n", polyphony); */ }
276 if (polyphony > pLibConfig->maxVoices)
277 polyphony = pLibConfig->maxVoices;
291 polyphony = pLibConfig->maxVoices;
437 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "\tMaximum polyphony: %d\n", pLibConfig->maxVoices); */ }
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_main.c50 EAS_I32 polyphony; variable
257 polyphony = atoi(&argv[i][2]);
258 if (polyphony < 1)
259 polyphony = 1;
260 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "Polyphony set to %d\n", polyphony); */ }
276 if (polyphony > pLibConfig->maxVoices)
277 polyphony = pLibConfig->maxVoices;
291 polyphony = pLibConfig->maxVoices;
437 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "\tMaximum polyphony: %d\n", pLibConfig->maxVoices); */ }
/external/sonivox/arm-wt-22k/host_src/
H A Deas_main.c50 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); */ }
/external/sonivox/jet_tools/JetCreator/
H A Deas.py268 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
[all...]

Completed in 289 milliseconds