Home | History | Annotate | Download | only in source

Lines Matching refs:rtp_info

63     WebRtcRTPHeader rtp_info;
64 memset(&rtp_info, 0, sizeof(rtp_info));
65 rtp_info.frameType = frame_type;
66 rtp_info.header.timestamp = timestamp;
67 rtp_info.header.sequenceNumber = seq_no;
68 rtp_info.header.markerBit = marker_bit;
69 rtp_info.header.payloadType = video_codec_.plType;
70 rtp_info.type.Video.codec = kRtpVideoVp8;
71 rtp_info.type.Video.codecHeader.VP8.InitRTPVideoHeaderVP8();
72 rtp_info.type.Video.isFirstPacket = first;
74 ASSERT_EQ(VCM_OK, vcm_->IncomingPacket(payload, kPayloadLen, rtp_info));