From 4cb060127cc7a43ac7ec1c093a0e4980c10e71bc Mon Sep 17 00:00:00 2001 From: "mflodman@webrtc.org" Date: Fri, 17 Feb 2012 13:07:01 +0000 Subject: [PATCH] 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 --- src/modules/rtp_rtcp/source/vp8_partition_aggregator.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modules/rtp_rtcp/source/vp8_partition_aggregator.cc b/src/modules/rtp_rtcp/source/vp8_partition_aggregator.cc index 22d24d8d44..6d5bb75ad0 100644 --- a/src/modules/rtp_rtcp/source/vp8_partition_aggregator.cc +++ b/src/modules/rtp_rtcp/source/vp8_partition_aggregator.cc @@ -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; }