Re: [FFmpeg-devel] [PATCH v12 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12

2023-12-21 Thread Wu, Tong1
>There are still no public external API users to actually test the API, >which is concerning. It took months for the Vulkan API to be portable >enough to work with the major Vulkan users out there. Granted, Vulkan >is special. > >Is there any public test code out there? If not, I'd prefer the API

Re: [FFmpeg-devel] [PATCH v12 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12

2023-12-21 Thread Lynne
There are still no public external API users to actually test the API, which is concerning. It took months for the Vulkan API to be portable enough to work with the major Vulkan users out there. Granted, Vulkan is special. Is there any public test code out there? If not, I'd prefer the API to be

Re: [FFmpeg-devel] [PATCH v12 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12

2023-12-21 Thread Xiang, Haihao
On Ma, 2023-12-18 at 06:28 +, Xiang, Haihao wrote: > On Di, 2023-12-05 at 14:46 +0800, Tong Wu wrote: > > From: Wu Jianhua > > > > Signed-off-by: Wu Jianhua > > Signed-off-by: Tong Wu > > --- > > > > Compared to v11, v12 set the initial value to 0 for the fence value, > > fixing a

Re: [FFmpeg-devel] [PATCH v12 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12

2023-12-17 Thread Xiang, Haihao
On Di, 2023-12-05 at 14:46 +0800, Tong Wu wrote: > From: Wu Jianhua > > Signed-off-by: Wu Jianhua > Signed-off-by: Tong Wu > --- > > Compared to v11, v12 set the initial value to 0 for the fence value, > fixing a potential dynamic pool sync issue. Hence removed the non zero >

[FFmpeg-devel] [PATCH v12 1/9] libavutil: add hwcontext_d3d12va and AV_PIX_FMT_D3D12

2023-12-04 Thread Tong Wu
From: Wu Jianhua Signed-off-by: Wu Jianhua Signed-off-by: Tong Wu --- Compared to v11, v12 set the initial value to 0 for the fence value, fixing a potential dynamic pool sync issue. Hence removed the non zero initial_pool_size for d3d12va decoder. Some other minor error message changes.