Home
last modified time | relevance | path

Searched refs:codec_type (Results 1 – 25 of 29) sorted by relevance

12

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddecoder_database.cc42 NetEqDecoder codec_type, in RegisterPayload() argument
47 if (!CodecSupported(codec_type)) { in RegisterPayload()
50 const int fs_hz = CodecSampleRateHz(codec_type); in RegisterPayload()
51 DecoderInfo info(codec_type, name, fs_hz, NULL, false); in RegisterPayload()
61 NetEqDecoder codec_type, in InsertExternal() argument
68 if (!CodecSupported(codec_type)) { in InsertExternal()
78 DecoderInfo info(codec_type, codec_name, fs_hz, decoder, true); in InsertExternal()
112 NetEqDecoder codec_type) const { in GetRtpPayloadType()
115 if ((*it).second.codec_type == codec_type) { in GetRtpPayloadType()
137 AudioDecoder* decoder = CreateAudioDecoder(info->codec_type); in GetDecoder()
[all …]
Ddecoder_database.h48 : codec_type(ct), in DecoderInfo()
56 NetEqDecoder codec_type = NetEqDecoder::kDecoderArbitrary; member
88 NetEqDecoder codec_type,
94 NetEqDecoder codec_type,
111 virtual uint8_t GetRtpPayloadType(NetEqDecoder codec_type) const;
120 NetEqDecoder codec_type) const;
Daudio_decoder_impl.cc76 bool CodecSupported(NetEqDecoder codec_type) { in CodecSupported() argument
77 switch (codec_type) { in CodecSupported()
123 int CodecSampleRateHz(NetEqDecoder codec_type) { in CodecSampleRateHz() argument
124 switch (codec_type) { in CodecSampleRateHz()
178 AudioDecoder* CreateAudioDecoder(NetEqDecoder codec_type) { in CreateAudioDecoder() argument
179 if (!CodecSupported(codec_type)) { in CreateAudioDecoder()
182 switch (codec_type) { in CreateAudioDecoder()
Dtimestamp_scaler_unittest.cc27 info.codec_type = in TEST()
48 info.codec_type = in TEST()
74 info.codec_type = NetEqDecoder::kDecoderG722; // Uses a factor 2 scaling. in TEST()
98 info.codec_type = NetEqDecoder::kDecoderG722; // Uses a factor 2 scaling. in TEST()
126 info_g722.codec_type = in TEST()
128 info_cng.codec_type = NetEqDecoder::kDecoderCNGwb; in TEST()
168 info.codec_type = in TEST()
197 info.codec_type = NetEqDecoder::kDecoderG722; // Uses a factor 2 scaling. in TEST()
226 info.codec_type = NetEqDecoder::kDecoderG722; // Uses a factor 2 scaling. in TEST()
266 info.codec_type = NetEqDecoder::kDecoderOpus; in TEST()
Daudio_decoder_impl.h63 bool CodecSupported(NetEqDecoder codec_type);
66 int CodecSampleRateHz(NetEqDecoder codec_type);
71 AudioDecoder* CreateAudioDecoder(NetEqDecoder codec_type);
Dtimestamp_scaler.cc46 switch (info->codec_type) { in ToInternal()
Ddecoder_database_unittest.cc55 EXPECT_EQ(NetEqDecoder::kDecoderPCMu, info->codec_type); in TEST()
140 EXPECT_EQ(NetEqDecoder::kDecoderPCMu, info->codec_type); in TEST()
Dpayload_splitter.cc154 switch (info->codec_type) { in SplitFec()
238 switch (info->codec_type) { in SplitAudio()
Dneteq_impl_unittest.cc242 NetEqDecoder codec_type = NetEqDecoder::kDecoderPCMu; in TEST_F() local
245 RegisterPayload(rtp_payload_type, codec_type, kCodecName)); in TEST_F()
246 neteq_->RegisterPayloadType(codec_type, kCodecName, rtp_payload_type); in TEST_F()
304 info.codec_type = NetEqDecoder::kDecoderPCMu; in TEST_F()
/external/webrtc/webrtc/video/
Dvideo_decoder.cc20 VideoDecoder* VideoDecoder::Create(VideoDecoder::DecoderType codec_type) { in Create() argument
21 switch (codec_type) { in Create()
37 VideoDecoder::DecoderType CodecTypeToDecoderType(VideoCodecType codec_type) { in CodecTypeToDecoderType() argument
38 switch (codec_type) { in CodecTypeToDecoderType()
51 VideoCodecType codec_type, in VideoDecoderSoftwareFallbackWrapper() argument
53 : decoder_type_(CodecTypeToDecoderType(codec_type)), in VideoDecoderSoftwareFallbackWrapper()
Dvideo_encoder.cc20 VideoEncoder* VideoEncoder::Create(VideoEncoder::EncoderType codec_type) { in Create() argument
21 switch (codec_type) { in Create()
37 VideoEncoder::EncoderType CodecToEncoderType(VideoCodecType codec_type) { in CodecToEncoderType() argument
38 switch (codec_type) { in CodecToEncoderType()
51 VideoCodecType codec_type, in VideoEncoderSoftwareFallbackWrapper() argument
55 encoder_type_(CodecToEncoderType(codec_type)), in VideoEncoderSoftwareFallbackWrapper()
Dvie_encoder.cc346 VideoCodecType codec_type; in DeliverFrame() local
355 codec_type = encoder_config_.codecType; in DeliverFrame()
380 if (codec_type == webrtc::kVideoCodecVP8) { in DeliverFrame()
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
Dmock_decoder_database.h33 int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
36 int(uint8_t rtp_payload_type, NetEqDecoder codec_type,
44 uint8_t(NetEqDecoder codec_type));
48 bool(uint8_t rtp_payload_type, NetEqDecoder codec_type));
Dmock_audio_decoder.h35 MOCK_CONST_METHOD0(codec_type, NetEqDecoder());
/external/webrtc/webrtc/call/
Dpacket_injection_tests.cc27 void InjectIncorrectPacket(CodecType codec_type,
35 void PacketInjectionTest::InjectIncorrectPacket(CodecType codec_type, in InjectIncorrectPacket() argument
46 switch (codec_type) { in InjectIncorrectPacket()
/external/webrtc/webrtc/modules/video_coding/test/
Drtp_player.h29 VideoCodecType codec_type) in PayloadCodecTuple() argument
32 codec_type_(codec_type) {} in PayloadCodecTuple()
36 VideoCodecType codec_type() const { return codec_type_; } in codec_type() function
Dvcm_payload_sink_factory.cc137 if (it->codec_type() != kVideoCodecULPFEC && in Create()
138 it->codec_type() != kVideoCodecRED) { in Create()
140 VideoCodingModule::Codec(it->codec_type(), &codec); in Create()
/external/webrtc/webrtc/
Dvideo_decoder.h59 static VideoDecoder* Create(DecoderType codec_type);
91 VideoDecoderSoftwareFallbackWrapper(VideoCodecType codec_type,
Dvideo_encoder.h47 static VideoEncoder* Create(EncoderType codec_type);
136 VideoEncoderSoftwareFallbackWrapper(VideoCodecType codec_type,
/external/u-boot/drivers/sound/
Dmax98095.c487 if (pcodec_info->codec_type == CODEC_MAX_98095) { in max98095_do_init()
491 pcodec_info->codec_type); in max98095_do_init()
564 pcodec_info->codec_type = CODEC_MAX_98095; in get_max98095_codec_values()
Dwm8994.c856 pcodec_info->codec_type = CODEC_WM_8994; in get_codec_values()
884 if (pcodec_info->codec_type == CODEC_WM_8994) { in wm8994_init()
888 pcodec_info->codec_type); in wm8994_init()
/external/u-boot/include/
Dsound.h28 enum en_sound_codec codec_type; member
/external/webrtc/webrtc/modules/video_coding/codecs/test/
Dvideoprocessor_integrationtest.cc40 VideoCodecType codec_type; member
423 codec_type_ = process.codec_type; in ProcessFramesAndVerify()
532 VideoCodecType codec_type, in SetCodecParameters() argument
540 process_settings->codec_type = codec_type; in SetCodecParameters()
/external/webrtc/webrtc/modules/video_coding/
Dcodec_database.h53 static void Codec(VideoCodecType codec_type, VideoCodec* settings);
Dcodec_database.cc119 void VCMCodecDataBase::Codec(VideoCodecType codec_type, VideoCodec* settings) { in Codec() argument
121 switch (codec_type) { in Codec()

12