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

  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
file_test.cc 56 webrtc::CodecInst send_codec; local
57 voe_codec_->GetSendCodec(channel_, send_codec);
64 channel_, recording_filename.c_str(), &send_codec));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module_impl.cc 758 static int IsValidSendCodec(const CodecInst& send_codec,
762 if ((send_codec.channels != 1) && (send_codec.channels != 2)) {
765 "supported) for %s encoder", send_codec.channels,
770 int codec_id = ACMCodecDB::CodecNumber(send_codec, mirror_id);
780 if (!ACMCodecDB::ValidPayloadType(send_codec.pltype)) {
782 "Invalid payload-type %d for %s.", send_codec.pltype,
783 send_codec.plname);
788 if (!STR_CASE_CMP(send_codec.plname, "telephone-event")) {
796 < send_codec.channels)
    [all...]
audio_coding_module_impl.h 59 int RegisterSendCodec(const CodecInst& send_codec);
63 int RegisterSecondarySendCodec(const CodecInst& send_codec);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
codec_database.cc 151 const VideoCodec* send_codec,
155 if (!send_codec) {
164 if (send_codec->plType <= 0) {
168 if (send_codec->startBitrate > 1000000) {
171 if (send_codec->codecType == kVideoCodecUnknown) {
185 memcpy(&new_send_codec, send_codec, sizeof(new_send_codec));
189 new_send_codec.maxBitrate = (static_cast<int>(send_codec->height) *
190 static_cast<int>(send_codec->width) *
191 static_cast<int>(send_codec->maxFramerate)) / 1000;
192 if (send_codec->startBitrate > new_send_codec.maxBitrate)
    [all...]
codec_database.h 71 bool SetSendCodec(const VideoCodec* send_codec,
163 bool RequiresEncoderReset(const VideoCodec& send_codec);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
hybridvideoengine.cc 158 VideoCodec send_codec; local
159 return_value = active_channel_->GetSendCodec(&send_codec);
163 engine_->OnNewSendResolution(send_codec.width, send_codec.height);
164 active_channel_->UpdateAspectRatio(send_codec.width, send_codec.height);
168 bool HybridVideoMediaChannel::GetSendCodec(VideoCodec* send_codec) {
172 return active_channel_->GetSendCodec(send_codec);
filemediaengine.h 277 virtual bool GetSendCodec(VideoCodec* send_codec) {
278 *send_codec = VideoCodec();
fakemediaengine.h 542 virtual bool GetSendCodec(VideoCodec* send_codec) {
546 *send_codec = send_codecs_[0];
    [all...]
mediachannel.h     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
audio_coding_module.h 220 // Registers a codec, specified by |send_codec|, as sending codec.
237 // -send_codec : Parameters of the codec to be registered, c.f.
245 virtual int32_t RegisterSendCodec(const CodecInst& send_codec) = 0;
258 // -send_codec : Parameters of the codec to be registered, c.f.
266 virtual int RegisterSecondarySendCodec(const CodecInst& send_codec) = 0;
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_encoder.cc 847 VideoCodec send_codec; local
848 if (vcm_.SendCodec(&send_codec) != 0) {
851 SimulcastStream* stream_configs = send_codec.simulcastStream;
856 send_codec.numberOfSimulcastStreams);
861 if (send_codec.numberOfSimulcastStreams == 0) {
862 pad_up_to_bitrate_kbps = send_codec.minBitrate;
865 stream_configs[send_codec.numberOfSimulcastStreams - 1].minBitrate;
866 for (int i = 0; i < send_codec.numberOfSimulcastStreams - 1; ++i) {
873 if (!video_is_suspended && send_codec.numberOfSimulcastStreams <= 1)
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvoiceengine.h 118 memset(&send_codec, 0, sizeof(send_codec));
150 webrtc::CodecInst send_codec; member in struct:cricket::FakeWebRtcVoiceEngine::Channel
431 channels_[channel]->send_codec = codec;
437 codec = channels_[channel]->send_codec;
530 if (channels_[channel]->send_codec.channels == 2) {
830 webrtc::CodecInst send_codec = channels_[channel]->send_codec; local
831 if (send_codec.pltype >= 0) {
833 if (send_codec.plfreq / 1000 > 0)
    [all...]
webrtcvoiceengine.h 381 webrtc::CodecInst* send_codec);
399 bool SetSendCodec(const webrtc::CodecInst& send_codec);
400 bool SetSendCodec(int channel, const webrtc::CodecInst& send_codec);
fakewebrtcvideoengine.h 299 memset(&send_codec, 0, sizeof(send_codec));
332 webrtc::VideoCodec send_codec; member in struct:cricket::FakeWebRtcVideoEngine::Channel
755 channels_[channel]->send_codec = codec;
762 codec = channels_.find(channel)->second->send_codec;
    [all...]
webrtcvoiceengine.cc 1984 webrtc::CodecInst send_codec; local
    [all...]
webrtcvideoengine2.h 214 virtual bool GetSendCodec(VideoCodec* send_codec) OVERRIDE;
webrtcvideoengine.h 256 virtual bool GetSendCodec(VideoCodec* send_codec);
webrtcvideoengine_unittest.cc 1649 webrtc::VideoCodec send_codec; local
    [all...]
webrtcvideoengine.cc     [all...]

Completed in 842 milliseconds