
When frames are fragmented inte multiple RTP packets in order to not exceed a maximum packet size, the header overhead calculation must take into account that FEC redundancy packets may use more than the 12 bytes of the basic RTP header. For example, a csrc list or extension headers may be present. BUG=2899 R=phoglund@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/8769005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5562 4adac7df-926f-26a2-2b94-8c16560cd09d
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_TEST_HELPER_H_
|
|
#define WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_TEST_HELPER_H_
|
|
|
|
#include "webrtc/modules/interface/module_common_types.h"
|
|
#include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h"
|
|
|
|
namespace webrtc {
|
|
|
|
enum {
|
|
kFecPayloadType = 96
|
|
};
|
|
enum {
|
|
kRedPayloadType = 97
|
|
};
|
|
enum {
|
|
kVp8PayloadType = 120
|
|
};
|
|
|
|
typedef ForwardErrorCorrection::Packet Packet;
|
|
|
|
struct RtpPacket : public Packet {
|
|
WebRtcRTPHeader header;
|
|
};
|
|
|
|
class FrameGenerator {
|
|
public:
|
|
FrameGenerator();
|
|
|
|
void NewFrame(int num_packets);
|
|
|
|
uint16_t NextSeqNum();
|
|
|
|
RtpPacket* NextPacket(int offset, size_t length);
|
|
|
|
// Creates a new RtpPacket with the RED header added to the packet.
|
|
RtpPacket* BuildMediaRedPacket(const RtpPacket* 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);
|
|
|
|
void SetRedHeader(Packet* red_packet, uint8_t payload_type,
|
|
int header_length) const;
|
|
|
|
private:
|
|
static void BuildRtpHeader(uint8_t* data, const RTPHeader* header);
|
|
|
|
int num_packets_;
|
|
uint16_t seq_num_;
|
|
uint32_t timestamp_;
|
|
};
|
|
}
|
|
|
|
#endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_FEC_TEST_HELPER_H_
|