2020-10-27 04:07:36 +01:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "video_core/command_classes/nvdec.h"
|
|
|
|
#include "video_core/gpu.h"
|
|
|
|
|
|
|
|
namespace Tegra {
|
|
|
|
|
|
|
|
Nvdec::Nvdec(GPU& gpu_) : gpu(gpu_), codec(std::make_unique<Codec>(gpu)) {}
|
|
|
|
|
|
|
|
Nvdec::~Nvdec() = default;
|
|
|
|
|
2020-10-27 07:09:17 +01:00
|
|
|
void Nvdec::ProcessMethod(Method method, const std::vector<u32>& arguments) {
|
2020-10-27 04:07:36 +01:00
|
|
|
if (method == Method::SetVideoCodec) {
|
|
|
|
codec->StateWrite(static_cast<u32>(method), arguments[0]);
|
|
|
|
} else {
|
|
|
|
codec->StateWrite(static_cast<u32>(method), static_cast<u64>(arguments[0]) << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (method) {
|
|
|
|
case Method::SetVideoCodec:
|
|
|
|
codec->SetTargetCodec(static_cast<NvdecCommon::VideoCodec>(arguments[0]));
|
|
|
|
break;
|
|
|
|
case Method::Execute:
|
|
|
|
Execute();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 23:10:44 +01:00
|
|
|
AVFramePtr Nvdec::GetFrame() {
|
2020-10-27 04:07:36 +01:00
|
|
|
return codec->GetCurrentFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Nvdec::Execute() {
|
|
|
|
switch (codec->GetCurrentCodec()) {
|
|
|
|
case NvdecCommon::VideoCodec::H264:
|
|
|
|
case NvdecCommon::VideoCodec::Vp9:
|
|
|
|
codec->Decode();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
UNIMPLEMENTED_MSG("Unknown codec {}", static_cast<u32>(codec->GetCurrentCodec()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Tegra
|