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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #include "core/platform/audio/AudioDSPKernelProcessor.h" | 28 #include "core/platform/audio/AudioDSPKernelProcessor.h" |
29 #include "modules/webaudio/AudioParam.h" | 29 #include "modules/webaudio/AudioParam.h" |
30 | 30 |
31 #include "wtf/PassOwnPtr.h" | 31 #include "wtf/PassOwnPtr.h" |
32 #include "wtf/RefPtr.h" | 32 #include "wtf/RefPtr.h" |
33 | 33 |
34 namespace WebCore { | 34 namespace WebCore { |
35 | 35 |
36 class AudioDSPKernel; | 36 class AudioDSPKernel; |
37 | 37 |
38 class DelayProcessor : public AudioDSPKernelProcessor { | 38 class DelayProcessor : public AudioDSPKernelProcessor { |
39 public: | 39 public: |
40 DelayProcessor(AudioContext*, float sampleRate, unsigned numberOfChannels, d
ouble maxDelayTime); | 40 DelayProcessor(AudioContext*, float sampleRate, unsigned numberOfChannels, d
ouble maxDelayTime); |
41 virtual ~DelayProcessor(); | 41 virtual ~DelayProcessor(); |
42 | 42 |
43 virtual PassOwnPtr<AudioDSPKernel> createKernel(); | 43 virtual PassOwnPtr<AudioDSPKernel> createKernel(); |
44 | 44 |
45 AudioParam* delayTime() const { return m_delayTime.get(); } | 45 AudioParam* delayTime() const { return m_delayTime.get(); } |
46 | 46 |
47 double maxDelayTime() { return m_maxDelayTime; } | 47 double maxDelayTime() { return m_maxDelayTime; } |
48 private: | 48 private: |
49 | 49 |
50 RefPtr<AudioParam> m_delayTime; | 50 RefPtr<AudioParam> m_delayTime; |
51 double m_maxDelayTime; | 51 double m_maxDelayTime; |
52 }; | 52 }; |
53 | 53 |
54 } // namespace WebCore | 54 } // namespace WebCore |
55 | 55 |
56 #endif // DelayProcessor_h | 56 #endif // DelayProcessor_h |
OLD | NEW |