Searched refs:pl_type (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/webrtc/video_engine/include/
H A Dvie_external_codec.h29 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/
H A Dvie_external_codec_impl.h28 const unsigned char pl_type,
32 const unsigned char pl_type);
34 const unsigned int pl_type,
39 const unsigned char pl_type);
H A Dvie_external_codec_impl.cc60 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, decode
59 RegisterExternalSendCodec(const int video_channel, const unsigned char pl_type, VideoEncoder* encoder, bool internal_source) argument
82 DeRegisterExternalSendCodec( const int video_channel, const unsigned char pl_type) argument
100 RegisterExternalReceiveCodec( const int video_channel, const unsigned int pl_type, VideoDecoder* decoder, bool decoder_render, int render_delay) argument
127 DeRegisterExternalReceiveCodec( const int video_channel, const unsigned char pl_type) argument
130 << ", pl_type " << pl_type; local
[all...]
H A Dvie_encoder.h77 uint8_t pl_type,
79 int32_t DeRegisterExternalEncoder(uint8_t pl_type);
H A Dvie_encoder.cc273 uint8_t pl_type,
278 if (vcm_.RegisterExternalEncoder(encoder, pl_type, internal_source) !=
285 int32_t ViEEncoder::DeRegisterExternalEncoder(uint8_t pl_type) { argument
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 "
272 RegisterExternalEncoder(webrtc::VideoEncoder* encoder, uint8_t pl_type, bool internal_source) argument
H A Dvie_channel.h91 int32_t RegisterExternalDecoder(const uint8_t pl_type,
95 int32_t DeRegisterExternalDecoder(const uint8_t pl_type);
H A Dvie_channel.cc417 // 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, argument
476 result = vcm_->RegisterExternalDecoder(decoder, pl_type, buffered_rendering);
483 int32_t ViEChannel::DeRegisterExternalDecoder(const uint8_t pl_type) { argument
487 if (vcm_->RegisterExternalDecoder(NULL, pl_type, false) != VCM_OK) {
491 if (result == 0 && current_receive_codec.plType == pl_type) {
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dbundlefilter.cc62 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();
H A Dbundlefilter.h69 bool FindPayloadType(int pl_type) const;
H A Dchannel_unittest.cc371 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) { argument
433 if (pl_type >
434 rtc::Set8(const_cast<char*>(data.c_str()), 1, pl_type); local
1722 TestSrtpError(int pl_type) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dproducer_fec.cc50 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);
49 CreateHeader(const uint8_t* rtp_header, int header_length, int red_pl_type, int pl_type) argument
H A Dproducer_fec.h27 int red_pl_type, int pl_type);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtputils.cc175 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/
H A Dfakewebrtcvideoengine.h576 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;
1255 (const int channel, const unsigned char pl_type, webrtc::VideoEncoder*,
1258 channels_[channel]->ext_encoder_pl_types_.insert(pl_type);
1262 (const int channel, const unsigned char pl_type)) {
1264 channels_[channel]->ext_encoder_pl_types_.erase(pl_type);
1268 (const int channel, const unsigned int pl_type, webrtc::VideoDecoder*,
1271 channels_[channel]->ext_decoder_pl_types_.insert(pl_type);
1254 WEBRTC_FUNC(RegisterExternalSendCodec, (const int channel, const unsigned char pl_type, webrtc::VideoEncoder*, bool)) argument
1261 WEBRTC_FUNC(DeRegisterExternalSendCodec, (const int channel, const unsigned char pl_type)) argument
1267 WEBRTC_FUNC(RegisterExternalReceiveCodec, (const int channel, const unsigned int pl_type, webrtc::VideoDecoder*, bool, int)) argument
1274 WEBRTC_FUNC(DeRegisterExternalReceiveCodec, (const int channel, const unsigned char pl_type)) argument
[all...]
H A Dwebrtcvideoengine.cc527 void RegisterDecoder(int pl_type, webrtc::VideoDecoder* decoder) { argument
528 ASSERT(!IsDecoderRegistered(pl_type));
529 registered_decoders_[pl_type] = decoder;
531 bool IsDecoderRegistered(int pl_type) { argument
532 return registered_decoders_.count(pl_type) != 0;
810 void RegisterEncoder(int pl_type, webrtc::VideoEncoder* encoder) { argument
811 ASSERT(!IsEncoderRegistered(pl_type));
812 registered_encoders_[pl_type] = encoder;
814 bool IsEncoderRegistered(int pl_type) { argument
815 return registered_encoders_.count(pl_type) !
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_loopback.cc369 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/
H A Dvideo_engine_jni.cc235 int RegisterExternalReceiveCodec(jint channel, jint pl_type, jobject decoder, argument
242 channel, pl_type, external_decoders_[channel], internal_source);
245 int DeRegisterExternalReceiveCodec(jint channel, jint pl_type) { argument
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/
H A Daudio_coding_module_impl.cc1593 uint8_t pl_type = static_cast<uint8_t>(ACMCodecDB::database_[i].pltype); local
1594 if (receiver_.AddCodec(i, pl_type, 1, NULL) < 0) {

Completed in 2476 milliseconds