summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-10-08 01:22:38 -0400
committerameerj <52414509+ameerj@users.noreply.github.com>2021-10-08 01:22:38 -0400
commit403fc86c1138821fac375a2ac850ac787969e2c8 (patch)
tree5ac804c64f72bb16dd8c1477db71cf35419e18a7 /src
parent5aae61775fc3d2be15f1e45da40b802feed6b8f1 (diff)
vic: Avoid memory corruption when multiple streams with different dimensions are decoded
This is a work around to avoid buffer overflow errors until multi channel/multi stream decoding is supported.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/command_classes/vic.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video_core/command_classes/vic.cpp b/src/video_core/command_classes/vic.cpp
index 3f2712a8d..51f739801 100644
--- a/src/video_core/command_classes/vic.cpp
+++ b/src/video_core/command_classes/vic.cpp
@@ -85,6 +85,15 @@ void Vic::Execute() {
if (!frame) {
return;
}
+ const u64 surface_width = config.surface_width_minus1 + 1;
+ const u64 surface_height = config.surface_height_minus1 + 1;
+ if (static_cast<u64>(frame->width) != surface_width ||
+ static_cast<u64>(frame->height) != surface_height) {
+ // TODO: Properly support multiple video streams with differing frame dimensions
+ LOG_WARNING(Debug, "Frame dimensions {}x{} do not match expected surface dimensions {}x{}",
+ frame->width, frame->height, surface_width, surface_height);
+ return;
+ }
switch (config.pixel_format) {
case VideoPixelFormat::RGBA8:
case VideoPixelFormat::BGRA8: