HomeSort by relevance Sort by last modified time
    Searched defs:DecoderInfo (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
decoder_database.h 40 struct DecoderInfo {
42 DecoderInfo()
48 DecoderInfo(NetEqDecoder ct, int fs, AudioDecoder* dec, bool ext)
55 ~DecoderInfo();
98 // Returns a pointer to the DecoderInfo struct for |rtp_payload_type|. If
100 virtual const DecoderInfo* GetDecoderInfo(uint8_t rtp_payload_type) const;
148 typedef std::map<uint8_t, DecoderInfo> DecoderMap;
decoder_database.cc 25 DecoderDatabase::DecoderInfo::~DecoderInfo() {
49 DecoderInfo info(codec_type, fs_hz, NULL, false);
76 DecoderInfo info(codec_type, fs_hz, decoder, true);
78 std::pair<uint8_t, DecoderInfo>(rtp_payload_type, info));
100 const DecoderDatabase::DecoderInfo* DecoderDatabase::GetDecoderInfo(
133 DecoderInfo* info = &(*it).second;

Completed in 313 milliseconds