ffmpeg | branch: master | Lynne <d...@lynne.ee> | Thu Aug 15 00:52:33 2024 
+0200| [604dfdb44c7261b8a8608d55727d2a7e848d3d1e] | committer: Lynne

hwcontext_vulkan: align host mapping size to minImportedHostPointerAlignment

This was left out of the recent rewrite of the system.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=604dfdb44c7261b8a8608d55727d2a7e848d3d1e
---

 libavutil/hwcontext_vulkan.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index 3e00781e9e..e4f155db6e 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -3830,6 +3830,7 @@ static int host_map_frame(AVHWFramesContext *hwfc, 
AVBufferRef **dst, int *nb_bu
         /* Add the offset at the start, which gets ignored */
         buffer_size = offs + swf->linesize[i]*p_h;
         buffer_size = FFALIGN(buffer_size, 
p->props.properties.limits.minMemoryMapAlignment);
+        buffer_size = FFALIGN(buffer_size, 
p->hprops.minImportedHostPointerAlignment);
 
         /* Create a buffer */
         vkb = av_mallocz(sizeof(*vkb));

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to