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

Unified Diff: ppapi/shared_impl/ppb_audio_config_shared.cc

Issue 23672035: Classify ARM Chromebooks as high latency audio. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_audio_config_shared.cc
===================================================================
--- ppapi/shared_impl/ppb_audio_config_shared.cc (revision 221928)
+++ ppapi/shared_impl/ppb_audio_config_shared.cc (working copy)
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "build/build_config.h"
#include "ppapi/shared_impl/ppb_audio_config_shared.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_instance_api.h"
@@ -81,21 +82,24 @@
// care when modifying these values as they impact a large number of users.
// TODO(dalecurtis): Land jitter test and add documentation for updating this.
- // If client is using same sample rate as audio hardware, then recommend a
- // multiple of the audio hardware's sample frame count.
- if (hardware_sample_rate == sample_rate) {
- return CalculateMultipleOfSampleFrameCount(
- hardware_sample_frame_count, sample_frame_count);
- }
-
// Should track the value reported by XP and ALSA backends.
const uint32_t kHighLatencySampleFrameCount = 2048;
+#if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY)
+ // TODO(ihf): Remove this once ARM Chromebooks support low latency audio. For
+ // now we classify them as high latency. See crbug.com/289770. Note that
+ // Adobe Flash is affected but not HTML5, WebRTC and WebAudio (they are using
+ // real time threads).
+const bool kHighLatencyDevice = true;
DaleCurtis 2013/09/16 16:27:46 indent is wrong.
ilja 2013/09/16 19:15:33 Done.
+#else
+const bool kHighLatencyDevice = false;
+#endif
// If the hardware requires a high latency buffer or we're at a low sample
// rate w/ a buffer that's larger than 10ms, choose the nearest multiple of
// the high latency sample frame count. An example of too low and too large
// is 16kHz and a sample frame count greater than 160 frames.
- if (hardware_sample_frame_count >= kHighLatencySampleFrameCount ||
+ if (kHighLatencyDevice ||
+ hardware_sample_frame_count >= kHighLatencySampleFrameCount ||
(hardware_sample_rate < 44100 &&
hardware_sample_frame_count > hardware_sample_rate / 100u)) {
return CalculateMultipleOfSampleFrameCount(
@@ -103,6 +107,13 @@
std::max(kHighLatencySampleFrameCount, hardware_sample_frame_count));
}
+ // If client is using same sample rate as audio hardware, then recommend a
DaleCurtis 2013/09/16 16:27:46 This will result in a larger than necessary buffer
ilja 2013/09/16 19:15:33 Thanks for clarifying!
+ // multiple of the audio hardware's sample frame count.
+ if (hardware_sample_rate == sample_rate) {
+ return CalculateMultipleOfSampleFrameCount(
+ hardware_sample_frame_count, sample_frame_count);
+ }
+
// All low latency clients should be able to handle a 512 frame buffer with
// resampling from 44.1kHz and 48kHz to higher sample rates.
// TODO(dalecurtis): We may need to investigate making the callback thread
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698