Lines Matching defs:rate
55 /* speaking rate */
94 const char * picoSupportedProperties[] = { "language", "rate", "pitch", "volume" };
114 int picoProp_currRate = PICO_DEF_RATE; /* current rate */
539 if (picoProp_currRate != PICO_DEF_RATE) { /* non-default rate */
1289 * @rate - reference to sample rate
1293 tts_result TtsEngine::setAudioFormat(tts_audio_format& encoding, uint32_t& rate,
1298 rate = 16000;
1305 * Set property. The supported properties are: language, rate, pitch and volume.
1313 int rate;
1318 Supported properties include: language (locale), rate, pitch, volume. */
1344 } else if (strncmp(property, "rate", 4) == 0) {
1345 rate = atoi(value);
1346 if (rate < PICO_MIN_RATE) {
1347 rate = PICO_MIN_RATE;
1349 if (rate > PICO_MAX_RATE) {
1350 rate = PICO_MAX_RATE;
1352 picoProp_currRate = rate;
1381 * Get the property. Supported properties are: language, rate
1413 } else if (strncmp(property, "rate", 4) == 0) {