| Index: media/audio/win/audio_low_latency_output_win_unittest.cc
|
| diff --git a/media/audio/win/audio_low_latency_output_win_unittest.cc b/media/audio/win/audio_low_latency_output_win_unittest.cc
|
| index 42fca4d15a52ad3de0a8693d0c54b65e3c1b4e34..e9bc56cbaabb3e9e4aac544f0339f4d8f958c4bb 100644
|
| --- a/media/audio/win/audio_low_latency_output_win_unittest.cc
|
| +++ b/media/audio/win/audio_low_latency_output_win_unittest.cc
|
| @@ -483,13 +483,13 @@ TEST(WASAPIAudioOutputStreamTest, DISABLED_ReadFromStereoFile) {
|
| }
|
| ReadFromFileAudioSource file_source(file_name);
|
|
|
| - LOG(INFO) << "File name : " << file_name.c_str();
|
| - LOG(INFO) << "Sample rate : " << aosw.sample_rate();
|
| - LOG(INFO) << "Bits per sample: " << aosw.bits_per_sample();
|
| - LOG(INFO) << "#channels : " << aosw.channels();
|
| - LOG(INFO) << "File size : " << file_source.file_size();
|
| - LOG(INFO) << "#file segments : " << kNumFileSegments;
|
| - LOG(INFO) << ">> Listen to the stereo file while playing...";
|
| + VLOG(0) << "File name : " << file_name.c_str();
|
| + VLOG(0) << "Sample rate : " << aosw.sample_rate();
|
| + VLOG(0) << "Bits per sample: " << aosw.bits_per_sample();
|
| + VLOG(0) << "#channels : " << aosw.channels();
|
| + VLOG(0) << "File size : " << file_source.file_size();
|
| + VLOG(0) << "#file segments : " << kNumFileSegments;
|
| + VLOG(0) << ">> Listen to the stereo file while playing...";
|
|
|
| for (int i = 0; i < kNumFileSegments; i++) {
|
| // Each segment will start with a short (~20ms) block of zeros, hence
|
| @@ -502,7 +502,7 @@ TEST(WASAPIAudioOutputStreamTest, DISABLED_ReadFromStereoFile) {
|
| aos->Stop();
|
| }
|
|
|
| - LOG(INFO) << ">> Stereo file playout has stopped.";
|
| + VLOG(0) << ">> Stereo file playout has stopped.";
|
| aos->Close();
|
| }
|
|
|
|
|