| Index: Source/platform/audio/SincResampler.cpp
|
| diff --git a/Source/platform/audio/SincResampler.cpp b/Source/platform/audio/SincResampler.cpp
|
| index 8a37711f0a4eb058e8c7eb637d28d2f3ae07a598..c0414ebbceac9e6f1e85834881aa9943fe34f3de 100644
|
| --- a/Source/platform/audio/SincResampler.cpp
|
| +++ b/Source/platform/audio/SincResampler.cpp
|
| @@ -146,7 +146,7 @@ namespace {
|
|
|
| // BufferSourceProvider is an AudioSourceProvider wrapping an in-memory buffer.
|
|
|
| -class BufferSourceProvider : public AudioSourceProvider {
|
| +class BufferSourceProvider FINAL : public AudioSourceProvider {
|
| public:
|
| BufferSourceProvider(const float* source, size_t numberOfSourceFrames)
|
| : m_source(source)
|
| @@ -155,7 +155,7 @@ public:
|
| }
|
|
|
| // Consumes samples from the in-memory buffer.
|
| - virtual void provideInput(AudioBus* bus, size_t framesToProcess)
|
| + virtual void provideInput(AudioBus* bus, size_t framesToProcess) OVERRIDE
|
| {
|
| ASSERT(m_source && bus);
|
| if (!m_source || !bus)
|
|
|