Searched defs:codec_type (Results 1 - 11 of 11) sorted by relevance

/external/webrtc/webrtc/call/
H A Dpacket_injection_tests.cc27 void InjectIncorrectPacket(CodecType codec_type,
35 void PacketInjectionTest::InjectIncorrectPacket(CodecType codec_type, argument
46 switch (codec_type) {
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Daudio_decoder_impl.cc76 bool CodecSupported(NetEqDecoder codec_type) { argument
77 switch (codec_type) {
123 int CodecSampleRateHz(NetEqDecoder codec_type) { argument
124 switch (codec_type) {
178 AudioDecoder* CreateAudioDecoder(NetEqDecoder codec_type) { argument
179 if (!CodecSupported(codec_type)) {
182 switch (codec_type) {
H A Ddecoder_database.h48 : codec_type(ct),
56 NetEqDecoder codec_type = NetEqDecoder::kDecoderArbitrary; member in struct:webrtc::DecoderDatabase::DecoderInfo
83 // Registers |rtp_payload_type| as a decoder of type |codec_type|. The |name|
88 NetEqDecoder codec_type,
92 // as a decoder of type |codec_type| with |rtp_payload_type|.
94 NetEqDecoder codec_type,
107 // Returns one RTP payload type associated with |codec_type|, or
109 // |codec_type| may be registered with several RTP payload types, and the
111 virtual uint8_t GetRtpPayloadType(NetEqDecoder codec_type) const;
118 // Returns true if |rtp_payload_type| is registered as a |codec_type|
[all...]
H A Ddecoder_database.cc42 NetEqDecoder codec_type,
47 if (!CodecSupported(codec_type)) {
50 const int fs_hz = CodecSampleRateHz(codec_type);
51 DecoderInfo info(codec_type, name, fs_hz, NULL, false);
61 NetEqDecoder codec_type,
68 if (!CodecSupported(codec_type)) {
78 DecoderInfo info(codec_type, codec_name, fs_hz, decoder, true);
112 NetEqDecoder codec_type) const {
115 if ((*it).second.codec_type == codec_type) {
41 RegisterPayload(uint8_t rtp_payload_type, NetEqDecoder codec_type, const std::string& name) argument
60 InsertExternal(uint8_t rtp_payload_type, NetEqDecoder codec_type, const std::string& codec_name, int fs_hz, AudioDecoder* decoder) argument
[all...]
H A Dneteq_impl_unittest.cc242 NetEqDecoder codec_type = NetEqDecoder::kDecoderPCMu; local
245 RegisterPayload(rtp_payload_type, codec_type, kCodecName));
246 neteq_->RegisterPayloadType(codec_type, kCodecName, rtp_payload_type);
304 info.codec_type = NetEqDecoder::kDecoderPCMu;
/external/webrtc/webrtc/modules/video_coding/test/
H A Drtp_player.h29 VideoCodecType codec_type)
32 codec_type_(codec_type) {}
36 VideoCodecType codec_type() const { return codec_type_; } function in class:webrtc::rtpplayer::PayloadCodecTuple
27 PayloadCodecTuple(uint8_t payload_type, const std::string& codec_name, VideoCodecType codec_type) argument
/external/webrtc/webrtc/video/
H A Dvideo_decoder.cc20 VideoDecoder* VideoDecoder::Create(VideoDecoder::DecoderType codec_type) { argument
21 switch (codec_type) {
37 VideoDecoder::DecoderType CodecTypeToDecoderType(VideoCodecType codec_type) { argument
38 switch (codec_type) {
51 VideoCodecType codec_type,
53 : decoder_type_(CodecTypeToDecoderType(codec_type)),
50 VideoDecoderSoftwareFallbackWrapper( VideoCodecType codec_type, VideoDecoder* decoder) argument
H A Dvideo_encoder.cc20 VideoEncoder* VideoEncoder::Create(VideoEncoder::EncoderType codec_type) { argument
21 switch (codec_type) {
37 VideoEncoder::EncoderType CodecToEncoderType(VideoCodecType codec_type) { argument
38 switch (codec_type) {
51 VideoCodecType codec_type,
55 encoder_type_(CodecToEncoderType(codec_type)),
50 VideoEncoderSoftwareFallbackWrapper( VideoCodecType codec_type, webrtc::VideoEncoder* encoder) argument
H A Dvie_encoder.cc346 VideoCodecType codec_type; local
355 codec_type = encoder_config_.codecType;
380 if (codec_type == webrtc::kVideoCodecVP8) {
/external/webrtc/webrtc/modules/video_coding/
H A Dcodec_database.cc119 void VCMCodecDataBase::Codec(VideoCodecType codec_type, VideoCodec* settings) { argument
121 switch (codec_type) {
/external/webrtc/webrtc/modules/video_coding/codecs/test/
H A Dvideoprocessor_integrationtest.cc40 VideoCodecType codec_type; member in struct:webrtc::CodecConfigPars
423 codec_type_ = process.codec_type;
532 VideoCodecType codec_type,
540 process_settings->codec_type = codec_type;
531 SetCodecParameters(CodecConfigPars* process_settings, VideoCodecType codec_type, float packet_loss, int key_frame_interval, int num_temporal_layers, bool error_concealment_on, bool denoising_on, bool frame_dropper_on, bool spatial_resize_on) argument

Completed in 4244 milliseconds