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

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: merged 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
« no previous file with comments | « media/cast/transport/transport_audio_sender.cc ('k') | media/cast/transport/transport_video_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « media/cast/transport/transport_audio_sender.cc ('k') | media/cast/transport/transport_video_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698