Files
eden/src/video_core/command_classes/nvdec.h
T

39 lines
809 B
C++
Raw Normal View History

2020-10-26 23:07:36 -04: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 02:09:17 -04:00
#include <memory>
2020-10-26 23:07:36 -04:00
#include <vector>
#include "common/common_types.h"
#include "video_core/command_classes/codecs/codec.h"
namespace Tegra {
class GPU;
class Nvdec {
public:
enum class Method : u32 {
SetVideoCodec = 0x80,
Execute = 0xc0,
};
explicit Nvdec(GPU& gpu);
~Nvdec();
/// Writes the method into the state, Invoke Execute() if encountered
2020-11-23 15:01:40 -05:00
void ProcessMethod(Method method, u32 argument);
2020-10-26 23:07:36 -04:00
/// Return most recently decoded frame
2020-11-25 17:10:44 -05:00
[[nodiscard]] AVFramePtr GetFrame();
2020-10-26 23:07:36 -04:00
private:
/// Invoke codec to decode a frame
void Execute();
GPU& gpu;
2020-10-27 02:09:17 -04:00
std::unique_ptr<Codec> codec;
2020-10-26 23:07:36 -04:00
};
} // namespace Tegra