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

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_sender.cc 444 VideoCodec current_send_codec; local
445 if (SendCodec(&current_send_codec) != 0) {
450 if (current_send_codec.numberOfSimulcastStreams == 0) {
451 threshold_bps = current_send_codec.minBitrate * 1000;
453 threshold_bps = current_send_codec.simulcastStream[0].minBitrate * 1000;
codec_database.h 78 bool SendCodec(VideoCodec* current_send_codec) const;
codec_database.cc 247 bool VCMCodecDataBase::SendCodec(VideoCodec* current_send_codec) const {
251 memcpy(current_send_codec, &send_codec_, sizeof(VideoCodec));
  /external/chromium_org/third_party/webrtc/video_engine/
vie_encoder.cc 304 webrtc::VideoCodec current_send_codec; local
305 if (vcm_.SendCodec(&current_send_codec) == VCM_OK) {
310 current_send_codec.startBitrate = (current_bitrate_bps + 500) / 1000;
319 if (current_send_codec.plType == pl_type) {
324 send_padding_ = current_send_codec.numberOfSimulcastStreams > 1;
330 current_send_codec.extra_options = NULL;
331 if (vcm_.RegisterSendCodec(&current_send_codec, number_of_cores_,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
audio_coding_module.h 279 // -current_send_codec : parameters of the send codec.
285 virtual int32_t SendCodec(CodecInst* current_send_codec) const = 0;
    [all...]

Completed in 217 milliseconds