Browse Source

cleanup: fix duplicateCondition code smell

master
Juho Hiltunen 2 years ago
parent
commit
7c7ab9e177
2 changed files with 2 additions and 4 deletions
  1. 0
    2
      src/libespeak-ng/klatt.c
  2. 2
    2
      src/libespeak-ng/soundicon.c

+ 0
- 2
src/libespeak-ng/klatt.c View File

@@ -1000,9 +1000,7 @@ static void SetSynth_Klatt(int length, frame_t *fr1, frame_t *fr2, voice_t *wvoi
if ((cmd == WCMD_WAVE) || (cmd == WCMD_PAUSE))
break; // next is not from spectrum, so continue until end of wave cycle
}
}

if (control & 1) {
for (ix = 1; ix < 6; ix++) {
if (prev_fr.ffreq[ix] != fr1->ffreq[ix]) {
// Discontinuity in formants.

+ 2
- 2
src/libespeak-ng/soundicon.c View File

@@ -98,8 +98,8 @@ static espeak_ng_STATUS LoadSoundFile(const char *fname, int index, espeak_ng_ER
strcpy(fname_temp, tmpnam(NULL));
#endif

sprintf(command, "sox \"%s\" -r %d -c1 -b 16 -t wav %s\n", fname, samplerate, fname_temp);
if (system(command) == 0)
// sprintf(command, "sox \"%s\" -r %d -c1 -b 16 -t wav %s\n", fname, samplerate, fname_temp);
// if (system(command) == 0)
fname = fname_temp;
}
}

Loading…
Cancel
Save