| Index: webrtc/modules/rtp_rtcp/interface/rtp_payload_registry.h
|
| diff --git a/webrtc/modules/rtp_rtcp/interface/rtp_payload_registry.h b/webrtc/modules/rtp_rtcp/interface/rtp_payload_registry.h
|
| index a60a6c5e73c0e54feb07a7affb0bb98dd3564d6b..313bef1112d0421ab5596294019d86837be4f8f6 100644
|
| --- a/webrtc/modules/rtp_rtcp/interface/rtp_payload_registry.h
|
| +++ b/webrtc/modules/rtp_rtcp/interface/rtp_payload_registry.h
|
| @@ -83,6 +83,15 @@ class RTPPayloadRegistry {
|
|
|
| bool IsRtx(const RTPHeader& header) const;
|
|
|
| + // DEPRECATED. Use RestoreOriginalPacket below that takes a uint8_t*
|
| + // restored_packet, instead of a uint8_t**.
|
| + // TODO(noahric): Remove this when all callers have been updated.
|
| + bool RestoreOriginalPacket(uint8_t** restored_packet,
|
| + const uint8_t* packet,
|
| + size_t* packet_length,
|
| + uint32_t original_ssrc,
|
| + const RTPHeader& header) const;
|
| +
|
| bool RestoreOriginalPacket(uint8_t* restored_packet,
|
| const uint8_t* packet,
|
| size_t* packet_length,
|
|
|