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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h

Issue 1474693002: [Splitting] TMMBRHelp class simplifted (and disappear because become too simple) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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: webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
index 9a9c73d2cc655132a8b15902e87d228ef9a40939..57da35499c5882627197cd2f9c304b313917a77f 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
@@ -110,10 +110,8 @@ public:
const int64_t currentTimeMS);
// get
- int32_t GetTMMBRSet(const uint32_t sourceIdx,
- const uint32_t targetIdx,
- TMMBRSet* candidateSet,
- const int64_t currentTimeMS);
+ void GetTMMBRSet(int64_t current_time_ms,
+ std::vector<rtcp::TmmbItem>* candidateSet);
int64_t lastTimeReceived;
@@ -122,10 +120,10 @@ public:
int64_t lastFIRRequest;
// TMMBN
- TMMBRSet TmmbnBoundingSet;
+ std::vector<rtcp::TmmbItem> TmmbnBoundingSet;
// TMMBR
- TMMBRSet TmmbrSet;
+ std::vector<rtcp::TmmbItem> TmmbrSet;
bool readyForDelete;
private:
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698