Home | History | Annotate | Download | only in tts

Lines Matching defs:volume

62 /* speaking volume  */
76 const char * PICO_VOLUME_OPEN_TAG = "<volume level='%d'>";
77 const char * PICO_VOLUME_CLOSE_TAG = "</volume>";
93 const char * picoSupportedProperties[] = { "language", "rate", "pitch", "volume" };
115 int picoProp_currVolume = PICO_DEF_VOLUME; /* current volume */
520 * Add <speed>, <pitch> and <volume> tags to the text,
544 if (picoProp_currVolume != PICO_DEF_VOLUME) { /* non-default volume */
1310 * Set property. The supported properties are: language, rate, pitch and volume.
1320 int volume;
1323 Supported properties include: language (locale), rate, pitch, volume. */
1369 } else if (strncmp(property, "volume", 6) == 0) {
1370 volume = atoi(value);
1371 if (volume < PICO_MIN_VOLUME) {
1372 volume = PICO_MIN_VOLUME;
1374 volume > PICO_MAX_VOLUME) {
1375 volume = PICO_MAX_VOLUME;
1377 picoProp_currVolume = volume;
1386 * Get the property. Supported properties are: language, rate, pitch and volume.
1436 } else if (strncmp(property, "volume", 6) == 0) {