blob: 9f800e2581f72849af8e7754f7bfb73e09df6a34 [file] [log] [blame]
/*
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "media/base/rid_description.h"
#include <string>
#include "absl/strings/string_view.h"
namespace webrtc {
RidDescription::RidDescription() = default;
RidDescription::RidDescription(absl::string_view rid, RidDirection direction)
: rid{rid}, direction{direction} {}
RidDescription::RidDescription(const RidDescription& other) = default;
RidDescription::~RidDescription() = default;
RidDescription& RidDescription::operator=(const RidDescription& other) =
default;
bool RidDescription::operator==(const RidDescription& other) const {
return rid == other.rid && direction == other.direction &&
codecs == other.codecs && restrictions == other.restrictions;
}
} // namespace webrtc