Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Unified Diff: media/cast/net/rtcp/test_rtcp_packet_builder.h

Issue 1709863002: Add Cast PLI support on sender side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address dcheng's comments. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/net/rtcp/sender_rtcp_session.cc ('k') | media/cast/net/rtcp/test_rtcp_packet_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/rtcp/test_rtcp_packet_builder.h
diff --git a/media/cast/net/rtcp/test_rtcp_packet_builder.h b/media/cast/net/rtcp/test_rtcp_packet_builder.h
index 04e870fd5f528664484cbdac775b3ff1b3dd7f6c..0235869ad718a74c632f7df30dc396e781830348 100644
--- a/media/cast/net/rtcp/test_rtcp_packet_builder.h
+++ b/media/cast/net/rtcp/test_rtcp_packet_builder.h
@@ -56,31 +56,32 @@ class TestRtcpPacketBuilder {
public:
TestRtcpPacketBuilder();
- void AddSr(uint32_t sender_ssrc, int number_of_report_blocks);
- void AddSrWithNtp(uint32_t sender_ssrc,
+ void AddSr(uint32_t remote_ssrc, int number_of_report_blocks);
+ void AddSrWithNtp(uint32_t remote_ssrc,
uint32_t ntp_high,
uint32_t ntp_low,
uint32_t rtp_timestamp);
- void AddRr(uint32_t sender_ssrc, int number_of_report_blocks);
+ void AddRr(uint32_t remote_ssrc, int number_of_report_blocks);
void AddRb(uint32_t rtp_ssrc);
- void AddXrHeader(uint32_t sender_ssrc);
- void AddXrDlrrBlock(uint32_t sender_ssrc);
- void AddXrExtendedDlrrBlock(uint32_t sender_ssrc);
+ void AddXrHeader(uint32_t remote_ssrc);
+ void AddXrDlrrBlock(uint32_t remote_ssrc);
+ void AddXrExtendedDlrrBlock(uint32_t remote_ssrc);
void AddXrRrtrBlock();
void AddXrUnknownBlock();
void AddUnknownBlock();
- void AddNack(uint32_t sender_ssrc, uint32_t media_ssrc);
- void AddSendReportRequest(uint32_t sender_ssrc, uint32_t media_ssrc);
+ void AddNack(uint32_t remote_ssrc, uint32_t local_ssrc);
+ void AddSendReportRequest(uint32_t remote_ssrc, uint32_t local_ssrc);
- void AddCast(uint32_t sender_ssrc,
- uint32_t media_ssrc,
+ void AddCast(uint32_t remote_ssrc,
+ uint32_t local_ssrc,
base::TimeDelta target_delay);
void AddCst2(const std::vector<uint32_t>& later_received_frames);
void AddErrorCst2(); // With wrong identifier.
+ void AddPli(uint32_t remote_ssrc, uint32_t local_ssrc);
- void AddReceiverLog(uint32_t sender_ssrc);
+ void AddReceiverLog(uint32_t remote_ssrc);
void AddReceiverFrameLog(uint32_t rtp_timestamp,
int num_events,
uint32_t event_timesamp_base);
« no previous file with comments | « media/cast/net/rtcp/sender_rtcp_session.cc ('k') | media/cast/net/rtcp/test_rtcp_packet_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698