summaryrefslogtreecommitdiffstats
path: root/src/video_core/host1x/vic.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-11-15 19:45:07 +0100
committerLiam <byteslice@airmail.cc>2023-11-16 23:01:38 +0100
commit4055a476aafb7b915c649363ccde7ba9b8d864d3 (patch)
tree7b0d6d2ebcf4a81ba3eab1829130e529e666c243 /src/video_core/host1x/vic.h
parentMerge pull request #12043 from t895/disable-pip-default (diff)
downloadyuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.tar
yuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.tar.gz
yuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.tar.bz2
yuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.tar.lz
yuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.tar.xz
yuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.tar.zst
yuzu-4055a476aafb7b915c649363ccde7ba9b8d864d3.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/host1x/vic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/host1x/vic.h b/src/video_core/host1x/vic.h
index 3d9753047..6c868f062 100644
--- a/src/video_core/host1x/vic.h
+++ b/src/video_core/host1x/vic.h
@@ -39,9 +39,9 @@ public:
private:
void Execute();
- void WriteRGBFrame(const AVFrame* frame, const VicConfig& config);
+ void WriteRGBFrame(std::unique_ptr<FFmpeg::Frame> frame, const VicConfig& config);
- void WriteYUVFrame(const AVFrame* frame, const VicConfig& config);
+ void WriteYUVFrame(std::unique_ptr<FFmpeg::Frame> frame, const VicConfig& config);
Host1x& host1x;
std::shared_ptr<Tegra::Host1x::Nvdec> nvdec_processor;