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

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

Issue 1710103004: webrtc::RtpPacket name freed for better RtpPacket (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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/fec_test_helper.h
diff --git a/webrtc/modules/rtp_rtcp/source/fec_test_helper.h b/webrtc/modules/rtp_rtcp/source/fec_test_helper.h
index aacc2d1ecc349ddef7ee141ca16f333257d545bb..df7075ac5c844227ab668d5327540757b431e4fa 100644
--- a/webrtc/modules/rtp_rtcp/source/fec_test_helper.h
+++ b/webrtc/modules/rtp_rtcp/source/fec_test_helper.h
@@ -20,9 +20,7 @@ const uint8_t kFecPayloadType = 96;
const uint8_t kRedPayloadType = 97;
const uint8_t kVp8PayloadType = 120;
-typedef ForwardErrorCorrection::Packet Packet;
-
-struct RtpPacket : public Packet {
+struct FecRtpPacket : public ForwardErrorCorrection::Packet {
stefan-webrtc 2016/02/19 14:21:15 Could you define this within the test namespace in
danilchap 2016/02/19 14:48:29 checked what it containing and renamed to test::Ra
stefan-webrtc 2016/02/19 14:56:21 Ok. test::RtpPacket would work too I guess? Doesn'
WebRtcRTPHeader header;
};
@@ -34,17 +32,18 @@ class FrameGenerator {
uint16_t NextSeqNum();
- RtpPacket* NextPacket(int offset, size_t length);
+ FecRtpPacket* NextPacket(int offset, size_t length);
// Creates a new RtpPacket with the RED header added to the packet.
- RtpPacket* BuildMediaRedPacket(const RtpPacket* packet);
+ FecRtpPacket* BuildMediaRedPacket(const FecRtpPacket* packet);
// Creates a new RtpPacket with FEC payload and red header. Does this by
// creating a new fake media RtpPacket, clears the marker bit and adds a RED
// header. Finally replaces the payload with the content of |packet->data|.
- RtpPacket* BuildFecRedPacket(const Packet* packet);
+ FecRtpPacket* BuildFecRedPacket(const ForwardErrorCorrection::Packet* packet);
- void SetRedHeader(Packet* red_packet, uint8_t payload_type,
+ void SetRedHeader(ForwardErrorCorrection::Packet* red_packet,
+ uint8_t payload_type,
size_t header_length) const;
private:
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/fec_receiver_unittest.cc ('k') | webrtc/modules/rtp_rtcp/source/fec_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698