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

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

Issue 1739273002: [Draft] RtpPacket sketched. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase to use landed version of rtp::Packet Created 4 years, 8 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/rtp_rtcp_impl.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h
index 997a19b9ade6ce5f651f2e40d8ec593c79a8b406..8834a25fcfe58e562a48ff024576819eb8a72174 100644
--- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h
+++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h
@@ -13,6 +13,7 @@
#include <list>
#include <set>
+#include <string>
#include <utility>
#include <vector>
@@ -64,6 +65,10 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
int32_t DeregisterSendRtpHeaderExtension(RTPExtensionType type) override;
+ bool RegisterRtpHeaderExtension(const std::string& type,
+ MediaType media,
+ uint8_t id) override;
+
// Get start timestamp.
uint32_t StartTimestamp() const override;
@@ -230,8 +235,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
// requests.
void SetStorePacketsStatus(bool enable, uint16_t number_to_store) override;
- bool StorePackets() const override;
-
// Called on receipt of RTCP report block from remote side.
void RegisterRtcpStatisticsCallback(
RtcpStatisticsCallback* callback) override;
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_packet_unittest.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698