57std::vector<MediaAttribute>
80std::pair<bool, MediaType>
84 if (
iter == map.end()) {
90 JAMI_ERR(
"Invalid value [%s] for a media type key in media map",
iter->second.c_str());
100 const auto&
iter = map.find(key);
101 if (
iter == map.end()) {
102 return {
false,
false};
109 return {
true,
false};
111 JAMI_ERR(
"Invalid value %s for a boolean key",
value.c_str());
112 return {
false,
false};
115std::pair<bool, std::string>
118 const auto&
iter = map.find(key);
119 if (
iter == map.end()) {
123 return {
true,
iter->second};
149 return media.type_ == type;
169std::vector<libjami::MediaMap>
172 std::vector<libjami::MediaMap>
mediaList;
184 std::ostringstream
descr;
static constexpr const char TRUE_STR[]
void emitSignal(Args... args)
static constexpr const char FALSE_STR[]
std::map< std::string, std::string > MediaMap