aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/video_coding/main/source/packet.cc
diff options
context:
space:
mode:
authorstefan@webrtc.org <stefan@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-07-05 14:30:48 +0000
committerstefan@webrtc.org <stefan@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-07-05 14:30:48 +0000
commit66b2e5c05a3f2a93d634d1dbbcbb283fb218ca4f (patch)
tree4404784978de71686cae3b87d002e1570900db70 /webrtc/modules/video_coding/main/source/packet.cc
parentd4d9480c05fb1c5fb78e894742291c68fbdc68f8 (diff)
downloadwebrtc-66b2e5c05a3f2a93d634d1dbbcbb283fb218ca4f.tar.gz
Breaking out receive-stats, rtp-payload-registry and rtp-receiver from the
rtp_rtcp implementation. This refactoring significantly reduces the receive-side RTP parser and receiver complexity, and makes it possible to implement RTX correctly by having two instances of receive-statistics. With this change the dead-or-alive and packet timeout APIs are removed. TEST=trybots, vie_auto_test, voe_auto_test BUG=1811 R=mflodman@webrtc.org, pbos@webrtc.org, xians@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1745004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4301 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/modules/video_coding/main/source/packet.cc')
-rw-r--r--webrtc/modules/video_coding/main/source/packet.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webrtc/modules/video_coding/main/source/packet.cc b/webrtc/modules/video_coding/main/source/packet.cc
index 4604572f7b..86583da690 100644
--- a/webrtc/modules/video_coding/main/source/packet.cc
+++ b/webrtc/modules/video_coding/main/source/packet.cc
@@ -94,7 +94,7 @@ void VCMPacket::CopyCodecSpecifics(const RTPVideoHeader& videoHeader)
{
switch(videoHeader.codec)
{
- case kRTPVideoVP8:
+ case kRtpVideoVp8:
{
// Handle all packets within a frame as depending on the previous packet
// TODO(holmer): This should be changed to make fragments independent
@@ -111,7 +111,7 @@ void VCMPacket::CopyCodecSpecifics(const RTPVideoHeader& videoHeader)
codec = kVideoCodecVP8;
break;
}
- case kRTPVideoI420:
+ case kRtpVideoI420:
{
codec = kVideoCodecI420;
break;