HomeSort by relevance Sort by last modified time
    Searched refs:pl_type (Results 1 - 10 of 10) sorted by null

  /external/webrtc/talk/session/media/
bundlefilter.cc 58 bool BundleFilter::FindPayloadType(int pl_type) const {
59 return payload_types_.find(pl_type) != payload_types_.end();
bundlefilter.h 62 bool FindPayloadType(int pl_type) const;
channel_unittest.cc 313 bool SendCustomRtp1(uint32_t ssrc, int sequence_number, int pl_type = -1) {
314 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
318 bool SendCustomRtp2(uint32_t ssrc, int sequence_number, int pl_type = -1) {
319 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
350 bool CheckCustomRtp1(uint32_t ssrc, int sequence_number, int pl_type = -1) {
351 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
355 bool CheckCustomRtp2(uint32_t ssrc, int sequence_number, int pl_type = -1) {
356 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
370 std::string CreateRtpData(uint32_t ssrc, int sequence_number, int pl_type) {
375 if (pl_type >= 0)
    [all...]
  /external/webrtc/talk/media/base/
rtputils.cc 166 int pl_type; local
167 if (!GetRtcpType(data, len, &pl_type)) return false;
169 if (pl_type == kRtcpTypeSDES) return false;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
producer_fec.cc 51 int red_pl_type, int pl_type) {
59 data_[header_length] = static_cast<uint8_t>(pl_type);
129 int pl_type = data_buffer[1] & 0x7f; local
131 red_pl_type, pl_type);
producer_fec.h 28 int red_pl_type, int pl_type);
  /external/webrtc/webrtc/video/
vie_encoder.h 86 uint8_t pl_type,
88 int32_t DeRegisterExternalEncoder(uint8_t pl_type);
vie_encoder.cc 194 uint8_t pl_type,
196 if (vcm_->RegisterExternalEncoder(encoder, pl_type, internal_source) !=
203 int32_t ViEEncoder::DeRegisterExternalEncoder(uint8_t pl_type) {
204 if (vcm_->RegisterExternalEncoder(NULL, pl_type) != VCM_OK) {
vie_channel.h 90 void RegisterExternalDecoder(const uint8_t pl_type, VideoDecoder* decoder);
vie_channel.cc 442 void ViEChannel::RegisterExternalDecoder(const uint8_t pl_type,
445 vcm_->RegisterExternalDecoder(decoder, pl_type);
    [all...]

Completed in 179 milliseconds