| Index: webrtc/modules/rtp_rtcp/source/tmmbr_help.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/tmmbr_help.h b/webrtc/modules/rtp_rtcp/source/tmmbr_help.h
|
| index f901b37531190410ad844481d3a2d42de155318a..ecae946f97d31a9bd3dabd83f40e544f7b99d60a 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/tmmbr_help.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/tmmbr_help.h
|
| @@ -44,9 +44,10 @@ class TMMBRHelp {
|
| TMMBRSet* CandidateSet();
|
|
|
| TMMBRSet* VerifyAndAllocateCandidateSet(const uint32_t minimumSize);
|
| - int32_t FindTMMBRBoundingSet(TMMBRSet*& boundingSet);
|
| + std::vector<rtcp::TmmbItem> FindTMMBRBoundingSet();
|
|
|
| - bool IsOwner(const uint32_t ssrc, const uint32_t length) const;
|
| + static bool IsOwner(const std::vector<rtcp::TmmbItem>& bounding,
|
| + uint32_t ssrc);
|
|
|
| bool CalcMinBitRate(uint32_t* minBitrateKbit) const;
|
|
|
| @@ -55,7 +56,6 @@ class TMMBRHelp {
|
|
|
| private:
|
| TMMBRSet _candidateSet;
|
| - TMMBRSet _boundingSet;
|
| };
|
| } // namespace webrtc
|
|
|
|
|