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:
@ -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)
|
||||
|
Reference in New Issue
Block a user