summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-08-08 06:51:25 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-08-10 05:24:16 +0200
commita779cede7c9f8860ed005cbc16158c97c69765e7 (patch)
tree7510da87251a170614133348598aca9fffc8e40c
parentMerge pull request #6827 from Morph1984/uuid-hash (diff)
downloadyuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.tar
yuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.tar.gz
yuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.tar.bz2
yuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.tar.lz
yuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.tar.xz
yuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.tar.zst
yuzu-a779cede7c9f8860ed005cbc16158c97c69765e7.zip
-rw-r--r--src/video_core/command_classes/vic.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/command_classes/vic.cpp b/src/video_core/command_classes/vic.cpp
index d5e77941c..0ee07f398 100644
--- a/src/video_core/command_classes/vic.cpp
+++ b/src/video_core/command_classes/vic.cpp
@@ -96,12 +96,11 @@ void Vic::Execute() {
if (!converted_frame_buffer) {
converted_frame_buffer = AVMallocPtr{static_cast<u8*>(av_malloc(linear_size)), av_free};
}
-
- const int converted_stride{frame->width * 4};
+ const std::array<int, 4> converted_stride{frame->width * 4, frame->height * 4, 0, 0};
u8* const converted_frame_buf_addr{converted_frame_buffer.get()};
sws_scale(scaler_ctx, frame->data, frame->linesize, 0, frame->height,
- &converted_frame_buf_addr, &converted_stride);
+ &converted_frame_buf_addr, converted_stride.data());
const u32 blk_kind = static_cast<u32>(config.block_linear_kind);
if (blk_kind != 0) {