Lines Matching defs:StreamParams
91 struct StreamParams { struct
96 StreamParams& operator=(const StreamParams&); argument
97 StreamParams& operator=(StreamParams&&); argument
99 static StreamParams CreateLegacy(uint32_t ssrc) { in CreateLegacy() argument
108 uint32_t first_ssrc() const { in first_ssrc()
115 bool has_ssrcs() const { return !ssrcs.empty(); } in has_ssrcs()
116 bool has_ssrc(uint32_t ssrc) const { in has_ssrc()
119 void add_ssrc(uint32_t ssrc) { ssrcs.push_back(ssrc); } in add_ssrc()
120 bool has_ssrc_groups() const { return !ssrc_groups.empty(); } in has_ssrc_groups()
121 bool has_ssrc_group(const std::string& semantics) const { in has_ssrc_group()
124 const SsrcGroup* get_ssrc_group(const std::string& semantics) const { in get_ssrc_group()
157 // Convenience function to populate the StreamParams with the requested number argument
188 std::string id;
213 // The stream IDs of the sender that the StreamParams object is associated argument
228 bool Matches(const StreamParams& stream) const { in Matches() argument