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

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

Issue 730083002: [media/audio] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « media/audio/audio_manager_unittest.cc ('k') | media/audio/win/audio_device_listener_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/mac/audio_auhal_mac.cc
diff --git a/media/audio/mac/audio_auhal_mac.cc b/media/audio/mac/audio_auhal_mac.cc
index a199eb93f018bad5ffe7a4487050eff03e9c3860..8c603cd03af18648cc7b4074f27b7b5ea106da99 100644
--- a/media/audio/mac/audio_auhal_mac.cc
+++ b/media/audio/mac/audio_auhal_mac.cc
@@ -55,11 +55,11 @@ AUHALStream::AUHALStream(
// We must have a manager.
DCHECK(manager_);
- VLOG(1) << "AUHALStream::AUHALStream()";
- VLOG(1) << "Device: " << device;
- VLOG(1) << "Output channels: " << output_channels_;
- VLOG(1) << "Sample rate: " << params_.sample_rate();
- VLOG(1) << "Buffer size: " << number_of_frames_;
+ DVLOG(1) << "AUHALStream::AUHALStream()";
+ DVLOG(1) << "Device: " << device;
+ DVLOG(1) << "Output channels: " << output_channels_;
+ DVLOG(1) << "Sample rate: " << params_.sample_rate();
+ DVLOG(1) << "Buffer size: " << number_of_frames_;
}
AUHALStream::~AUHALStream() {
@@ -193,8 +193,9 @@ OSStatus AUHALStream::Render(
if (number_of_frames != number_of_frames_) {
// Create a FIFO on the fly to handle any discrepancies in callback rates.
if (!audio_fifo_) {
- VLOG(1) << "Audio frame size changed from " << number_of_frames_ << " to "
- << number_of_frames << "; adding FIFO to compensate.";
+ DVLOG(1) << "Audio frame size changed from " << number_of_frames_
+ << " to " << number_of_frames
+ << "; adding FIFO to compensate.";
audio_fifo_.reset(new AudioPullFifo(
output_channels_,
number_of_frames_,
« no previous file with comments | « media/audio/audio_manager_unittest.cc ('k') | media/audio/win/audio_device_listener_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698