Searched refs:InferRtpPacketType (Results 1 – 4 of 4) sorted by relevance
296 TEST(RtpUtilsTest, InferRtpPacketType) { in TEST() argument297 EXPECT_EQ(RtpPacketType::kRtp, InferRtpPacketType(kPcmuFrameArrayView)); in TEST()298 EXPECT_EQ(RtpPacketType::kRtcp, InferRtpPacketType(kRtcpReportArrayView)); in TEST()300 InferRtpPacketType(kInvalidPacketArrayView)); in TEST()
49 RtpPacketType InferRtpPacketType(rtc::ArrayView<const char> packet);
175 RtpPacketType InferRtpPacketType(rtc::ArrayView<const char> packet) { in InferRtpPacketType() function
251 cricket::RtpPacketType packet_type = cricket::InferRtpPacketType(array_view); in OnReadPacket()