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

Unified Diff: media/audio/mac/audio_auhal_mac.cc

Issue 13403002: Add OSX aggregate audio device support for best performance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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: media/audio/mac/audio_auhal_mac.cc
===================================================================
--- media/audio/mac/audio_auhal_mac.cc (revision 191870)
+++ media/audio/mac/audio_auhal_mac.cc (working copy)
@@ -76,10 +76,12 @@
// We must have a manager.
DCHECK(manager_);
- DVLOG(1) << "Input channels: " << input_channels_;
- DVLOG(1) << "Output channels: " << output_channels_;
- DVLOG(1) << "Sample rate: " << params_.sample_rate();
- DVLOG(1) << "Buffer size: " << number_of_frames_;
+ VLOG(1) << "AUHALStream::AUHALStream()";
+ VLOG(1) << "Device: " << device;
+ VLOG(1) << "Input channels: " << input_channels_;
+ VLOG(1) << "Output channels: " << output_channels_;
+ VLOG(1) << "Sample rate: " << params_.sample_rate();
+ VLOG(1) << "Buffer size: " << number_of_frames_;
}
AUHALStream::~AUHALStream() {

Powered by Google App Engine
This is Rietveld 408576698