Revert r7858 ("DCHECK: Reference condition parameter in release builds")

Apparently Visual Studio is cleverer than I am at figuring out what
local variables are actually unused.

TBR=pbos@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/32739004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7859 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kwiberg@webrtc.org
2014-12-10 08:57:14 +00:00
parent 3148060e61
commit 3cd26b677a
2 changed files with 14 additions and 17 deletions

View File

@ -60,7 +60,7 @@ bool AudioEncoderIlbc::EncodeInternal(uint32_t timestamp,
EncodedInfo* info) {
const size_t expected_output_len =
num_10ms_frames_per_packet_ == 2 ? 38 : 50;
DCHECK_GE(max_encoded_bytes, expected_output_len);
CHECK_GE(max_encoded_bytes, expected_output_len);
// Save timestamp if starting a new packet.
if (num_10ms_frames_buffered_ == 0)