Skip to content
This repository has been archived by the owner on Feb 8, 2025. It is now read-only.

Commit

Permalink
Fixed formant filter breaking.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtytel committed Aug 2, 2016
1 parent 6dbcd64 commit e03e2a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/synthesis/helm_voice_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ namespace mopo {
cr::Value(Filter::kGainedBandPass)
};

static const cr::Value formant_a_decibels(-4.0f);
static const cr::Value formant_e_decibels(-2.0f);
static const cr::Value formant_i_decibels(-2.0f);
static const cr::Value formant_o_decibels(-4.0f);
static const cr::Value formant_u_decibels(-2.0f);
static const Value formant_a_decibels(-4.0f);
static const Value formant_e_decibels(-2.0f);
static const Value formant_i_decibels(-2.0f);
static const Value formant_o_decibels(-4.0f);
static const Value formant_u_decibels(-2.0f);

static const FormantValues formant_a[NUM_FORMANTS] = {
{cr::Value(24), cr::Value(10), cr::Value(75.7552343327)},
Expand Down

0 comments on commit e03e2a3

Please sign in to comment.