/*
* 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
Messung V0.5 in Prozent C=90 H=99 G=94
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet am 2026-08-27)
¤
*© Formatika GbR, Deutschland