chromium/media/cast/cast_config.h

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

#ifndef MEDIA_CAST_CAST_CONFIG_H_
#define MEDIA_CAST_CAST_CONFIG_H_

#include <stddef.h>
#include <stdint.h>

#include <optional>
#include <string>

#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "media/base/audio_codecs.h"
#include "media/base/video_codecs.h"

namespace media {
class VideoEncodeAccelerator;

namespace cast {

// Describes the content being transported over RTP streams.
enum class RtpPayloadType {};

// Desired end-to-end latency.
constexpr base::TimeDelta kDefaultTargetPlayoutDelay =;

enum SuggestedDefaults {};

// These parameters are only for video encoders.
struct VideoCodecParams {};

// These parameters are only for audio encoders.
struct AudioCodecParams {};

struct FrameSenderConfig {};

ReceiveVideoEncodeAcceleratorCallback;
CreateVideoEncodeAcceleratorCallback;
ReceiveVideoEncodeMemoryCallback;

}  // namespace cast
}  // namespace media

#endif  // MEDIA_CAST_CAST_CONFIG_H_