Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: Source/platform/audio/AudioDelayDSPKernel.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/audio/AudioDelayDSPKernel.h ('k') | Source/platform/audio/AudioDestination.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
27 #if ENABLE(WEB_AUDIO) 27 #if ENABLE(WEB_AUDIO)
28 28
29 #include "platform/audio/AudioDelayDSPKernel.h" 29 #include "platform/audio/AudioDelayDSPKernel.h"
30 30
31 #include "platform/audio/AudioUtilities.h" 31 #include "platform/audio/AudioUtilities.h"
32 #include "wtf/MathExtras.h" 32 #include "wtf/MathExtras.h"
33 #include <algorithm> 33 #include <algorithm>
34 34
35 using namespace std; 35 using namespace std;
36 36
37 namespace WebCore { 37 namespace blink {
38 38
39 const float SmoothingTimeConstant = 0.020f; // 20ms 39 const float SmoothingTimeConstant = 0.020f; // 20ms
40 40
41 AudioDelayDSPKernel::AudioDelayDSPKernel(AudioDSPKernelProcessor* processor, siz e_t processingSizeInFrames) 41 AudioDelayDSPKernel::AudioDelayDSPKernel(AudioDSPKernelProcessor* processor, siz e_t processingSizeInFrames)
42 : AudioDSPKernel(processor) 42 : AudioDSPKernel(processor)
43 , m_writeIndex(0) 43 , m_writeIndex(0)
44 , m_firstTime(true) 44 , m_firstTime(true)
45 , m_delayTimes(processingSizeInFrames) 45 , m_delayTimes(processingSizeInFrames)
46 { 46 {
47 } 47 }
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 // Account for worst case delay. 170 // Account for worst case delay.
171 // Don't try to track actual delay time which can change dynamically. 171 // Don't try to track actual delay time which can change dynamically.
172 return m_maxDelayTime; 172 return m_maxDelayTime;
173 } 173 }
174 174
175 double AudioDelayDSPKernel::latencyTime() const 175 double AudioDelayDSPKernel::latencyTime() const
176 { 176 {
177 return 0; 177 return 0;
178 } 178 }
179 179
180 } // namespace WebCore 180 } // namespace blink
181 181
182 #endif // ENABLE(WEB_AUDIO) 182 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « Source/platform/audio/AudioDelayDSPKernel.h ('k') | Source/platform/audio/AudioDestination.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698