Updating to new VP8 rtp format
The VP8 packetizer and tests have been updated to the new RTP draft (http://tools.ietf.org/html/draft-ietf-payload-vp8-01). The receive-side parser is also updated, and a new unit test is implemented for it. Finally, some data traversing work to get the parsed information into the decoder. Review URL: http://webrtc-codereview.appspot.com/116011 git-svn-id: http://webrtc.googlecode.com/svn/trunk@482 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@@ -248,14 +248,8 @@ void VCMEncodedFrameCallback::CopyCodecSpecific(const CodecSpecificInfo& info,
|
||||
switch (info.codecType)
|
||||
{
|
||||
case kVideoCodecVP8: {
|
||||
if (info.codecSpecific.VP8.pictureId < 0)
|
||||
{
|
||||
(*rtp)->VP8.pictureId = kNoPictureId;
|
||||
}
|
||||
else
|
||||
{
|
||||
(*rtp)->VP8.pictureId = info.codecSpecific.VP8.pictureId;
|
||||
}
|
||||
(*rtp)->VP8.InitRTPVideoHeaderVP8();
|
||||
(*rtp)->VP8.pictureId = info.codecSpecific.VP8.pictureId;
|
||||
(*rtp)->VP8.nonReference = info.codecSpecific.VP8.nonReference;
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user