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

  /external/chromium_org/third_party/webrtc/video_engine/include/
vie_external_codec.h 29 const unsigned char pl_type,
34 const unsigned char pl_type) = 0;
37 const unsigned int pl_type,
43 const unsigned char pl_type) = 0;
  /external/chromium_org/third_party/webrtc/video_engine/
vie_external_codec_impl.h 28 const unsigned char pl_type,
32 const unsigned char pl_type);
34 const unsigned int pl_type,
39 const unsigned char pl_type);
vie_external_codec_impl.cc 60 const unsigned char pl_type,
65 << ", pl_type " << static_cast<int>(pl_type)
74 if (vie_encoder->RegisterExternalEncoder(encoder, pl_type,
83 const int video_channel, const unsigned char pl_type) {
93 if (vie_encoder->DeRegisterExternalEncoder(pl_type) != 0) {
102 const unsigned int pl_type,
107 << ", pl_type " << pl_type
119 if (vie_channel->RegisterExternalDecoder(pl_type, decoder, decoder_render
130 << ", pl_type " << pl_type; local
    [all...]
vie_encoder.h 77 uint8_t pl_type,
79 int32_t DeRegisterExternalEncoder(uint8_t pl_type);
vie_channel.h 90 int32_t RegisterExternalDecoder(const uint8_t pl_type,
94 int32_t DeRegisterExternalDecoder(const uint8_t pl_type);
vie_encoder.cc 291 uint8_t pl_type,
296 if (vcm_.RegisterExternalEncoder(encoder, pl_type, internal_source) !=
303 int32_t ViEEncoder::DeRegisterExternalEncoder(uint8_t pl_type) {
313 if (vcm_.RegisterExternalEncoder(NULL, pl_type) != VCM_OK) {
319 if (current_send_codec.plType == pl_type) {
vie_channel.cc 386 // Don't log this error, no way to check in advance if this pl_type is
440 int32_t ViEChannel::RegisterExternalDecoder(const uint8_t pl_type,
445 result = vcm_->RegisterExternalDecoder(decoder, pl_type, buffered_rendering);
452 int32_t ViEChannel::DeRegisterExternalDecoder(const uint8_t pl_type) {
456 if (vcm_->RegisterExternalDecoder(NULL, pl_type, false) != VCM_OK) {
460 if (result == 0 && current_receive_codec.plType == pl_type) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
bundlefilter.cc 58 int pl_type = 0; local
60 if (!GetRtcpType(data, len, &pl_type)) return false;
61 if (pl_type == kRtcpTypeSDES) {
106 bool BundleFilter::FindPayloadType(int pl_type) const {
107 return payload_types_.find(pl_type) != payload_types_.end();
bundlefilter.h 69 bool FindPayloadType(int pl_type) const;
channel_unittest.cc 413 bool SendCustomRtp1(uint32 ssrc, int sequence_number, int pl_type = -1) {
414 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
418 bool SendCustomRtp2(uint32 ssrc, int sequence_number, int pl_type = -1) {
419 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
450 bool CheckCustomRtp1(uint32 ssrc, int sequence_number, int pl_type = -1 ) {
451 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
455 bool CheckCustomRtp2(uint32 ssrc, int sequence_number, int pl_type = -1) {
456 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
470 std::string CreateRtpData(uint32 ssrc, int sequence_number, int pl_type) {
475 if (pl_type >= 0)
476 talk_base::Set8(const_cast<char*>(data.c_str()), 1, pl_type); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
producer_fec.cc 50 int red_pl_type, int pl_type) {
58 data_[header_length] = pl_type;
129 int pl_type = data_buffer[1] & 0x7f; local
131 red_pl_type, pl_type);
producer_fec.h 27 int red_pl_type, int pl_type);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtputils.cc 175 int pl_type; local
176 if (!GetRtcpType(data, len, &pl_type)) return false;
178 if (pl_type == kRtcpTypeSDES) return false;
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvideoengine.h 567 unsigned int pl_type) const {
570 ext_decoder_pl_types_.count(pl_type) != 0;
578 unsigned int pl_type) const {
581 ext_encoder_pl_types_.count(pl_type) != 0;
    [all...]
webrtcvideoengine.cc 510 void RegisterDecoder(int pl_type, webrtc::VideoDecoder* decoder) {
511 ASSERT(!IsDecoderRegistered(pl_type));
512 registered_decoders_[pl_type] = decoder;
514 bool IsDecoderRegistered(int pl_type) {
515 return registered_decoders_.count(pl_type) != 0;
787 void RegisterEncoder(int pl_type, webrtc::VideoEncoder* encoder) {
788 ASSERT(!IsEncoderRegistered(pl_type));
789 registered_encoders_[pl_type] = encoder;
791 bool IsEncoderRegistered(int pl_type) {
792 return registered_encoders_.count(pl_type) != 0
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_loopback.cc 369 uint8_t pl_type = 127; local
370 videoCodec.plType = pl_type;
374 error = external_codec->RegisterExternalSendCodec(videoChannel, pl_type,
378 pl_type, webrtc::VP8Decoder::Create(), false);
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
video_engine_jni.cc 235 int RegisterExternalReceiveCodec(jint channel, jint pl_type, jobject decoder,
242 channel, pl_type, external_decoders_[channel], internal_source);
245 int DeRegisterExternalReceiveCodec(jint channel, jint pl_type) {
249 CHECK(externalCodec->DeRegisterExternalReceiveCodec(channel, pl_type) == 0,
478 jint channel, jint pl_type,
482 return vie_data->RegisterExternalReceiveCodec(channel, pl_type, decoder,
488 jint channel, jint pl_type) {
490 return vie_data->DeRegisterExternalReceiveCodec(channel, pl_type);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module_impl.cc 1590 uint8_t pl_type = static_cast<uint8_t>(ACMCodecDB::database_[i].pltype); local
    [all...]

Completed in 1128 milliseconds