Home
last modified time | relevance | path

Searched refs:current_send_codec (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Dvideo_sender.cc444 VideoCodec current_send_codec; in SuspendBelowMinBitrate() local
445 if (SendCodec(&current_send_codec) != 0) { in SuspendBelowMinBitrate()
450 if (current_send_codec.numberOfSimulcastStreams == 0) { in SuspendBelowMinBitrate()
451 threshold_bps = current_send_codec.minBitrate * 1000; in SuspendBelowMinBitrate()
453 threshold_bps = current_send_codec.simulcastStream[0].minBitrate * 1000; in SuspendBelowMinBitrate()
Dcodec_database.h78 bool SendCodec(VideoCodec* current_send_codec) const;
Dcodec_database.cc247 bool VCMCodecDataBase::SendCodec(VideoCodec* current_send_codec) const { in SendCodec()
251 memcpy(current_send_codec, &send_codec_, sizeof(VideoCodec)); in SendCodec()
/external/chromium_org/third_party/webrtc/video_engine/
Dvie_encoder.cc304 webrtc::VideoCodec current_send_codec; in DeRegisterExternalEncoder() local
305 if (vcm_.SendCodec(&current_send_codec) == VCM_OK) { in DeRegisterExternalEncoder()
310 current_send_codec.startBitrate = (current_bitrate_bps + 500) / 1000; in DeRegisterExternalEncoder()
319 if (current_send_codec.plType == pl_type) { in DeRegisterExternalEncoder()
324 send_padding_ = current_send_codec.numberOfSimulcastStreams > 1; in DeRegisterExternalEncoder()
330 current_send_codec.extra_options = NULL; in DeRegisterExternalEncoder()
331 if (vcm_.RegisterSendCodec(&current_send_codec, number_of_cores_, in DeRegisterExternalEncoder()
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
Daudio_coding_module.h285 virtual int32_t SendCodec(CodecInst* current_send_codec) const = 0;