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

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

Issue 74613004: Cast: Add capabity to send Receiver and Sender log messages over RTCP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rtcp_logging
Patch Set: Fixed nits Created 7 years, 1 month 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
Index: media/cast/rtcp/test_rtcp_packet_builder.h
diff --git a/media/cast/rtcp/test_rtcp_packet_builder.h b/media/cast/rtcp/test_rtcp_packet_builder.h
index b1f1acaafffe11154e9fe679f7c2721ad47c7224..b107812d9622bf8323bc2fd88f2230f2a787732e 100644
--- a/media/cast/rtcp/test_rtcp_packet_builder.h
+++ b/media/cast/rtcp/test_rtcp_packet_builder.h
@@ -75,6 +75,13 @@ class TestRtcpPacketBuilder {
void AddRpsi(uint32 sender_ssrc, uint32 media_ssrc);
void AddRemb(uint32 sender_ssrc, uint32 media_ssrc);
void AddCast(uint32 sender_ssrc, uint32 media_ssrc);
+ void AddSenderLog(uint32 sender_ssrc);
+ void AddSenderFrameLog(uint8 event_id, uint32 rtp_timestamp);
+ void AddReceiverLog(uint32 sender_ssrc);
+ void AddReceiverFrameLog(uint32 rtp_timestamp, int num_events,
+ uint32 event_timesamp_base);
+ void AddReceiverEventLog(uint16 event_data, uint8 event_id,
+ uint16 event_timesamp_delta);
const uint8* Packet();
int Length() { return kIpPacketSize - big_endian_writer_.remaining(); }

Powered by Google App Engine
This is Rietveld 408576698