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

  /external/chromium_org/third_party/webrtc/voice_engine/
voe_codec_unittest.cc 56 CodecInst my_codec; local
67 EXPECT_EQ(0, voe_codec_->GetCodec(n, my_codec));
68 if (!STR_CASE_CMP(my_codec.plname, "isac") && my_codec.plfreq == 16000) {
69 memcpy(&valid_secondary_, &my_codec, sizeof(my_codec));
71 } else if (!STR_CASE_CMP(my_codec.plname, "isac") &&
72 my_codec.plfreq == 32000) {
73 memcpy(&invalid_secondary_, &my_codec, sizeof(my_codec));
138 CodecInst my_codec; local
166 CodecInst my_codec; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
dual_stream_unittest.cc 113 CodecInst my_codec; local
121 AudioCodingModule::Codec(n, &my_codec);
122 if (strcmp(my_codec.plname, "ISAC") == 0
123 && my_codec.plfreq == sampling_rate) {
124 my_codec.rate = 32000;
125 my_codec.pacsize = 30 * sampling_rate / 1000;
126 memcpy(&secondary_encoder_, &my_codec, sizeof(my_codec));
127 } else if (strcmp(my_codec.plname, "L16") == 0
128 && my_codec.channels == num_channels_primar
491 CodecInst my_codec; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_receiver_unittest.cc 167 CodecInst my_codec; local
171 &my_codec));
172 EXPECT_TRUE(CodecsEqual(codecs_[n], my_codec));
176 &my_codec));
acm_receiver_unittest_oldapi.cc 171 CodecInst my_codec; local
175 &my_codec));
176 EXPECT_TRUE(CodecsEqual(codecs_[n], my_codec));
180 &my_codec));
audio_coding_module_impl.cc 743 ACMGenericCodec* my_codec = NULL; local
745 my_codec = ACMCodecDB::CreateCodecInstance(codec);
746 if (my_codec == NULL) {
750 return my_codec;
752 my_codec->SetUniqueID(id_);
754 return my_codec;
    [all...]

Completed in 543 milliseconds