#include "cast/streaming/public/capture_recommendations.h"
#include <algorithm>
#include <utility>
#include "cast/streaming/public/answer_messages.h"
#include "util/osp_logging.h"
namespace openscreen::cast {
namespace capture_recommendations {
namespace {
void ApplyDisplay(const DisplayDescription& description,
Recommendations* recommendations) { … }
void ApplyConstraints(const Constraints& constraints,
Recommendations* recommendations) { … }
}
bool BitRateLimits::operator==(const BitRateLimits& other) const { … }
bool Audio::operator==(const Audio& other) const { … }
bool Video::operator==(const Video& other) const { … }
bool Recommendations::operator==(const Recommendations& other) const { … }
Recommendations GetRecommendations(const Answer& answer) { … }
}
}