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

/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Ddecoder_database.h39 struct DecoderInfo { struct in class:webrtc::DecoderDatabase
40 DecoderInfo() = default;
41 DecoderInfo(NetEqDecoder ct, int fs, AudioDecoder* dec, bool ext) function in struct:webrtc::DecoderDatabase::DecoderInfo
42 : DecoderInfo(ct, "", fs, dec, ext) {}
43 DecoderInfo(NetEqDecoder ct, function in struct:webrtc::DecoderDatabase::DecoderInfo
54 ~DecoderInfo();
84 // is only used to populate the name field in the DecoderInfo struct in the
103 // Returns a pointer to the DecoderInfo struct for |rtp_payload_type|. If
105 virtual const DecoderInfo* GetDecoderInfo(uint8_t rtp_payload_type) const;
153 typedef std::map<uint8_t, DecoderInfo> DecoderMa
[all...]
H A Ddecoder_database.cc27 DecoderDatabase::DecoderInfo::~DecoderInfo() {
51 DecoderInfo info(codec_type, name, fs_hz, NULL, false);
78 DecoderInfo info(codec_type, codec_name, fs_hz, decoder, true);
101 const DecoderDatabase::DecoderInfo* DecoderDatabase::GetDecoderInfo(
134 DecoderInfo* info = &(*it).second;

Completed in 247 milliseconds