Lines Matching refs:Codec
80 struct Codec { struct
89 Codec(int id, const std::string& name, int clockrate, int preference); argument
91 Codec();
92 Codec(const Codec& c);
93 ~Codec();
96 bool Matches(const Codec& codec) const;
112 static bool Preferable(const Codec& first, const Codec& other) { in Preferable() argument
118 void IntersectFeedbackParams(const Codec& other);
120 Codec& operator=(const Codec& c); argument
122 bool operator==(const Codec& c) const;
124 bool operator!=(const Codec& c) const {
129 struct AudioCodec : public Codec {
163 struct VideoCodec : public Codec {
212 struct DataCodec : public Codec {
224 template <class Codec>
225 bool FindCodecById(const std::vector<Codec>& codecs, in FindCodecById()
227 Codec* codec_out) { in FindCodecById()