Lines Matching refs:rtp
29 recv_config.rtp.remote_ssrc = 100; in TEST()
30 recv_config.rtp.local_ssrc = 101; in TEST()
31 recv_config.rtp.rtcp_mode = RtcpMode::kCompound; in TEST()
32 recv_config.rtp.transport_cc = false; in TEST()
33 recv_config.rtp.lntf.enabled = false; in TEST()
34 recv_config.rtp.nack.rtp_history_ms = 150; in TEST()
35 recv_config.rtp.red_payload_type = 50; in TEST()
36 recv_config.rtp.rtx_ssrc = 1000; in TEST()
37 recv_config.rtp.rtx_associated_payload_types[10] = 10; in TEST()
38 recv_config.rtp.extensions.emplace_back("uri", 128, true); in TEST()
52 EXPECT_EQ(recv_config.rtp.remote_ssrc, unmarshaled_config.rtp.remote_ssrc); in TEST()
53 EXPECT_EQ(recv_config.rtp.local_ssrc, unmarshaled_config.rtp.local_ssrc); in TEST()
54 EXPECT_EQ(recv_config.rtp.rtcp_mode, unmarshaled_config.rtp.rtcp_mode); in TEST()
55 EXPECT_EQ(recv_config.rtp.transport_cc, unmarshaled_config.rtp.transport_cc); in TEST()
56 EXPECT_EQ(recv_config.rtp.lntf.enabled, unmarshaled_config.rtp.lntf.enabled); in TEST()
57 EXPECT_EQ(recv_config.rtp.nack.rtp_history_ms, in TEST()
58 unmarshaled_config.rtp.nack.rtp_history_ms); in TEST()
59 EXPECT_EQ(recv_config.rtp.red_payload_type, in TEST()
60 unmarshaled_config.rtp.red_payload_type); in TEST()
61 EXPECT_EQ(recv_config.rtp.rtx_ssrc, unmarshaled_config.rtp.rtx_ssrc); in TEST()
62 EXPECT_EQ(recv_config.rtp.rtx_associated_payload_types, in TEST()
63 unmarshaled_config.rtp.rtx_associated_payload_types); in TEST()
64 EXPECT_EQ(recv_config.rtp.extensions, recv_config.rtp.extensions); in TEST()