Forward.h 278 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Video {
  8. class DecoderError;
  9. class FrameQueueItem;
  10. class PlaybackManager;
  11. class Sample;
  12. class Track;
  13. class VideoDecoder;
  14. class VideoFrame;
  15. }