diff options
Diffstat (limited to 'common/polyphase_resampler.h')
-rw-r--r-- | common/polyphase_resampler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/polyphase_resampler.h b/common/polyphase_resampler.h index e9833d12..0b343d5a 100644 --- a/common/polyphase_resampler.h +++ b/common/polyphase_resampler.h @@ -4,6 +4,8 @@ #include <vector> +using uint = unsigned int; + /* This is a polyphase sinc-filtered resampler. It is built for very high * quality results, rather than real-time performance. * @@ -32,8 +34,6 @@ */ struct PPhaseResampler { - using uint = unsigned int; - void init(const uint srcRate, const uint dstRate); void process(const uint inN, const double *in, const uint outN, double *out); |