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

Side by Side Diff: media/cast/rtcp/rtcp_receiver.h

Issue 83903002: Cast: Add capabity to parse receiver and sender log messages over RTCP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge TOT Created 7 years 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 unified diff | Download patch
« no previous file with comments | « media/cast/rtcp/rtcp_defines.h ('k') | media/cast/rtcp/rtcp_receiver.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ 5 #ifndef MEDIA_CAST_RTCP_RTCP_RECEIVER_H_
6 #define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ 6 #define MEDIA_CAST_RTCP_RTCP_RECEIVER_H_
7 7
8 #include "media/cast/rtcp/rtcp.h" 8 #include "media/cast/rtcp/rtcp.h"
9 #include "media/cast/rtcp/rtcp_defines.h" 9 #include "media/cast/rtcp/rtcp_defines.h"
10 #include "media/cast/rtcp/rtcp_utility.h" 10 #include "media/cast/rtcp/rtcp_utility.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 void HandleFIR(RtcpParser* rtcp_parser); 89 void HandleFIR(RtcpParser* rtcp_parser);
90 void HandleFIRItem(const RtcpField* rtcp_field); 90 void HandleFIRItem(const RtcpField* rtcp_field);
91 91
92 void HandlePayloadSpecificApp(RtcpParser* rtcp_parser); 92 void HandlePayloadSpecificApp(RtcpParser* rtcp_parser);
93 void HandlePayloadSpecificRembItem(RtcpParser* rtcp_parser); 93 void HandlePayloadSpecificRembItem(RtcpParser* rtcp_parser);
94 void HandlePayloadSpecificCastItem(RtcpParser* rtcp_parser); 94 void HandlePayloadSpecificCastItem(RtcpParser* rtcp_parser);
95 void HandlePayloadSpecificCastNackItem( 95 void HandlePayloadSpecificCastNackItem(
96 const RtcpField* rtcp_field, 96 const RtcpField* rtcp_field,
97 MissingFramesAndPacketsMap* missing_frames_and_packets); 97 MissingFramesAndPacketsMap* missing_frames_and_packets);
98 98
99 void HandleApplicationSpecificCastReceiverLog(RtcpParser* rtcp_parser);
100 void HandleApplicationSpecificCastSenderLog(RtcpParser* rtcp_parser);
101 void HandleApplicationSpecificCastReceiverEventLog(
102 RtcpParser* rtcp_parser,
103 RtcpReceiverEventLogMessages* event_log_messages);
104
99 const uint32 ssrc_; 105 const uint32 ssrc_;
100 uint32 remote_ssrc_; 106 uint32 remote_ssrc_;
101 107
102 // Not owned by this class. 108 // Not owned by this class.
103 RtcpSenderFeedback* const sender_feedback_; 109 RtcpSenderFeedback* const sender_feedback_;
104 RtcpReceiverFeedback* const receiver_feedback_; 110 RtcpReceiverFeedback* const receiver_feedback_;
105 RtcpRttFeedback* const rtt_feedback_; 111 RtcpRttFeedback* const rtt_feedback_;
106 scoped_refptr<CastEnvironment> cast_environment_; 112 scoped_refptr<CastEnvironment> cast_environment_;
107 113
108 FrameIdWrapHelper ack_frame_id_wrap_helper_; 114 FrameIdWrapHelper ack_frame_id_wrap_helper_;
109 115
110 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver); 116 DISALLOW_COPY_AND_ASSIGN(RtcpReceiver);
111 }; 117 };
112 118
113 } // namespace cast 119 } // namespace cast
114 } // namespace media 120 } // namespace media
115 121
116 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_ 122 #endif // MEDIA_CAST_RTCP_RTCP_RECEIVER_H_
OLDNEW
« no previous file with comments | « media/cast/rtcp/rtcp_defines.h ('k') | media/cast/rtcp/rtcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698