Re: [FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-07-03 Thread Timo Rothenpieler
On 04.07.2025 01:02, Jorge Estrada wrote: Changes look good to me. I appreciate the fixes. Thanks! applied, thanks! On Thu, Jul 3, 2025 at 3:49 PM Timo Rothenpieler wrote: On 03.07.2025 23:05, Jorge Estrada wrote: ping Completely forgot about this, sorry. Patch does not compile, cause

Re: [FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-07-03 Thread Jorge Estrada
Changes look good to me. I appreciate the fixes. Thanks! On Thu, Jul 3, 2025 at 3:49 PM Timo Rothenpieler wrote: > On 03.07.2025 23:05, Jorge Estrada wrote: > > ping > > Completely forgot about this, sorry. > > Patch does not compile, cause vector_types.h does not exist. > If I remove it, it can

Re: [FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-07-03 Thread Timo Rothenpieler
On 03.07.2025 23:05, Jorge Estrada wrote: ping Completely forgot about this, sorry. Patch does not compile, cause vector_types.h does not exist. If I remove it, it can't find uchar2, which is purely a CUDA side type. Isn't that whole construct around there entirely unneeded? You can always ju

Re: [FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-07-03 Thread Jorge Estrada
ping On Thu, Jun 19, 2025 at 7:43 PM Jorge Estrada wrote: > Thanks for the feedback. Addressed your points and attached an updated > patch > > - Simplified the documentation to just point to the pad filter for usage > but kept the examples > - Made the adjustments to vf_pad_cuda.c > - Updated vf

Re: [FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-06-19 Thread Jorge Estrada
Thanks for the feedback. Addressed your points and attached an updated patch - Simplified the documentation to just point to the pad filter for usage but kept the examples - Made the adjustments to vf_pad_cuda.c - Updated vf_pad_cuda.cu. Should be easier to add 10-12 bit support down the line now.

Re: [FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-06-17 Thread Timo Rothenpieler
On 17.06.2025 01:39, Jorge Estrada wrote: From: Jorge Estrada <--global> This patch adds the pad_cuda video filter. A filter similar to the existing pad filter but accelerated by CUDA. The filter shares the same options as the software pad filter. Example usage: ffmpeg -hwaccel cuda -hwaccel_

[FFmpeg-devel] [PATCH] avfilter: add pad_cuda filter

2025-06-16 Thread Jorge Estrada
From: Jorge Estrada <--global> This patch adds the pad_cuda video filter. A filter similar to the existing pad filter but accelerated by CUDA. The filter shares the same options as the software pad filter. Example usage: ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i input.mp4 -vf "pad_cu