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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/BiquadProcessor.h

Issue 1978403004: Add UMA histograms for WebAudio (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use CustomCountHistogram Created 4 years, 6 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
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 20 matching lines...) Expand all
31 #include "platform/audio/AudioDSPKernelProcessor.h" 31 #include "platform/audio/AudioDSPKernelProcessor.h"
32 #include "platform/audio/Biquad.h" 32 #include "platform/audio/Biquad.h"
33 #include "wtf/RefPtr.h" 33 #include "wtf/RefPtr.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 // BiquadProcessor is an AudioDSPKernelProcessor which uses Biquad objects to im plement several common filters. 37 // BiquadProcessor is an AudioDSPKernelProcessor which uses Biquad objects to im plement several common filters.
38 38
39 class BiquadProcessor final : public AudioDSPKernelProcessor { 39 class BiquadProcessor final : public AudioDSPKernelProcessor {
40 public: 40 public:
41 // This values are used in histograms and should not be renumbered or delete d.
41 enum FilterType { 42 enum FilterType {
42 LowPass = 0, 43 LowPass = 0,
43 HighPass = 1, 44 HighPass = 1,
44 BandPass = 2, 45 BandPass = 2,
45 LowShelf = 3, 46 LowShelf = 3,
46 HighShelf = 4, 47 HighShelf = 4,
47 Peaking = 5, 48 Peaking = 5,
48 Notch = 6, 49 Notch = 6,
49 Allpass = 7 50 Allpass = 7
50 }; 51 };
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // so DSP kernels know when to re-compute coefficients 85 // so DSP kernels know when to re-compute coefficients
85 bool m_filterCoefficientsDirty; 86 bool m_filterCoefficientsDirty;
86 87
87 // Set to true if any of the filter parameters are sample-accurate. 88 // Set to true if any of the filter parameters are sample-accurate.
88 bool m_hasSampleAccurateValues; 89 bool m_hasSampleAccurateValues;
89 }; 90 };
90 91
91 } // namespace blink 92 } // namespace blink
92 93
93 #endif // BiquadProcessor_h 94 #endif // BiquadProcessor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698