suyu/src/video_core/host1x/vic.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.6 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <memory>
#include "common/common_types.h"
#include "common/scratch_buffer.h"
struct SwsContext;
namespace Tegra {
2022-01-30 10:31:13 +01:00
namespace Host1x {
2022-01-30 22:26:01 +01:00
class Host1x;
class Nvdec;
2021-10-07 17:14:05 +02:00
union VicConfig;
class Vic {
public:
enum class Method : u32 {
Execute = 0xc0,
SetControlParams = 0x1c1,
SetConfigStructOffset = 0x1c2,
SetOutputSurfaceLumaOffset = 0x1c8,
SetOutputSurfaceChromaOffset = 0x1c9,
SetOutputSurfaceChromaUnusedOffset = 0x1ca
};
2022-01-30 22:26:01 +01:00
explicit Vic(Host1x& host1x, std::shared_ptr<Nvdec> nvdec_processor);
2021-10-07 17:14:05 +02:00
~Vic();
/// Write to the device state.
2020-11-23 21:01:40 +01:00
void ProcessMethod(Method method, u32 argument);
private:
void Execute();
2021-10-07 17:14:05 +02:00
void WriteRGBFrame(const AVFrame* frame, const VicConfig& config);
2021-10-07 17:14:05 +02:00
void WriteYUVFrame(const AVFrame* frame, const VicConfig& config);
2022-01-30 22:26:01 +01:00
Host1x& host1x;
2022-01-30 10:31:13 +01:00
std::shared_ptr<Tegra::Host1x::Nvdec> nvdec_processor;
2020-11-23 19:25:01 +01:00
/// Avoid reallocation of the following buffers every frame, as their
/// size does not change during a stream
using AVMallocPtr = std::unique_ptr<u8, decltype(&av_free)>;
AVMallocPtr converted_frame_buffer;
Common::ScratchBuffer<u8> luma_buffer;
Common::ScratchBuffer<u8> chroma_buffer;
2020-11-23 19:25:01 +01:00
GPUVAddr config_struct_address{};
GPUVAddr output_surface_luma_address{};
GPUVAddr output_surface_chroma_address{};
SwsContext* scaler_ctx{};
s32 scaler_width{};
s32 scaler_height{};
};
2022-01-30 10:31:13 +01:00
} // namespace Host1x
} // namespace Tegra