mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +01:00

Running clang-format with chromium's style guide. The goal is n-fold: * providing consistency and readability (that's what code guidelines are for) * preventing noise with presubmit checks and git cl format * building on the previous point: making it easier to automatically fix format issues * you name it Please consider using git-hyper-blame to ignore this commit. Bug: webrtc:9340 Change-Id: I694567c4cdf8cee2860958cfe82bfaf25848bb87 Reviewed-on: https://webrtc-review.googlesource.com/81185 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23660}
73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
/*
|
|
* Copyright 2004 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
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "pc/bundlefilter.h"
|
|
#include "rtc_base/gunit.h"
|
|
|
|
using cricket::StreamParams;
|
|
|
|
static const int kPayloadType1 = 0x11;
|
|
static const int kPayloadType2 = 0x22;
|
|
static const int kPayloadType3 = 0x33;
|
|
|
|
// SSRC = 0x1111, Payload type = 0x11
|
|
static const unsigned char kRtpPacketPt1Ssrc1[] = {
|
|
0x80, kPayloadType1, 0x00, 0x01, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x11, 0x11,
|
|
};
|
|
|
|
// SSRC = 0x2222, Payload type = 0x22
|
|
static const unsigned char kRtpPacketPt2Ssrc2[] = {
|
|
0x80, 0x80 + kPayloadType2,
|
|
0x00, 0x01,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x22, 0x22,
|
|
};
|
|
|
|
// SSRC = 0x2222, Payload type = 0x33
|
|
static const unsigned char kRtpPacketPt3Ssrc2[] = {
|
|
0x80, kPayloadType3, 0x00, 0x01, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x22, 0x22,
|
|
};
|
|
|
|
// An SCTP packet.
|
|
static const unsigned char kSctpPacket[] = {
|
|
0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,
|
|
0x00, 0x00, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
|
|
};
|
|
|
|
TEST(BundleFilterTest, RtpPacketTest) {
|
|
cricket::BundleFilter bundle_filter;
|
|
bundle_filter.AddPayloadType(kPayloadType1);
|
|
EXPECT_TRUE(bundle_filter.DemuxPacket(kRtpPacketPt1Ssrc1,
|
|
sizeof(kRtpPacketPt1Ssrc1)));
|
|
bundle_filter.AddPayloadType(kPayloadType2);
|
|
EXPECT_TRUE(bundle_filter.DemuxPacket(kRtpPacketPt2Ssrc2,
|
|
sizeof(kRtpPacketPt2Ssrc2)));
|
|
|
|
// Payload type 0x33 is not added.
|
|
EXPECT_FALSE(bundle_filter.DemuxPacket(kRtpPacketPt3Ssrc2,
|
|
sizeof(kRtpPacketPt3Ssrc2)));
|
|
// Size is too small.
|
|
EXPECT_FALSE(bundle_filter.DemuxPacket(kRtpPacketPt1Ssrc1, 11));
|
|
|
|
bundle_filter.ClearAllPayloadTypes();
|
|
EXPECT_FALSE(bundle_filter.DemuxPacket(kRtpPacketPt1Ssrc1,
|
|
sizeof(kRtpPacketPt1Ssrc1)));
|
|
EXPECT_FALSE(bundle_filter.DemuxPacket(kRtpPacketPt2Ssrc2,
|
|
sizeof(kRtpPacketPt2Ssrc2)));
|
|
}
|
|
|
|
TEST(BundleFilterTest, InvalidRtpPacket) {
|
|
cricket::BundleFilter bundle_filter;
|
|
EXPECT_FALSE(bundle_filter.DemuxPacket(kSctpPacket, sizeof(kSctpPacket)));
|
|
}
|