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

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
codec_database.h 124 bool ReceiveCodec(VideoCodec* current_receive_codec) const;
127 VideoCodecType ReceiveCodec() const;
video_coding_impl.cc 241 virtual int32_t RegisterReceiveCodec(const VideoCodec* receiveCodec,
245 receiveCodec, numberOfCores, requireKeyFrame);
295 virtual int32_t ReceiveCodec(VideoCodec* currentReceiveCodec) const OVERRIDE {
296 return receiver_->ReceiveCodec(currentReceiveCodec);
299 virtual VideoCodecType ReceiveCodec() const OVERRIDE {
300 return receiver_->ReceiveCodec();
video_coding_impl.h 139 int32_t RegisterReceiveCodec(const VideoCodec* receiveCodec,
159 int32_t ReceiveCodec(VideoCodec* currentReceiveCodec) const;
160 VideoCodecType ReceiveCodec() const;
video_receiver.cc 601 int32_t VideoReceiver::RegisterReceiveCodec(const VideoCodec* receiveCodec,
605 if (receiveCodec == NULL) {
609 receiveCodec, numberOfCores, requireKeyFrame)) {
616 int32_t VideoReceiver::ReceiveCodec(VideoCodec* currentReceiveCodec) const {
621 return _codecDataBase.ReceiveCodec(currentReceiveCodec) ? 0 : -1;
625 VideoCodecType VideoReceiver::ReceiveCodec() const {
627 return _codecDataBase.ReceiveCodec();
codec_database.cc 505 bool VCMCodecDataBase::ReceiveCodec(VideoCodec* current_receive_codec) const {
514 VideoCodecType VCMCodecDataBase::ReceiveCodec() const {
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/interface/
video_coding.h 326 // - receiveCodec : Settings for the codec to be registered.
333 virtual int32_t RegisterReceiveCodec(const VideoCodec* receiveCodec,
450 virtual int32_t ReceiveCodec(VideoCodec* currentReceiveCodec) const = 0;
456 virtual VideoCodecType ReceiveCodec() const = 0;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
iSACTest.cc 146 CodecInst receiveCodec;
147 EXPECT_EQ(0, _acmA->ReceiveCodec(&receiveCodec));
148 EXPECT_EQ(0, _acmB->ReceiveCodec(&receiveCodec));
TestAllCodecs.cc 818 acm_b_->ReceiveCodec(&my_codec_param);
TestStereo.cc 908 acm_b_->ReceiveCodec(&my_codec_param);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
audio_coding_module.h 642 // int32_t ReceiveCodec()
654 virtual int32_t ReceiveCodec(CodecInst* curr_receive_codec) const = 0;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module_impl.h 155 virtual int ReceiveCodec(CodecInst* current_codec) const OVERRIDE;
audio_coding_module_impl.cc     [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
codec_database_test.cc 104 VideoCodec sendCodec, receiveCodec;
227 VideoCodingModule::Codec(kVideoCodecVP8, &receiveCodec);
228 receiveCodec.height = _height;
229 receiveCodec.width = _width;
230 TEST(_vcm->RegisterSendCodec(&receiveCodec, 4, 1440) == VCM_OK);
231 TEST(_vcm->RegisterReceiveCodec(&receiveCodec, 1, true) == VCM_OK); // Require key frame
300 VideoCodingModule::Codec(i, &receiveCodec);
301 if (strcmp(receiveCodec.plName, "I420") == 0)
303 receiveCodec.height = _height;
304 receiveCodec.width = _width
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel.cc 451 if (vcm_->ReceiveCodec(video_codec) != 0) {
486 result = vcm_->ReceiveCodec(&current_receive_codec);
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
channel.cc 372 CodecInst receiveCodec = {0};
375 receiveCodec.pltype = payloadType;
376 receiveCodec.plfreq = frequency;
377 receiveCodec.channels = channels;
378 receiveCodec.rate = rate;
379 strncpy(receiveCodec.plname, payloadName, RTP_PAYLOAD_NAME_SIZE - 1);
382 receiveCodec.pacsize = dummyCodec.pacsize;
385 if (audio_coding_->RegisterReceiveCodec(receiveCodec) == -1)
    [all...]

Completed in 76 milliseconds