chromium/third_party/openscreen/src/cast/streaming/public/capture_recommendations.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace

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) {}

}  // namespace capture_recommendations
}  // namespace openscreen::cast