2020-10-27 03:07:36 +00:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-27 06:09:17 +00:00
|
|
|
#include <memory>
|
2020-10-27 03:07:36 +00:00
|
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "video_core/command_classes/codecs/codec.h"
|
|
|
|
|
|
|
|
namespace Tegra {
|
|
|
|
class GPU;
|
|
|
|
|
|
|
|
class Nvdec {
|
|
|
|
public:
|
|
|
|
explicit Nvdec(GPU& gpu);
|
|
|
|
~Nvdec();
|
|
|
|
|
|
|
|
/// Writes the method into the state, Invoke Execute() if encountered
|
2021-06-29 04:54:54 +00:00
|
|
|
void ProcessMethod(u32 method, u32 argument);
|
2020-10-27 03:07:36 +00:00
|
|
|
|
|
|
|
/// Return most recently decoded frame
|
2020-11-25 22:10:44 +00:00
|
|
|
[[nodiscard]] AVFramePtr GetFrame();
|
2020-10-27 03:07:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Invoke codec to decode a frame
|
|
|
|
void Execute();
|
|
|
|
|
|
|
|
GPU& gpu;
|
2021-06-29 04:54:54 +00:00
|
|
|
NvdecCommon::NvdecRegisters state;
|
2020-10-27 06:09:17 +00:00
|
|
|
std::unique_ptr<Codec> codec;
|
2020-10-27 03:07:36 +00:00
|
|
|
};
|
|
|
|
} // namespace Tegra
|