Disabled RTPModule VP8 packetizer assert.

BUG=293

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1715 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
mflodman@webrtc.org 2012-02-17 13:07:01 +00:00
parent 8bfee84144
commit 4cb060127c

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
@ -259,7 +259,8 @@ int Vp8PartitionAggregator::CalcNumberOfFragments(int large_partition_size,
}
}
assert(num_fragments > 0);
assert(large_partition_size / num_fragments + 1 <= max_payload_size);
// TODO(mflodman) Assert disabled since it's falsely triggered, see issue 293.
//assert(large_partition_size / num_fragments + 1 <= max_payload_size);
return num_fragments;
}