niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
pwestin@webrtc.org | cac7878 | 2012-04-05 08:30:10 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_TMMBR_HELP_H_ |
| 12 | #define WEBRTC_MODULES_RTP_RTCP_SOURCE_TMMBR_HELP_H_ |
| 13 | |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 14 | #include <vector> |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 15 | #include "typedefs.h" |
| 16 | |
| 17 | #include "critical_section_wrapper.h" |
| 18 | |
| 19 | #ifndef NULL |
| 20 | #define NULL 0 |
| 21 | #endif |
| 22 | |
| 23 | namespace webrtc { |
| 24 | class TMMBRSet |
| 25 | { |
| 26 | public: |
| 27 | TMMBRSet(); |
| 28 | ~TMMBRSet(); |
| 29 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 30 | void VerifyAndAllocateSet(uint32_t minimumSize); |
| 31 | void VerifyAndAllocateSetKeepingData(uint32_t minimumSize); |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 32 | // Number of valid data items in set. |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 33 | uint32_t lengthOfSet() const { return _lengthOfSet; } |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 34 | // Presently allocated max size of set. |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 35 | uint32_t sizeOfSet() const { return _sizeOfSet; } |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 36 | void clearSet() { |
| 37 | _lengthOfSet = 0; |
| 38 | } |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 39 | uint32_t Tmmbr(int i) const { |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 40 | return _data.at(i).tmmbr; |
| 41 | } |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 42 | uint32_t PacketOH(int i) const { |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 43 | return _data.at(i).packet_oh; |
| 44 | } |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 45 | uint32_t Ssrc(int i) const { |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 46 | return _data.at(i).ssrc; |
| 47 | } |
| 48 | void SetEntry(unsigned int i, |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 49 | uint32_t tmmbrSet, |
| 50 | uint32_t packetOHSet, |
| 51 | uint32_t ssrcSet); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 52 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 53 | void AddEntry(uint32_t tmmbrSet, |
| 54 | uint32_t packetOHSet, |
| 55 | uint32_t ssrcSet); |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 56 | |
| 57 | // Remove one entry from table, and move all others down. |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 58 | void RemoveEntry(uint32_t sourceIdx); |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 59 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 60 | void SwapEntries(uint32_t firstIdx, |
| 61 | uint32_t secondIdx); |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 62 | |
| 63 | // Set entry data to zero, but keep it in table. |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 64 | void ClearEntry(uint32_t idx); |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 65 | |
| 66 | private: |
| 67 | class SetElement { |
| 68 | public: |
| 69 | SetElement() : tmmbr(0), packet_oh(0), ssrc(0) {} |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 70 | uint32_t tmmbr; |
| 71 | uint32_t packet_oh; |
| 72 | uint32_t ssrc; |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | std::vector<SetElement> _data; |
| 76 | // Number of places allocated. |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 77 | uint32_t _sizeOfSet; |
hta@webrtc.org | 54536bb | 2012-05-03 14:07:23 +0000 | [diff] [blame] | 78 | // NUmber of places currently in use. |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 79 | uint32_t _lengthOfSet; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | class TMMBRHelp |
| 83 | { |
| 84 | public: |
pwestin@webrtc.org | cac7878 | 2012-04-05 08:30:10 +0000 | [diff] [blame] | 85 | TMMBRHelp(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 86 | virtual ~TMMBRHelp(); |
| 87 | |
| 88 | TMMBRSet* BoundingSet(); // used for debuging |
| 89 | TMMBRSet* CandidateSet(); |
| 90 | TMMBRSet* BoundingSetToSend(); |
| 91 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 92 | TMMBRSet* VerifyAndAllocateCandidateSet(const uint32_t minimumSize); |
| 93 | int32_t FindTMMBRBoundingSet(TMMBRSet*& boundingSet); |
| 94 | int32_t SetTMMBRBoundingSetToSend( |
pwestin@webrtc.org | cac7878 | 2012-04-05 08:30:10 +0000 | [diff] [blame] | 95 | const TMMBRSet* boundingSetToSend, |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 96 | const uint32_t maxBitrateKbit); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 97 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 98 | bool IsOwner(const uint32_t ssrc, const uint32_t length) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 99 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 100 | bool CalcMinBitRate(uint32_t* minBitrateKbit) const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 101 | |
| 102 | protected: |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 103 | TMMBRSet* VerifyAndAllocateBoundingSet(uint32_t minimumSize); |
| 104 | int32_t VerifyAndAllocateBoundingSetToSend(uint32_t minimumSize); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 105 | |
pbos@webrtc.org | 2f44673 | 2013-04-08 11:08:41 +0000 | [diff] [blame^] | 106 | int32_t FindTMMBRBoundingSet(int32_t numCandidates, TMMBRSet& candidateSet); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 107 | |
| 108 | private: |
henrike@webrtc.org | 65573f2 | 2011-12-13 19:17:27 +0000 | [diff] [blame] | 109 | CriticalSectionWrapper* _criticalSection; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 110 | TMMBRSet _candidateSet; |
| 111 | TMMBRSet _boundingSet; |
| 112 | TMMBRSet _boundingSetToSend; |
| 113 | |
| 114 | float* _ptrIntersectionBoundingSet; |
| 115 | float* _ptrMaxPRBoundingSet; |
| 116 | }; |
| 117 | } // namespace webrtc |
| 118 | |
| 119 | #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_TMMBR_HELP_H_ |