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

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

Issue 64643010: Remove duplicated headers from platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/platform/audio/HRTFKernel.cpp ('k') | Source/platform/audio/Reverb.cpp » ('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 12 matching lines...) Expand all
23 */ 23 */
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/HRTFPanner.h" 29 #include "platform/audio/HRTFPanner.h"
30 30
31 #include <algorithm> 31 #include <algorithm>
32 #include "platform/audio/AudioBus.h" 32 #include "platform/audio/AudioBus.h"
33 #include "platform/audio/FFTConvolver.h"
34 #include "platform/audio/HRTFDatabase.h" 33 #include "platform/audio/HRTFDatabase.h"
35 #include "wtf/MathExtras.h" 34 #include "wtf/MathExtras.h"
36 #include "wtf/RefPtr.h" 35 #include "wtf/RefPtr.h"
37 36
38 using namespace std; 37 using namespace std;
39 38
40 namespace WebCore { 39 namespace WebCore {
41 40
42 // The value of 2 milliseconds is larger than the largest delay which exists in any HRTFKernel from the default HRTFDatabase (0.0136 seconds). 41 // The value of 2 milliseconds is larger than the largest delay which exists in any HRTFKernel from the default HRTFDatabase (0.0136 seconds).
43 // We ASSERT the delay values used in process() with this value. 42 // We ASSERT the delay values used in process() with this value.
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 double HRTFPanner::latencyTime() const 304 double HRTFPanner::latencyTime() const
306 { 305 {
307 // The latency of a FFTConvolver is also fftSize() / 2, and is in addition t o its tailTime of the 306 // The latency of a FFTConvolver is also fftSize() / 2, and is in addition t o its tailTime of the
308 // same value. 307 // same value.
309 return (fftSize() / 2) / static_cast<double>(sampleRate()); 308 return (fftSize() / 2) / static_cast<double>(sampleRate());
310 } 309 }
311 310
312 } // namespace WebCore 311 } // namespace WebCore
313 312
314 #endif // ENABLE(WEB_AUDIO) 313 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « Source/platform/audio/HRTFKernel.cpp ('k') | Source/platform/audio/Reverb.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698