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

Unified Diff: third_party/WebKit/Source/platform/audio/AudioDestination.cpp

Issue 2583653002: Log WebAudio context buffer sizes on Android (Closed)
Patch Set: Created 4 years 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: third_party/WebKit/Source/platform/audio/AudioDestination.cpp
diff --git a/third_party/WebKit/Source/platform/audio/AudioDestination.cpp b/third_party/WebKit/Source/platform/audio/AudioDestination.cpp
index 381ed49953a673ce23bd236853721e2fcf41a589..a5a36001643dd5f998704dca86cf8afd0d537cb8 100644
--- a/third_party/WebKit/Source/platform/audio/AudioDestination.cpp
+++ b/third_party/WebKit/Source/platform/audio/AudioDestination.cpp
@@ -100,6 +100,9 @@ AudioDestination::AudioDestination(AudioIOCallback& callback,
if (m_callbackBufferSize <= kSmallBufferSize)
m_callbackBufferSize = kDefaultCallbackBufferSize;
+
+ LOG(INFO) << "audioHardwareBufferSize = " << recommendedHardwareBufferSize;
+ LOG(INFO) << "callbackBufferSize = " << m_callbackBufferSize;
#endif
// Quick exit if the requested size is too large.
« 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