diff options
| author | 2022-01-30 10:31:13 +0100 | |
|---|---|---|
| committer | 2022-10-06 21:00:52 +0200 | |
| commit | 668e80a9f42fb4ce0e16f6381d05bcbd286b2da1 (patch) | |
| tree | a1c668d6c3d00eade849b1d31dba4116095e4c12 /src/video_core/host1x/nvdec.h | |
| parent | Texture Cache: Fix GC and GPU Modified on Joins. (diff) | |
| download | yuzu-668e80a9f42fb4ce0e16f6381d05bcbd286b2da1.tar.gz yuzu-668e80a9f42fb4ce0e16f6381d05bcbd286b2da1.tar.xz yuzu-668e80a9f42fb4ce0e16f6381d05bcbd286b2da1.zip | |
VideoCore: Refactor syncing.
Diffstat (limited to 'src/video_core/host1x/nvdec.h')
| -rw-r--r-- | src/video_core/host1x/nvdec.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/video_core/host1x/nvdec.h b/src/video_core/host1x/nvdec.h new file mode 100644 index 000000000..41ba1f7a0 --- /dev/null +++ b/src/video_core/host1x/nvdec.h | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | // SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include <memory> | ||
| 7 | #include <vector> | ||
| 8 | #include "common/common_types.h" | ||
| 9 | #include "video_core/host1x/codecs/codec.h" | ||
| 10 | |||
| 11 | namespace Tegra { | ||
| 12 | class GPU; | ||
| 13 | |||
| 14 | namespace Host1x { | ||
| 15 | |||
| 16 | class Nvdec { | ||
| 17 | public: | ||
| 18 | explicit Nvdec(GPU& gpu); | ||
| 19 | ~Nvdec(); | ||
| 20 | |||
| 21 | /// Writes the method into the state, Invoke Execute() if encountered | ||
| 22 | void ProcessMethod(u32 method, u32 argument); | ||
| 23 | |||
| 24 | /// Return most recently decoded frame | ||
| 25 | [[nodiscard]] AVFramePtr GetFrame(); | ||
| 26 | |||
| 27 | private: | ||
| 28 | /// Invoke codec to decode a frame | ||
| 29 | void Execute(); | ||
| 30 | |||
| 31 | GPU& gpu; | ||
| 32 | NvdecCommon::NvdecRegisters state; | ||
| 33 | std::unique_ptr<Codec> codec; | ||
| 34 | }; | ||
| 35 | |||
| 36 | } // namespace Host1x | ||
| 37 | |||
| 38 | } // namespace Tegra | ||