[FFmpeg-cvslog] ffv1enc_vulkan: support default range coder tables

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Sun Jan 19 14:55:24 2025 +0900| [542a567d504b1a57594cc9962c61224590d95103] | committer: Lynne ffv1enc_vulkan: support default range coder tables This adds support for default range coder tables, rather than only custom ones. Its two lines, as the same code can

[FFmpeg-cvslog] lavc/vulkan: add a u8vec2buf buffer type

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Fri Feb 21 00:56:04 2025 +| [89704f07bb6ab46c47a42db9d6e49aa1d317384d] | committer: Lynne lavc/vulkan: add a u8vec2buf buffer type Useful, since it doesn't have alignment limitations. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=89704f07bb6a

[FFmpeg-cvslog] ffv1dec: set f->state_transition for default range coder table

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Tue Feb 18 23:47:13 2025 +0100| [5cf4f145addeca84968cb2d687e5b20494fa7db8] | committer: Lynne ffv1dec: set f->state_transition for default range coder table The table is only set when f->ac is set to CUSTOM. Setting it for default range coder tables simplifies

[FFmpeg-cvslog] gblur_vulkan: simplify buffer content writing

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Fri Feb 21 03:14:31 2025 +0100| [2066c5526d27168144db059c344df58ed5942aa3] | committer: Lynne gblur_vulkan: simplify buffer content writing Before .buf_elems, users had to manually print to a string if they wanted a non-fixed number of elements in an array. Si

[FFmpeg-cvslog] vulkan: don't query video queue properties unless the extension is enabled

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Wed Feb 19 13:18:54 2025 +| [b6bf568a44ac5ae3b1db2e8f59facd7592a88f65] | committer: Lynne vulkan: don't query video queue properties unless the extension is enabled Fixes validation errors. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b6bf56

[FFmpeg-cvslog] overlay_vulkan: remove unused variable

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Wed Feb 19 13:28:35 2025 +| [684171c9f77e27d8b27e12572b82d66fdcf74c4d] | committer: Lynne overlay_vulkan: remove unused variable Forgotten to be removed after the recent port to imageLoad() > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=684171

[FFmpeg-cvslog] vulkan: add .buf_elems to FFVulkanDescriptorSet

2025-02-20 Thread Lynne
ffmpeg | branch: master | Lynne | Fri Feb 21 00:46:52 2025 +| [f774a9376af2ec46aed5e7ac1c317c1c4a3d7823] | committer: Lynne vulkan: add .buf_elems to FFVulkanDescriptorSet This enables users to specify a number that would be appended to the buf_content string. Saves users from needing to ma