[FFmpeg-cvslog] lavfi/qsvvpp: Copy frame props before modify it

2024-11-27 Thread Fei Wang
ffmpeg | branch: master | Fei Wang | Mon Nov 25 11:18:00 2024 +0800| [bc991ca048b6c5d931d705bb900b0a165233bfdd] | committer: Haihao Xiang lavfi/qsvvpp: Copy frame props before modify it The changes to output frame props in query_frame overlapped since 578ac59887. Move the copy frame props befor

[FFmpeg-cvslog] vulkan/common: Add put_bytes_count

2024-11-27 Thread IndecisiveTurtle
ffmpeg | branch: master | IndecisiveTurtle | Wed Nov 27 21:18:07 2024 +0200| [351fd8460a85d8f716248dcd2ba49737994a798d] | committer: Lynne vulkan/common: Add put_bytes_count > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=351fd8460a85d8f716248dcd2ba49737994a798d --- libavcodec/vu

[FFmpeg-cvslog] vulkan/common: Use u32vec2 buffer type instead of u64

2024-11-27 Thread IndecisiveTurtle
ffmpeg | branch: master | IndecisiveTurtle | Wed Nov 27 21:18:06 2024 +0200| [e3ac63b213dedb69412aa53f473d48d4b069ca59] | committer: Lynne vulkan/common: Use u32vec2 buffer type instead of u64 According to the GL_EXT_buffer_reference spec alignment "must be a power of two and be greater than o

[FFmpeg-cvslog] vulkan/common: Fix off-by-one error in flush_put_bits

2024-11-27 Thread IndecisiveTurtle
ffmpeg | branch: master | IndecisiveTurtle | Wed Nov 27 21:18:05 2024 +0200| [f794ed48c09cfb31611cb4fe4bf7df32339f12eb] | committer: Lynne vulkan/common: Fix off-by-one error in flush_put_bits If caller wrote a divisible by eight number of bits it would write an extra byte. Also increment by

[FFmpeg-cvslog] tests/fate/filter-video: don't convert owdenoise test to mpeg range

2024-11-27 Thread Ramiro Polla
ffmpeg | branch: master | Ramiro Polla | Sun Sep 29 17:38:55 2024 +0200| [4e1a91112d6732230f43777aed8fb7e9250036b4] | committer: Ramiro Polla tests/fate/filter-video: don't convert owdenoise test to mpeg range > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4e1a91112d6732230f43777a

[FFmpeg-cvslog] vulkan: fix use of atomics for the current context index

2024-11-27 Thread Lynne
ffmpeg | branch: master | Lynne | Thu Nov 28 00:36:42 2024 +0900| [187fd52864e6374156b6ded75c23dd6658e03ebf] | committer: Lynne vulkan: fix use of atomics for the current context index The code used to use atomic, but over time, this got broken. This commit also remmoves the is-the-last-submiss

[FFmpeg-cvslog] vulkan_decode: ensure there's at least one context per decode thread

2024-11-27 Thread Lynne
ffmpeg | branch: master | Lynne | Thu Nov 28 00:51:21 2024 +0900| [41f65b7326ea437d0b19744810903a5a588047fd] | committer: Lynne vulkan_decode: ensure there's at least one context per decode thread Otherwise, what may happen is that 2 threads will both write into the same context. > http://git.

[FFmpeg-cvslog] vulkan_decode: fix counting for parallelism

2024-11-27 Thread Lynne
ffmpeg | branch: master | Lynne | Thu Nov 28 00:28:50 2024 +0900| [a5e6860a890b60ebd46595b2c355ae388f1f2cb4] | committer: Lynne vulkan_decode: fix counting for parallelism ff_vk_exec_pool_init used to multiply the number by the number of queues, but that got changed, yet this use of the functio