summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-01-24 09:30:53 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-01-24 09:30:53 +0000
commitc71929dce136f9bc59fcc7ceb172cf74fc507ea9 (patch)
treebf14c2bdd4b7963dc792a2222310f365a202ecd3 /config.h
parent630939f10e9e48a3a92ba3f8adb9cd056187e1d0 (diff)
downloadwebrtc-c71929dce136f9bc59fcc7ceb172cf74fc507ea9.tar.gz
Wire up RTX in VideoReceiveStream.
Also adds a test to make sure that a retransmitted frame is actually received and decoded on the remote side. The previous NACK test checked retransmission, but not that the receiver actually takes care of the retransmitted packet. BUG=2399 R=mflodman@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7469004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5422 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'config.h')
-rw-r--r--config.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/config.h b/config.h
index 62f9fc85..9ff8a55f 100644
--- a/config.h
+++ b/config.h
@@ -71,16 +71,6 @@ struct FecConfig {
int red_payload_type;
};
-// Settings for RTP retransmission payload format, see RFC 4588 for details.
-struct RtxConfig {
- RtxConfig() : rtx_payload_type(0) {}
- // SSRCs to use for the RTX streams.
- std::vector<uint32_t> ssrcs;
-
- // Payload type to use for the RTX stream.
- int rtx_payload_type;
-};
-
// RTP header extension to use for the video stream, see RFC 5285.
struct RtpExtension {
static const char* kTOffset;