Searched defs:CodecId (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Dacm_codec_database.cc225 int codec_id = CodecId(codec_inst);
290 int ACMCodecDB::CodecId(const CodecInst& codec_inst) { function in class:webrtc::acm2::ACMCodecDB
291 return (CodecId(codec_inst.plname, codec_inst.plfreq,
295 int ACMCodecDB::CodecId(const char* payload_name, function in class:webrtc::acm2::ACMCodecDB
328 return CodecId(codec_inst);
H A Drent_a_codec.h43 enum class CodecId { class in class:webrtc::acm2::RentACodec
146 return static_cast<size_t>(CodecId::kNumCodecs);
149 static inline rtc::Optional<int> CodecIndexFromId(CodecId codec_id) {
156 static inline rtc::Optional<CodecId> CodecIdFromIndex(int codec_index) {
158 ? rtc::Optional<RentACodec::CodecId>(
159 static_cast<RentACodec::CodecId>(codec_index))
160 : rtc::Optional<RentACodec::CodecId>();
163 static rtc::Optional<CodecId> CodecIdByParams(const char* payload_name,
166 static rtc::Optional<CodecInst> CodecInstById(CodecId codec_id);
167 static rtc::Optional<CodecId> CodecIdByIns
[all...]

Completed in 109 milliseconds