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_encoder.cc 273 uint8_t pl_type,
278 if (vcm_.RegisterExternalEncoder(encoder, pl_type, internal_source) !=
285 int32_t ViEEncoder::DeRegisterExternalEncoder(uint8_t pl_type) {
295 if (vcm_.RegisterExternalEncoder(NULL, pl_type) != VCM_OK) {
301 if (current_send_codec.plType == pl_type) {
316 << static_cast<int>(pl_type) << ") and therefore tried to "
vie_channel.h 91 int32_t RegisterExternalDecoder(const uint8_t pl_type,
95 int32_t DeRegisterExternalDecoder(const uint8_t pl_type);
vie_channel.cc 417 // Don't log this error, no way to check in advance if this pl_type is
471 int32_t ViEChannel::RegisterExternalDecoder(const uint8_t pl_type,
476 result = vcm_->RegisterExternalDecoder(decoder, pl_type, buffered_rendering);
483 int32_t ViEChannel::DeRegisterExternalDecoder(const uint8_t pl_type) {
487 if (vcm_->RegisterExternalDecoder(NULL, pl_type, false) != VCM_OK) {
491 if (result == 0 && current_receive_codec.plType == pl_type) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
bundlefilter.cc 62 int pl_type = 0; local
64 if (!GetRtcpType(data, len, &pl_type)) return false;
65 if (pl_type == kRtcpTypeSDES) {
110 bool BundleFilter::FindPayloadType(int pl_type) const {
111 return payload_types_.find(pl_type) != payload_types_.end();
bundlefilter.h 69 bool FindPayloadType(int pl_type) const;
channel_unittest.cc 371 bool SendCustomRtp1(uint32 ssrc, int sequence_number, int pl_type = -1) {
372 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
376 bool SendCustomRtp2(uint32 ssrc, int sequence_number, int pl_type = -1) {
377 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
408 bool CheckCustomRtp1(uint32 ssrc, int sequence_number, int pl_type = -1 ) {
409 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
413 bool CheckCustomRtp2(uint32 ssrc, int sequence_number, int pl_type = -1) {
414 std::string data(CreateRtpData(ssrc, sequence_number, pl_type));
428 std::string CreateRtpData(uint32 ssrc, int sequence_number, int pl_type) {
433 if (pl_type >= 0)
434 rtc::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 576 unsigned int pl_type) const {
579 ext_decoder_pl_types_.count(pl_type) != 0;
587 unsigned int pl_type) const {
590 ext_encoder_pl_types_.count(pl_type) != 0;
    [all...]
webrtcvideoengine.cc 527 void RegisterDecoder(int pl_type, webrtc::VideoDecoder* decoder) {
528 ASSERT(!IsDecoderRegistered(pl_type));
529 registered_decoders_[pl_type] = decoder;
531 bool IsDecoderRegistered(int pl_type) {
532 return registered_decoders_.count(pl_type) != 0;
810 void RegisterEncoder(int pl_type, webrtc::VideoEncoder* encoder) {
811 ASSERT(!IsEncoderRegistered(pl_type));
812 registered_encoders_[pl_type] = encoder;
814 bool IsEncoderRegistered(int pl_type) {
815 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 1593 uint8_t pl_type = static_cast<uint8_t>(ACMCodecDB::database_[i].pltype); local
    [all...]

Completed in 495 milliseconds