| Index: webrtc/common_audio/wav_file.cc
 | 
| diff --git a/webrtc/common_audio/wav_file.cc b/webrtc/common_audio/wav_file.cc
 | 
| index 8dae7d6e98cb2fe17145bb435620c0de65ce453d..b14b6208a4bc14d6867bb302d9071ea07c4a0a11 100644
 | 
| --- a/webrtc/common_audio/wav_file.cc
 | 
| +++ b/webrtc/common_audio/wav_file.cc
 | 
| @@ -37,9 +37,17 @@ class ReadableWavFile : public ReadableWav {
 | 
|    FILE* file_;
 | 
|  };
 | 
|  
 | 
| +std::string WavFile::FormatAsString() const {
 | 
| +  std::ostringstream s;
 | 
| +  s << "Sample rate: " << sample_rate() << " Hz, Channels: " << num_channels()
 | 
| +    << ", Duration: "
 | 
| +    << (1.f * num_samples()) / (num_channels() * sample_rate()) << " s";
 | 
| +  return s.str();
 | 
| +}
 | 
| +
 | 
|  WavReader::WavReader(const std::string& filename)
 | 
|      : file_handle_(fopen(filename.c_str(), "rb")) {
 | 
| -  RTC_CHECK(file_handle_ && "Could not open wav file for reading.");
 | 
| +  RTC_CHECK(file_handle_) << "Could not open wav file for reading.";
 | 
|  
 | 
|    ReadableWavFile readable(file_handle_);
 | 
|    WavFormat format;
 | 
| @@ -96,7 +104,7 @@ WavWriter::WavWriter(const std::string& filename, int sample_rate,
 | 
|        num_channels_(num_channels),
 | 
|        num_samples_(0),
 | 
|        file_handle_(fopen(filename.c_str(), "wb")) {
 | 
| -  RTC_CHECK(file_handle_ && "Could not open wav file for writing.");
 | 
| +  RTC_CHECK(file_handle_) << "Could not open wav file for writing.";
 | 
|    RTC_CHECK(CheckWavParameters(num_channels_, sample_rate_, kWavFormat,
 | 
|                                 kBytesPerSample, num_samples_));
 | 
|  
 | 
| 
 |