projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9996ae9
)
vulkan: fix output framebuffer creation size
author
Matthew Waters
<matthew@centricular.com>
Thu, 4 Jul 2019 07:19:31 +0000
(17:19 +1000)
committer
Matthew Waters
<matthew@centricular.com>
Fri, 5 Jul 2019 00:47:45 +0000
(10:47 +1000)
We don't scale when color converting so there is no impact.
ext/vulkan/vkcolorconvert.c
patch
|
blob
|
history
diff --git
a/ext/vulkan/vkcolorconvert.c
b/ext/vulkan/vkcolorconvert.c
index f617ee15e924adbc86e8bcf5043e8c8d3de8c41b..f2cf2d664627e40c8b8b512f71c664b88555d731 100644
(file)
--- a/
ext/vulkan/vkcolorconvert.c
+++ b/
ext/vulkan/vkcolorconvert.c
@@
-1628,8
+1628,8
@@
_create_framebuffer (GstVulkanColorConvert * conv, guint n_views,
.renderPass = render->render_pass,
.attachmentCount = n_views,
.pAttachments = views,
- .width = GST_VIDEO_INFO_WIDTH (&render->
in
_info),
- .height = GST_VIDEO_INFO_HEIGHT (&render->
in
_info),
+ .width = GST_VIDEO_INFO_WIDTH (&render->
out
_info),
+ .height = GST_VIDEO_INFO_HEIGHT (&render->
out
_info),
.layers = 1
};
/* *INDENT-ON* */