diff options
author | John Glover <john@john-glovers-macbook.local> | 2010-12-17 15:59:42 +0000 |
---|---|---|
committer | John Glover <john@john-glovers-macbook.local> | 2010-12-17 15:59:42 +0000 |
commit | a2704c86955830fda9ef4c8de9dca5ae95eb7f2a (patch) | |
tree | f849ea6610e2f349fe9179fd0ba966f34a196d82 /sms/sms.h | |
parent | 97292e56442aa9442ee8863ea320e6e54c1c6fbf (diff) | |
download | simpl-a2704c86955830fda9ef4c8de9dca5ae95eb7f2a.tar.gz simpl-a2704c86955830fda9ef4c8de9dca5ae95eb7f2a.tar.bz2 simpl-a2704c86955830fda9ef4c8de9dca5ae95eb7f2a.zip |
Added an option in SMS_AnalParams/SMS_SynthParams to enable/disable pre-emphasis (still enabled by default).
Diffstat (limited to 'sms/sms.h')
-rw-r--r-- | sms/sms.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -242,6 +242,7 @@ typedef struct int analDelay; /*! number of frames in the past to be looked in possible re-analyze */ sfloat fResidualAccumPerc; /*!< accumalitive residual percentage */ int sizeNextRead; /*!< size of samples to read from sound file next analysis */ + int preEmphasis; /*!< whether or not to perform pre-emphasis */ sfloat preEmphasisLastValue; SMS_Data prevFrame; /*!< the previous analysis frame */ SMS_SEnvParams specEnvParams; /*!< all data for spectral enveloping */ @@ -306,6 +307,7 @@ typedef struct int origSizeHop; /*!< original number of samples used to create each analysis frame */ int nTracks; int nStochasticCoeff; + int deEmphasis; /*!< whether or not to perform de-emphasis */ sfloat deEmphasisLastValue; sfloat *pFDetWindow; /*!< array to hold the window used for deterministic synthesis \see SMS_WIN_IFFT */ sfloat *pFStocWindow; /*!< array to hold the window used for stochastic synthesis (Hanning) */ |