chromium/third_party/blink/renderer/platform/peerconnection/video_encoder_state_observer.h

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

#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_PEERCONNECTION_VIDEO_ENCODER_STATE_OBSERVER_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_PEERCONNECTION_VIDEO_ENCODER_STATE_OBSERVER_H_

#include <optional>

#include "base/time/time.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"

namespace webrtc {
class VideoCodec;
}  // namespace webrtc

namespace blink {
// VideoEncoderStateObserver is the interface used by
// blink::InstrumentedVideoEncoderWrapper to notify the state of its wrapping
// encoder.
class PLATFORM_EXPORT VideoEncoderStateObserver {};
}  // namespace blink
#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_PEERCONNECTION_VIDEO_ENCODER_STATE_OBSERVER_H_