| /* |
| * Copyright 2025 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. |
| */ |
| |
| #ifndef PC_TYPED_CODEC_VENDOR_H_ |
| #define PC_TYPED_CODEC_VENDOR_H_ |
| |
| #include <utility> |
| |
| #include "api/field_trials_view.h" |
| #include "api/media_types.h" |
| #include "media/base/codec_list.h" |
| #include "media/base/media_engine.h" |
| |
| namespace webrtc { |
| |
| // This class vends codecs of a specific type only. |
| // It is intended to eventually be owned by the RtpSender and RtpReceiver |
| // objects. |
| class TypedCodecVendor { |
| public: |
| // Constructor for the case where media engine is not provided. The resulting |
| // vendor will always return an empty codec list. |
| TypedCodecVendor() = default; |
| |
| // Copying, move assignment+construction is allowed. |
| TypedCodecVendor(TypedCodecVendor&&) = default; |
| TypedCodecVendor& operator=(TypedCodecVendor&& from) = default; |
| TypedCodecVendor(const TypedCodecVendor& from) = default; |
| TypedCodecVendor& operator=(const TypedCodecVendor& from) = default; |
| |
| // TODO: bugs.webrtc.org/412904801 - This constructor is provided as |
| // part of the `CodecVendor::ModifyVideoCodecs` workaround. |
| explicit TypedCodecVendor(CodecList codecs) : codecs_(std::move(codecs)) {} |
| |
| TypedCodecVendor(const MediaEngineInterface* media_engine, |
| MediaType type, |
| bool is_sender, |
| bool rtx_enabled, |
| const FieldTrialsView& trials); |
| |
| const CodecList& codecs() const { return codecs_; } |
| |
| private: |
| // Effectively const, but not marked as such since that breaks move semantics. |
| CodecList codecs_; |
| }; |
| |
| } // namespace webrtc |
| |
| |
| #endif // PC_TYPED_CODEC_VENDOR_H_ |