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

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: FecRtpPacket -> test::RawRtpPacket 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..6af7f9cc7fdbdd81ccf2ce5b820de822808c994a 100644
--- a/webrtc/modules/rtp_rtcp/source/fec_test_helper.h
+++ b/webrtc/modules/rtp_rtcp/source/fec_test_helper.h
@@ -15,17 +15,16 @@
#include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h"
namespace webrtc {
+namespace test {
+struct RawRtpPacket : public ForwardErrorCorrection::Packet {
+ WebRtcRTPHeader header;
+};
+} // namespace test
const uint8_t kFecPayloadType = 96;
const uint8_t kRedPayloadType = 97;
const uint8_t kVp8PayloadType = 120;
-typedef ForwardErrorCorrection::Packet Packet;
-
-struct RtpPacket : public Packet {
- WebRtcRTPHeader header;
-};
-
class FrameGenerator {
public:
FrameGenerator();
@@ -34,17 +33,19 @@ class FrameGenerator {
uint16_t NextSeqNum();
- RtpPacket* NextPacket(int offset, size_t length);
+ test::RawRtpPacket* NextPacket(int offset, size_t length);
// Creates a new RtpPacket with the RED header added to the packet.
- RtpPacket* BuildMediaRedPacket(const RtpPacket* packet);
+ test::RawRtpPacket* BuildMediaRedPacket(const test::RawRtpPacket* 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);
+ test::RawRtpPacket* 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