aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/allfilters.c
Commit message (Collapse)AuthorAgeFilesLines
* avfilter: add scale_d3d11 filterDash Santosh3 days1-0/+1
| | | | | | | This commit introduces a new hardware-accelerated video filter, scale_d3d11, which performs scaling and format conversion using Direct3D 11. The filter enables efficient GPU-based scaling and pixel format conversion (p010 to nv12), reducing CPU overhead and latency in video pipelines.
* avfilter/vf_colordetect: add new color range detection filterNiklas Haas14 days1-0/+1
| | | | | | | | | | This filter can detect various properties about the image, including whether or not there are out-of-range values, or whether the input appears to use straight or premultiplied alpha. Of course, these can only be heuristics, with "undetermined" as the base case. While we can definitely prove the existence of full range or straight alpha colors, we can never infer the opposite.
* avfilter: add pad_cuda filterJorge Estrada2025-07-041-0/+1
| | | | | | | | | | | 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_cuda=w=iw+100:h=ih+100:x=-1:y=-1:color=red" out.mp4 Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
* avutil/vf_scdet_vulkan: add new filterNiklas Haas2025-05-281-0/+1
| | | | | | | Carbon copy of vf_scdet. Signed-off-by: Niklas Haas <git@haasn.dev> Sponsored-by: nxtedition
* avfilter/blackdetect_vulkan: add hw accelerated blackdetect filterNiklas Haas2025-05-281-0/+1
| | | | | | | Like vf_blackdetect but better, faster, stronger, harder. Signed-off-by: Niklas Haas <git@haasn.dev> Sponsored-by: nxtedition
* Remove libpostprocMichael Niedermayer2025-05-071-1/+0
| | | | | | | | | | | | | | | Libpostproc will be available as source plugin at https://github.com/michaelni/FFmpeg/tree/sourceplugin-libpostproc OR https://github.com/michaelni/libpostproc whatever turns out more convenient to maintain For the upcoming 8.0 release, libpostproc will be included, so as not to cause delays or inconveniences Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/interlace_vulkan: add interlace_vulkan filterNiklas Haas2025-02-171-0/+1
| | | | This is a Vulkan-accelerated version of the existing interlace filter.
* avfilter/scale_amf: Add AMF VPP & super resolution filtersEvgeny Pavlov2025-02-041-0/+2
| | | | | | | | This commit adds two AMF filters: vpp_amf & sr_amf. Both filters are using AMF hardware acceleration. vpp_amf supports simple scaling algorithms & color conversion. sr_amf supports advanced scaling algorithms such as FSR & can be used for upscaling only.
* avfilter/avfilter: Add FFFilter, hide internals of AVFilterAndreas Rheinhardt2025-01-121-584/+587
| | | | | | | | | | This patch is analogous to 20f972701806be20a77f808db332d9489343bb78: It hides the internal part of AVFilter by adding a new internal structure FFFilter (declared in filters.h) that has an AVFilter as its first member; the internal part of AVFilter is moved to this new structure. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter: add an LCEVC decoding filterJames Almer2024-09-191-0/+1
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter: add XPSNR filterChristian Helmrich2024-09-081-0/+1
| | | | | | | Add XPSNR video filter Register new filter xpsnr. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavfi: add Perlin noise generatorStefano Sabatini2024-07-011-0/+1
|
* lavfi: Add drawbox_vaapi filterHaihao Xiang2024-04-181-0/+1
| | | | Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
* lavfi: Add pad_vaapi filterHaihao Xiang2024-04-181-0/+1
| | | | Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
* avfilter/fifo: Remove (a)fifo filtersAndreas Rheinhardt2024-02-081-2/+0
| | | | | | Obsolete since 4ca1fb9d2a91757c8c4c34dd456abf340e3f765f. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter: Add fsync filterThilo Borgmann2024-01-051-0/+1
|
* lavfi: add quirc filterStefano Sabatini2024-01-011-0/+1
|
* lavfi: add qrencode source and filterStefano Sabatini2024-01-011-0/+2
|
* Add new vf_tiltandshift filterVittorio Giovara2023-12-211-0/+1
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* avfilter: add Affine Projection adaptive audio filterPaul B Mahol2023-11-281-0/+1
|
* avfilter: add libvmaf_cudaKyle Swanson2023-09-271-0/+1
| | | | Signed-off-by: Kyle Swanson <kswanson@netflix.com>
* avfilter: add asisdr filterPaul B Mahol2023-08-141-0/+1
|
* avfilter: add apsnr filterPaul B Mahol2023-08-141-0/+1
|
* avfilter: add transpose_vt for videotoolbox pix_fmtZhao Zhili2023-07-231-0/+1
| | | | Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
* avfilter: add scale_vt for videotoolbox pix_fmtZhao Zhili2023-07-231-0/+1
| | | | | | | | | | | | | | | | | | | For example, ./ffmpeg -hwaccel videotoolbox \ -hwaccel_output_format videotoolbox_vld \ -i ios-265.mov \ -c:v hevc_videotoolbox \ -profile:v main \ -b:v 3M \ -vf scale_vt=w=iw/2:h=ih/2:color_matrix=bt709:color_primaries=bt709:color_transfer=bt709 \ -c:a copy \ -tag:v hvc1 \ /tmp/test.mp4 Input: hevc (Main 10) (hvc1 / 0x31637668), yuv420p10le(tv, bt2020nc/bt2020/arib-std-b67), 3840x2160 Output: hevc (Main) (hvc1 / 0x31637668), yuv420p(tv, bt709, progressive), 1920x1080 Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
* avfilter/vf_bwdif_cuda: CUDA accelerated bwdif deinterlacerPhilip Langdale2023-06-161-0/+1
| | | | | | | I've been sitting on this for 3 1/2 years now(!), and I finally got around to fixing the loose ends and convincing myself that it was correct. It follows the same basic structure as yadif_cuda, including leaving out the edge handling, to avoid expensive branching.
* libavfilter: add vf_xfade_vulkanMarvin Scholz2023-06-071-0/+1
| | | | | | This is an initial version of vf_xfade_vulkan based on vf_xfade_opencl, for now only a subset of transitions are supported.
* lavfi: add nlmeans_vulkan filterLynne2023-05-291-0/+1
|
* lavfi: add color_vulkan filterLynne2023-05-291-0/+1
|
* lavfi: add bwdif_vulkanLynne2023-05-291-0/+1
|
* avfilter/vf_ccrepack: Add new filter to repack CEA-708 side dataDevin Heitmueller2023-05-111-0/+1
| | | | | | | | | | | | | THis filter can correct certain issues seen from upstream sources where the cc_count is not properly set or the CEA-608 tuples are not at the start of the payload as expected. Make use of the ccfifo to extract and immediately repack the CEA-708 side data, thereby removing any extra padding and ensuring the 608 tuples are at the front of the payload. Signed-off-by: Devin Heitmueller <dheitmueller@ltnglobal.com> Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
* avfilter: add zoneplate video test sourcePaul B Mahol2023-05-091-0/+1
|
* avfilter: add arls filterPaul B Mahol2023-04-301-0/+1
|
* avfilter: add FIR equalizer coefficients source filterPaul B Mahol2023-04-271-0/+1
|
* avfilter: add QSV variants of the stack filtersHaihao Xiang2023-02-161-0/+3
| | | | | | | | | | | | | | | | | | | Include hstack_qsv, vstack_qsv and xstack_qsv. They may accept input streams with different sizes. Examples: $ ffmpeg -hwaccel qsv -hwaccel_output_format qsv -i input.mp4 \ -filter_complex "[0:v][0:v]hstack_qsv" -f null - $ ffmpeg \ -hwaccel qsv -hwaccel_output_format qsv -i input.mp4 \ -hwaccel qsv -hwaccel_output_format qsv -i input.mp4 \ -hwaccel qsv -hwaccel_output_format qsv -i input.mp4 \ -hwaccel qsv -hwaccel_output_format qsv -i input.mp4 \ -filter_complex "[0:v][1:v][2:v][3:v]xstack_qsv=inputs=4:fill=0x000000:layout=0_0_1920x1080|w0_0_1920x1080|0_h0_1920x1080|w0_h0_1920x1080" \ -f null - Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
* avfilter: add VA-API variants of the stack filtersHaihao Xiang2023-01-301-0/+3
| | | | | | | | | | | | | | | | | | | Include hstack_vaapi, vstack_vaapi and xstack_vaapi. They may accept input streams with different sizes. libva2 (VA-API 1.0+) is required. Example: $ ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i input.h265 -filter_complex "[0:v][0:v]hstack_vaapi" -c:v h264_vaapi out.h264 $ ffmpeg \ -hwaccel vaapi -hwaccel_output_format vaapi -i input.h264 \ -hwaccel vaapi -hwaccel_output_format vaapi -i input.h264 \ -hwaccel vaapi -hwaccel_output_format vaapi -i input.h264 \ -hwaccel vaapi -hwaccel_output_format vaapi -i input.h264 \ -filter_complex "[0:v][1:v][2:v][3:v]xstack_vaapi=inputs=4:fill=0x000000:layout=0_0_1920x1080|w0_0_1920x1080|0_h0_1920x1080|w0_h0_1920x1080" \ -c:v hevc_vaapi out.h265 Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
* lavfi: Add vf_ssim360 filterShannon Chen2023-01-281-0/+1
| | | | | | | | | | | | | Customized SSIM for various projections (and stereo formats) of 360 images and videos. Further contributions by: Ashok Mathew Kuruvilla Matthieu Patou Yu-Hui Wu Anton Khirnov Suggested-By: ffmpeg@fb.com Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avfilter: add fractional delay IR source filterPaul B Mahol2023-01-161-0/+1
|
* avfilter: add adrc filterPaul B Mahol2022-12-191-0/+1
|
* avfilter: add corr video filterPaul B Mahol2022-12-081-0/+1
|
* avfilter: add showcwt multimedia filterPaul B Mahol2022-11-281-0/+1
|
* avfilter: add backgroundkey video filterPaul B Mahol2022-11-051-0/+1
|
* libavfilter: add vf_colorrange_cuda, CUDA-accelerated color conversion filterRoman Arzumanyan2022-09-131-0/+1
| | | | Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
* avfilter: add bilateral_cuda filterMohamed Khaled Mohamed2022-09-031-0/+1
| | | | | | | GSoC 2022 Signed-off-by: Mohamed Khaled <mohamed.elbassiony00@eng-st.cu.edu.eg> Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
* avfilter: add 3D scope multimedia filterPaul B Mahol2022-09-031-0/+1
|
* avfilter: add vsrc_ddagrabTimo Rothenpieler2022-07-181-0/+1
|
* avfilter: add chromakey_cuda filterMohamed Khaled Mohamed2022-07-101-0/+1
| | | | | | | | | | | | GSoC'22 libavfilter/vf_chromakey_cuda.cu:the CUDA kernel for the filter libavfilter/vf_chromakey_cuda.c: the C side that calls the kernel and gets user input libavfilter/allfilters.c: added the filter to it libavfilter/Makefile: added the filter to it cuda/cuda_runtime.h: added two math CUDA functions that are used in the filter Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
* avfilter: add remap opencl filterPaul B Mahol2022-07-071-0/+1
|
* avfilter: add virtualbass filterPaul B Mahol2022-06-161-0/+1
|
* avfilter: add tiltshelf audio filterPaul B Mahol2022-05-291-0/+1
|