Browse Source

option_waveout is no longer used in libespeak-ng, so remove it

master
Reece H. Dunn 9 years ago
parent
commit
914e64aba8
3 changed files with 1 additions and 4 deletions
  1. 0
    1
      src/libespeak-ng/speech.c
  2. 0
    1
      src/libespeak-ng/translate.h
  3. 1
    2
      src/libespeak-ng/wavegen.c

+ 0
- 1
src/libespeak-ng/speech.c View File

@@ -223,7 +223,6 @@ ESPEAK_NG_API espeak_ng_STATUS espeak_ng_InitializeOutput(espeak_ng_OUTPUT_MODE
option_device = device;
my_mode = output_mode;
my_audio = NULL;
option_waveout = 1; // inhibit portaudio callback from wavegen.cpp
out_samplerate = 0;

// buflength is in mS, allocate 2 bytes per sample

+ 0
- 1
src/libespeak-ng/translate.h View File

@@ -656,7 +656,6 @@ extern int option_tone2;
#define OPTION_EMPHASIZE_ALLCAPS 0x100
#define OPTION_EMPHASIZE_PENULTIMATE 0x200
extern int option_tone_flags;
extern int option_waveout;
extern int option_quiet;
extern int option_phonemes;
extern int option_phoneme_events;

+ 1
- 2
src/libespeak-ng/wavegen.c View File

@@ -58,7 +58,6 @@
voice_t *wvoice;

FILE *f_log = NULL;
int option_waveout = 0;
static int option_harmonic1 = 10;
static int flutter_amp = 64;

@@ -514,7 +513,7 @@ int WavegenOpenSound()
PaError err, err2;
PaError active;

if (option_waveout || option_quiet) {
if (option_quiet) {
// writing to WAV file, not to portaudio
return 0;
}

Loading…
Cancel
Save