// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_CAST_STREAMING_BROWSER_PUBLIC_RECEIVER_CONFIG_H_ #define COMPONENTS_CAST_STREAMING_BROWSER_PUBLIC_RECEIVER_CONFIG_H_ #include <optional> #include <vector> #include "base/time/time.h" #include "media/base/audio_codecs.h" #include "media/base/channel_layout.h" #include "media/base/video_codecs.h" #include "ui/gfx/geometry/rect.h" namespace cast_streaming { // Note: embedders are required to implement the following codecs to be // compatible with Cast Streaming senders: h.264, vp8, aac, opus. class ReceiverConfig { … }; } // namespace cast_streaming #endif // COMPONENTS_CAST_STREAMING_BROWSER_PUBLIC_RECEIVER_CONFIG_H_