diff options
author | andreas128 <Andreas> | 2017-04-06 21:57:07 +0100 |
---|---|---|
committer | andreas128 <Andreas> | 2017-04-06 21:57:07 +0100 |
commit | ebf4bac7c87ec4b7a25fb626a53b8c407d3f446b (patch) | |
tree | fa4640fb2967b08b970de3fdc60b4367d0d3af95 /src/MemlessPoly.h | |
parent | 89ac4f53d0a10d1c07980fae5ddeb8818e7b9733 (diff) | |
download | dabmod-ebf4bac7c87ec4b7a25fb626a53b8c407d3f446b.tar.gz dabmod-ebf4bac7c87ec4b7a25fb626a53b8c407d3f446b.tar.bz2 dabmod-ebf4bac7c87ec4b7a25fb626a53b8c407d3f446b.zip |
Refactor MemlessPoly to have more meaningful names
Diffstat (limited to 'src/MemlessPoly.h')
-rw-r--r-- | src/MemlessPoly.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/MemlessPoly.h b/src/MemlessPoly.h index 33ae202..210b4b4 100644 --- a/src/MemlessPoly.h +++ b/src/MemlessPoly.h @@ -52,7 +52,7 @@ typedef std::complex<float> complexf; class MemlessPoly : public PipelinedModCodec, public RemoteControllable { public: - MemlessPoly(const std::string& taps_file); + MemlessPoly(const std::string& coefs_file); virtual const char* name() { return "MemlessPoly"; } @@ -64,15 +64,15 @@ public: const std::string& parameter) const; //TODO to protected - std::vector<float> m_taps; + std::vector<float> m_coefs; protected: int internal_process(Buffer* const dataIn, Buffer* dataOut); - void load_filter_taps(const std::string &tapsFile); + void load_coefficients(const std::string &coefFile); - std::string m_taps_file; + std::string m_coefs_file; - mutable std::mutex m_taps_mutex; + mutable std::mutex m_coefs_mutex; }; |