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

Unified Diff: media/cast/transport/transport_video_sender.h

Issue 281453003: Cast: Simplify code path for RTCP sender report (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
Index: media/cast/transport/transport_video_sender.h
diff --git a/media/cast/transport/transport_video_sender.h b/media/cast/transport/transport_video_sender.h
index 9bb2267216fc3a05d6957b97cdfed3f53fa3d154..151065befa9db359e6d80793b8756088d6c17176 100644
--- a/media/cast/transport/transport_video_sender.h
+++ b/media/cast/transport/transport_video_sender.h
@@ -44,12 +44,11 @@ class TransportVideoSender : public base::NonThreadSafe {
void ResendPackets(
const MissingFramesAndPacketsMap& missing_frames_and_packets);
+ size_t send_packet_count() const { return rtp_sender_.send_packet_count(); }
+ size_t send_octet_count() const { return rtp_sender_.send_octet_count(); }
+ uint32 ssrc() const { return rtp_sender_.ssrc(); }
bool initialized() const { return initialized_; }
- // Subscribe callback to get RTP Audio stats.
- void SubscribeVideoRtpStatsCallback(
- const CastTransportRtpStatistics& callback);
-
private:
// Caller must allocate the destination |encrypted_video_frame| the data
// member will be resized to hold the encrypted size.

Powered by Google App Engine
This is Rietveld 408576698