Browse Source

compiledata: Display the actual error from phoneme_add_feature.

master
Reece H. Dunn 8 years ago
parent
commit
b4297c2851
2 changed files with 14 additions and 2 deletions
  1. 1
    0
      CHANGELOG.md
  2. 13
    2
      src/libespeak-ng/compiledata.c

+ 1
- 0
CHANGELOG.md View File

### 1.49.2 - (In Development) ### 1.49.2 - (In Development)


* Support describing all IPA phonemes in the phoneme tables. * Support describing all IPA phonemes in the phoneme tables.
* Provide more validation when compiling phoneme tables.
* Removed support for phoneme equivalence tables. These were disabled in the * Removed support for phoneme equivalence tables. These were disabled in the
French and German language files. French and German language files.



+ 13
- 2
src/libespeak-ng/compiledata.c View File

va_end(args); va_end(args);
} }


static void error_from_status(espeak_ng_STATUS status, const char *context)
{
char message[512];
espeak_ng_GetStatusCodeMessage(status, message, sizeof(message));
if (context)
error("%s: '%s'.", message, context);
else
error("%s.", message);
}

static unsigned int StringToWord(const char *string) static unsigned int StringToWord(const char *string)
{ {
// Pack 4 characters into a word // Pack 4 characters into a word
} }


phoneme_feature_t feature = phoneme_feature_from_string(item_string); phoneme_feature_t feature = phoneme_feature_from_string(item_string);
if (phoneme_add_feature(phoneme_out, feature) == ENS_OK)
espeak_ng_STATUS status = phoneme_add_feature(phoneme_out, feature);
if (status == ENS_OK)
continue; continue;
error("Bad keyword in phoneme definition '%s'", item_string);
error_from_status(status, item_string);
continue; continue;
} }



Loading…
Cancel
Save