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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp

Issue 2334773003: Support sample rates up to 384 kHz. (Closed)
Patch Set: Rebase and fix up histograms.xml Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp b/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
index 3471a45c7734955b1093d2787f6e6a79273fd218..c0ce506322ea76ace54c804729dcf94716615108 100644
--- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
@@ -111,7 +111,7 @@ OfflineAudioContext* OfflineAudioContext::create(
// fairly arbitrary.
DEFINE_STATIC_LOCAL(
CustomCountHistogram, offlineContextSampleRateHistogram,
- ("WebAudio.OfflineAudioContext.SampleRate", 3000, 192000, 50));
+ ("WebAudio.OfflineAudioContext.SampleRate384kHz", 3000, 384000, 50));
offlineContextChannelCountHistogram.sample(numberOfChannels);
offlineContextLengthHistogram.count(numberOfFrames);

Powered by Google App Engine
This is Rietveld 408576698