| Index: webrtc/modules/utility/source/audio_frame_operations.cc
|
| diff --git a/webrtc/modules/utility/source/audio_frame_operations.cc b/webrtc/modules/utility/source/audio_frame_operations.cc
|
| index 435d676f13ac81dfffed1d72f620088369dd2bae..102407d0f0f0fd223f6eaf9836dfa2b18278a5f7 100644
|
| --- a/webrtc/modules/utility/source/audio_frame_operations.cc
|
| +++ b/webrtc/modules/utility/source/audio_frame_operations.cc
|
| @@ -80,7 +80,6 @@ void AudioFrameOperations::SwapStereoChannels(AudioFrame* frame) {
|
| void AudioFrameOperations::Mute(AudioFrame* frame, bool previous_frame_muted,
|
| bool current_frame_muted) {
|
| RTC_DCHECK(frame);
|
| - RTC_DCHECK(frame->interleaved_);
|
| if (!previous_frame_muted && !current_frame_muted) {
|
| // Not muted, don't touch.
|
| } else if (previous_frame_muted && current_frame_muted) {
|
|
|