/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
rtcp_packet_unittest.cc | 32 using webrtc::rtcp::Rpsi; 218 TEST(RtcpPacketTest, Rpsi) { 219 Rpsi rpsi; local 223 rpsi.WithPayloadType(100); 224 rpsi.WithPictureId(kPictureId); 226 rtc::scoped_ptr<RawPacket> packet(rpsi.Build()); 229 EXPECT_EQ(100, parser.rpsi()->PayloadType()); 230 EXPECT_EQ(kNumberOfValidBytes * 8, parser.rpsi()->NumberOfValidBits()); 231 EXPECT_EQ(kPictureId, parser.rpsi()->PictureId()) 235 Rpsi rpsi; local 249 Rpsi rpsi; local 263 Rpsi rpsi; local 277 Rpsi rpsi; local [all...] |
rtcp_utility.h | 234 RTCPPacketPSFBRPSI RPSI; 390 State_PSFB_RPSIItem, // RPSI FCI item
|
rtcp_sender.cc | 572 | PB |0| Payload Type| Native RPSI bit string | 585 rtcp::Rpsi* rpsi = new rtcp::Rpsi(); 586 rpsi->From(ssrc_); 587 rpsi->To(remote_ssrc_); 588 rpsi->WithPayloadType(ctx.feedback_state_.send_payload_type); 589 rpsi->WithPictureId(ctx.picture_id_); 591 return rtc::scoped_ptr<rtcp::Rpsi>(rpsi); [all...] |
rtcp_packet.cc | 182 // Reference picture selection indication (RPSI) (RFC 4585). 189 // | PB |0| Payload Type| Native RPSI bit string | 194 void CreateRpsi(const RTCPPacketPSFBRPSI& rpsi, 199 assert(rpsi.NumberOfValidBits % 8 == 0); 200 AssignUWord32(buffer, pos, rpsi.SenderSSRC); 201 AssignUWord32(buffer, pos, rpsi.MediaSSRC); 203 AssignUWord8(buffer, pos, rpsi.PayloadType); 204 memcpy(buffer + *pos, rpsi.NativeBitString, rpsi.NumberOfValidBits / 8); 205 *pos += rpsi.NumberOfValidBits / 8 [all...] |
rtcp_packet.h | 257 // Reference picture selection indication (RPSI) (RFC 4585). 264 // | PB |0| Payload Type| Native RPSI bit string | 269 class Rpsi : public RtcpPacket { 271 Rpsi() 277 virtual ~Rpsi() {} 306 RTC_DISALLOW_COPY_AND_ASSIGN(Rpsi);
|
rtcp_utility.cc | [all...] |
rtcp_receiver.cc | [all...] |
rtcp_sender_unittest.cc | 459 EXPECT_EQ(kPayloadType, parser()->rpsi()->PayloadType()); 460 EXPECT_EQ(kPictureId, parser()->rpsi()->PictureId());
|
rtp_utility.cc | 115 * FMT 3: Reference Picture Selection Indication (RPSI)
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
reference_picture_selection.cc | 42 // Assume RPSI is signaled with 14 bits. 78 // enough for an RPSI to arrive after the decoder decoded the reference frame.
|
reference_picture_selection.h | 29 // introduce a new established reference if the received RPSI isn't too late.
|
vp8_impl.cc | 505 // through SLI and RPSI. 817 // Handle RPSI and SLI messages and set up the appropriate encode flags. 833 // |RPSI| matches the last key frame from any of the spatial streams. 836 int RPSI = codec_specific_info->codecSpecific.VP8.pictureIdRPSI; [all...] |
/external/webrtc/webrtc/test/ |
rtcp_packet_parser.h | 181 class Rpsi : public PacketType { 183 Rpsi() {} 184 virtual ~Rpsi() {} 195 void Set(const RTCPUtility::RTCPPacketPSFBRPSI& rpsi) { 196 rpsi_ = rpsi; 649 Rpsi* rpsi() { return &rpsi_; } 684 Rpsi rpsi_;
|
rtcp_packet_parser.cc | 72 rpsi_.Set(parser.Packet().RPSI); 128 uint64_t Rpsi::PictureId() const {
|
/external/webrtc/talk/media/base/ |
codec.h | 61 std::string param_; // e.g. "", "rpsi", "fir"
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
nonlinear_beamformer.cc | 43 // Rpsi = Rpsi_angled * kBalance + Rpsi_uniform * (1 - kBalance)
|