| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 | 26 |
| 27 #if ENABLE(WEB_AUDIO) | 27 #if ENABLE(WEB_AUDIO) |
| 28 | 28 |
| 29 #include "platform/audio/AudioResampler.h" | 29 #include "platform/audio/AudioResampler.h" |
| 30 | 30 |
| 31 #include <algorithm> | 31 #include <algorithm> |
| 32 #include "wtf/MathExtras.h" | 32 #include "wtf/MathExtras.h" |
| 33 | 33 |
| 34 using namespace std; | |
| 35 | |
| 36 namespace blink { | 34 namespace blink { |
| 37 | 35 |
| 38 const double AudioResampler::MaxRate = 8.0; | 36 const double AudioResampler::MaxRate = 8.0; |
| 39 | 37 |
| 40 AudioResampler::AudioResampler() | 38 AudioResampler::AudioResampler() |
| 41 : m_rate(1.0) | 39 : m_rate(1.0) |
| 42 { | 40 { |
| 43 m_kernels.append(adoptPtr(new AudioResamplerKernel(this))); | 41 m_kernels.append(adoptPtr(new AudioResamplerKernel(this))); |
| 44 m_sourceBus = AudioBus::create(1, 0, false); | 42 m_sourceBus = AudioBus::create(1, 0, false); |
| 45 } | 43 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 float* destination = destinationBus->channel(i)->mutableData(); | 103 float* destination = destinationBus->channel(i)->mutableData(); |
| 106 m_kernels[i]->process(destination, framesToProcess); | 104 m_kernels[i]->process(destination, framesToProcess); |
| 107 } | 105 } |
| 108 } | 106 } |
| 109 | 107 |
| 110 void AudioResampler::setRate(double rate) | 108 void AudioResampler::setRate(double rate) |
| 111 { | 109 { |
| 112 if (std::isnan(rate) || std::isinf(rate) || rate <= 0.0) | 110 if (std::isnan(rate) || std::isinf(rate) || rate <= 0.0) |
| 113 return; | 111 return; |
| 114 | 112 |
| 115 m_rate = min(AudioResampler::MaxRate, rate); | 113 m_rate = std::min(AudioResampler::MaxRate, rate); |
| 116 } | 114 } |
| 117 | 115 |
| 118 void AudioResampler::reset() | 116 void AudioResampler::reset() |
| 119 { | 117 { |
| 120 unsigned numberOfChannels = m_kernels.size(); | 118 unsigned numberOfChannels = m_kernels.size(); |
| 121 for (unsigned i = 0; i < numberOfChannels; ++i) | 119 for (unsigned i = 0; i < numberOfChannels; ++i) |
| 122 m_kernels[i]->reset(); | 120 m_kernels[i]->reset(); |
| 123 } | 121 } |
| 124 | 122 |
| 125 } // namespace blink | 123 } // namespace blink |
| 126 | 124 |
| 127 #endif // ENABLE(WEB_AUDIO) | 125 #endif // ENABLE(WEB_AUDIO) |
| OLD | NEW |