Lines Matching defs:Codec
80 struct Codec {
89 Codec(int id, const std::string& name, int clockrate, int preference);
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) {
118 void IntersectFeedbackParams(const Codec& other);
120 Codec& operator=(const Codec& c);
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,
227 Codec* codec_out) {