Index: webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
diff --git a/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h b/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
index c2f467af35bfdf1a3d1599c906385a4c61497bfe..7acdc76e958db4f8388319ef0382c31c82c6a45b 100644 |
--- a/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
+++ b/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
@@ -11,6 +11,8 @@ |
#ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_PAYLOAD_REGISTRY_H_ |
#define WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_PAYLOAD_REGISTRY_H_ |
+#include <map> |
+ |
#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h" |
#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
@@ -52,7 +54,7 @@ class RTPPayloadStrategy { |
class RTPPayloadRegistry { |
public: |
// The registry takes ownership of the strategy. |
- RTPPayloadRegistry(RTPPayloadStrategy* rtp_payload_strategy); |
+ explicit RTPPayloadRegistry(RTPPayloadStrategy* rtp_payload_strategy); |
~RTPPayloadRegistry(); |
int32_t RegisterReceivePayload( |
@@ -108,8 +110,16 @@ class RTPPayloadRegistry { |
int GetPayloadTypeFrequency(uint8_t payload_type) const; |
+ // DEPRECATED. Use PayloadTypeToPayload below that returns const Payload* |
+ // instead of taking output parameter. |
+ // TODO(danilchap): Remove this when all callers have been updated. |
bool PayloadTypeToPayload(const uint8_t payload_type, |
- RtpUtility::Payload*& payload) const; |
+ RtpUtility::Payload*& payload) const { // NOLINT |
+ payload = |
+ const_cast<RtpUtility::Payload*>(PayloadTypeToPayload(payload_type)); |
+ return payload; |
mflodman
2015/12/10 08:24:23
Here I'd still prefer to return != nullptr to cler
danilchap
2015/12/10 09:01:15
I have arguments both for and against it, but both
|
+ } |
+ const RtpUtility::Payload* PayloadTypeToPayload(uint8_t payload_type) const; |
void ResetLastReceivedPayloadTypes() { |
CriticalSectionScoped cs(crit_sect_.get()); |
@@ -145,7 +155,7 @@ class RTPPayloadRegistry { |
int8_t last_received_media_payload_type() const { |
CriticalSectionScoped cs(crit_sect_.get()); |
return last_received_media_payload_type_; |
- }; |
+ } |
bool use_rtx_payload_mapping_on_restore() const { |
CriticalSectionScoped cs(crit_sect_.get()); |