FFmpeg/libavfilter
Chema Gonzalez c0f89dccc8 lavfi/vf_libvmaf: add warning when color ranges differ
The VMAF filter uses the pixel values without considering
the color ranges. This is incorrect. Patch adds a warning
so at least the user knows it.

Let's see an example.

(1) Let's get FR and LR versions of the same image.

```
$ ffmpeg -y -i /tmp/lena.490x490.ppm -vf scale="out_range=full" -pix_fmt yuv420p /tmp/lena.full.y4m
$ xxd /tmp/lena.full.y4m |head
00000000: 5955 5634 4d50 4547 3220 5734 3930 2048  YUV4MPEG2 W490 H
00000010: 3439 3020 4632 353a 3120 4970 2041 303a  490 F25:1 Ip A0:
00000020: 3020 4334 3230 6a70 6567 2058 5953 4353  0 C420jpeg XYSCS
00000030: 533d 3432 304a 5045 4720 5843 4f4c 4f52  S=420JPEG XCOLOR
00000040: 5241 4e47 453d 4655 4c4c 0a46 5241 4d45  RANGE=FULL.FRAME
00000050: 0a72 7271 7070 706f 6f6e 6d6d 6c6d 6d6d  .rrqpppoonmmlmmm
00000060: 6c6e 6e6d 6d6e 6e6e 6d6c 6d6d 6d6d 6d6d  lnnmmnnnmlmmmmmm
00000070: 6d6e 6d6b 6c6d 6e6e 6d6c 6d6d 6e6e 6f6f  mnmklmnnmlmmnnoo
00000080: 6f6f 6e6e 6e6e 6f70 7172 7375 7676 7370  oonnnnopqrsuvvsp
00000090: 6d69 6662 5e59 534d 4845 3d35 302e 2d2c  mifb^YSMHE=50.-,
```

```
$ ffmpeg -y -i /tmp/lena.490x490.ppm -vf scale="out_range=limited" -pix_fmt yuv420p /tmp/lena.limited.y4m
$ xxd /tmp/lena.limited.y4m | head
00000000: 5955 5634 4d50 4547 3220 5734 3930 2048  YUV4MPEG2 W490 H
00000010: 3439 3020 4632 353a 3120 4970 2041 303a  490 F25:1 Ip A0:
00000020: 3020 4334 3230 6a70 6567 2058 5953 4353  0 C420jpeg XYSCS
00000030: 533d 3432 304a 5045 4720 5843 4f4c 4f52  S=420JPEG XCOLOR
00000040: 5241 4e47 453d 4c49 4d49 5445 440a 4652  RANGE=LIMITED.FR
00000050: 414d 450a 7272 7170 7070 6f6f 6e6e 6e6d  AME.rrqpppoonnnm
00000060: 6e6e 6e6d 6f6e 6e6e 6e6e 6e6e 6d6e 6e6e  nnnmonnnnnnnmnnn
00000070: 6e6e 6e6e 6f6e 6c6d 6e6f 6e6e 6d6e 6e6f  nnnnonlmnonnmnno
00000080: 6f6f 6f6f 6f6f 6f6f 6f6f 7071 7273 7576  oooooooooopqrsuv
00000090: 7673 706e 6a68 6461 5c57 524e 4b44 3d39  vspnjhda\WRNKD=9
```

Note that the 2x images are the same. Only difference is the range,
and the precision issues related to range conversion.

(2) Let's calculate the VMAF score:
```
$ ./ffmpeg -filter_threads 1 -filter_complex_threads 1 -i /tmp/lena.full.y4m -i /tmp/lena.limited.y4m -lavfi libvmaf="model=path=/usr/share/model/vmaf_v0.6.1neg.json" -report -f null -
...
[Parsed_libvmaf_0 @ 0x3cc9b40] VMAF score: 85.530109
```

As we are comparing an image with itself, we expect the score to
be close to 100. Issue here is that the VMAF filter just uses the
pixel values, ignoring the color ranges.

Proposed solution is to add a warning.
```
$ ./ffmpeg -filter_threads 1 -filter_complex_threads 1 -i /tmp/lena.full.y4m -i /tmp/lena.limited.y4m -lavfi libvmaf="model=path=/us
r/share/model/vmaf_v0.6.1neg.json" -report -f null -
...
[Parsed_libvmaf_0 @ 0x3cc9b40] distorted and reference frames use different color ranges (pc != tv)
...
[Parsed_libvmaf_0 @ 0x3cc9b40] VMAF score: 85.530109
```

Tested:

Ran fate.
```
$ make fate -j
...
TEST    seek-lavf-ppmpipe
TEST    seek-lavf-pgmpipe
TEST    seek-lavf-mxf_opatom
```
2023-09-23 15:55:50 +01:00
..
aarch64 avfilter/vf_bwdif: Add neon for filter_line3 2023-07-06 00:21:05 +03:00
cuda
dnn avfilter/dnn_backend_openvino: fix wild pointer on error path 2023-09-15 13:02:15 +08:00
metal lavfi/metal: fix build with pre-10.11 deployment targets 2021-12-22 18:43:34 -06:00
opencl avfilter: add remap opencl filter 2022-07-07 17:52:32 +02:00
tests lavfi/dnn: Remove DNN native backend 2023-04-28 11:07:41 +08:00
vulkan lavfi: add nlmeans_vulkan filter 2023-05-29 00:42:01 +02:00
x86 avfilter/x86/af_afir: add FMA3 SIMD 2023-09-17 11:11:24 +02:00
.gitignore
adynamicequalizer_template.c avfilter: fix highshelf zdf coefficients 2023-08-07 11:57:28 +02:00
aeval.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_acontrast.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_acopy.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_acrossover.c avfilter/af_acrossover: add precision option 2022-05-14 14:11:52 +02:00
af_acrusher.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_adeclick.c avfilter/af_adeclick: stop returning EINVAL error 2023-08-12 11:27:32 +02:00
af_adecorrelate.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_adelay.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_adenorm.c avfilter/af_adenorm: simplify handling of commands 2022-04-13 22:02:47 +02:00
af_aderivative.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_adrc.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_adynamicequalizer.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_adynamicsmooth.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_aecho.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_aemphasis.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_aexciter.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_afade.c avfilter/af_afade: add 4 more curves 2023-08-24 22:20:06 +02:00
af_afftdn.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_afftfilt.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_afir.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
af_afir.h avfilter/af_afir: add way to control loading interval of impulses 2023-04-25 21:22:15 +02:00
af_afirdsp.h all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
af_aformat.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_afreqshift.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_afwtdn.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_agate.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_aiir.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_alimiter.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_amerge.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_amix.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_amultiply.c avfilter/af_amultiply: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
af_anequalizer.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_anlmdn.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_anlmdndsp.h
af_anlms.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_anull.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_apad.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_aphaser.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
af_apsyclip.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_apulsator.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_aresample.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_arls.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_arnndn.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_asdr.c avfilter/af_asdr: remove wrong scaling from sdr, and fix sisdr formula 2023-08-14 11:19:56 +02:00
af_asetnsamples.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_asetrate.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_ashowinfo.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_asoftclip.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_aspectralstats.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_asr.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_astats.c avfilter/af_astats: fix reporting of noise_floor for small number of samples 2023-08-13 14:38:28 +02:00
af_asubboost.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_asupercut.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_atempo.c avfilter/af_atempo: improve RE_MALLOC_OR_FAIL macro 2023-07-15 10:52:15 +02:00
af_atilt.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_axcorrelate.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_biquads.c avfilter: fix highshelf zdf coefficients 2023-08-07 11:57:28 +02:00
af_bs2b.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
af_channelmap.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_channelsplit.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_chorus.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
af_compand.c avfilter/af_compand: simplify frame allocation 2023-02-08 18:56:57 +01:00
af_compensationdelay.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_crossfeed.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_crystalizer.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_dcshift.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_deesser.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_dialoguenhance.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_drmeter.c avfilter/af_drmeter: misc cleanups 2023-06-18 02:21:29 +02:00
af_dynaudnorm.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_earwax.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_extrastereo.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_firequalizer.c avfilter/af_firequalizer: switch to TX from lavu 2022-11-17 13:28:58 +01:00
af_flanger.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_haas.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_hdcd.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_headphone.c avfilter/af_headphone: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
af_join.c avfilter/af_join: do not use ff_outlink_get_status() on inlink 2023-05-30 02:16:44 +02:00
af_ladspa.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_loudnorm.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_lv2.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_mcompand.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
af_pan.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_replaygain.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_rubberband.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_sidechaincompress.c configure: Use a separate config_components.h header for $ALL_COMPONENTS 2022-03-16 14:12:49 +02:00
af_silencedetect.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_silenceremove.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
af_sofalizer.c avfilter/af_sofalizer: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
af_speechnorm.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_stereotools.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_stereowiden.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_superequalizer.c avfilter: fix av_tx_fn stride usage for complex inputs 2022-11-19 00:25:47 +01:00
af_surround.c avfilter/af_surround: replace double constants with float variants 2023-05-19 17:12:04 -03:00
af_tremolo.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
af_vibrato.c avfilter/af_vibrato: refactor code 2023-08-08 17:45:32 +02:00
af_virtualbass.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
af_volume.c avfilter/af_volume: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
af_volume.h avfilter/af_volume: Also deprecate position enum value 2023-09-07 00:49:25 +02:00
af_volumedetect.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
afir_template.c avfilter/afir_template: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
allfilters.c avfilter: add asisdr filter 2023-08-14 11:19:56 +02:00
asink_anullsink.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
asrc_afdelaysrc.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
asrc_afirsrc.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
asrc_anoisesrc.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
asrc_anullsrc.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
asrc_flite.c lavu/frame: deprecate AVFrame.pkt_{pos,size} 2023-03-20 10:42:09 +01:00
asrc_hilbert.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
asrc_sinc.c avfilter/asrc_sinc: check return code of tx_init() 2023-09-03 09:33:26 +02:00
asrc_sine.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
atadenoise.h
audio.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
audio.h avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
avf_a3dscope.c avfilter/avf_a3dscope,avf_showcwt: set video frame duration 2023-01-17 14:50:08 +01:00
avf_abitscope.c avfilter/avf_abitscope: refactor bit counting for histogram 2023-05-30 19:21:13 +02:00
avf_ahistogram.c avfilter/avf_ahistogram: refactor frame fill data code 2023-05-30 18:18:14 +02:00
avf_aphasemeter.c avfilter/avf_aphasemeter: switch to activate 2023-05-30 20:09:47 +02:00
avf_avectorscope.c avfilter: use ff_inlink_make_frame_writable() 2023-02-12 13:32:00 +01:00
avf_concat.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
avf_showcqt.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
avf_showcqt.h avfilter/avf_showcqt: switch to TX FFT from avutil 2021-07-27 21:16:28 +02:00
avf_showcwt.c avfilter/avf_showcwt: reduce latency/delay in some cases 2023-08-07 22:24:59 +02:00
avf_showfreqs.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
avf_showspatial.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
avf_showspectrum.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
avf_showvolume.c avfilter: use ff_inlink_make_frame_writable() 2023-02-12 13:32:00 +01:00
avf_showwaves.c avfilter: Deduplicate default audio inputs/outputs 2023-08-07 09:21:13 +02:00
avfilter.c avfilter/avfilter: Don't report deprecated pkt_pos 2023-09-14 12:32:01 +02:00
avfilter.h lavfi: add a flag for filters able to work with hw_device_ctx 2023-03-24 10:16:51 +01:00
avfiltergraph.c avfilter/avfiltergraph: remove no longer valid comment 2023-05-14 00:13:52 +02:00
avfilterres.rc
bbox.c
bbox.h
blend_modes.c avfilter/blend_modes: Always preserve constness 2023-09-07 20:58:00 +02:00
blend.h avfilter/vf_blend: Move ff_blend_init into a header 2022-05-06 05:19:49 +02:00
boxblur.c
boxblur.h Remove unnecessary mem.h inclusions 2021-07-22 14:47:57 +02:00
bufferqueue.h
buffersink.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
buffersink.h avfilter: remove FF_API_BUFFERSINK_ALLOC 2023-02-09 15:35:14 +01:00
buffersrc.c avfilter/buffersrc: Use av_frame_clone() where appropriate 2023-09-10 11:19:20 +02:00
buffersrc.h avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
bwdif.h avfilter/vf_bwdif: Add a filter_line3 method for optimisation 2023-07-06 00:21:05 +03:00
ccfifo.c avfilter/ccfifo: constify some parameters 2023-05-12 22:33:16 -03:00
ccfifo.h avfilter/ccfifo: constify some parameters 2023-05-12 22:33:16 -03:00
colorchannelmixer_template.c avfilter/vf_colorchannelmixer: add float formats support 2022-03-03 09:57:53 +01:00
colorspace.c lavfi/colorspace: add ff_matrix_mul_3x3_vec 2022-06-19 19:18:34 -05:00
colorspace.h lavfi/colorspace: add ff_matrix_mul_3x3_vec 2022-06-19 19:18:34 -05:00
colorspacedsp_template.c
colorspacedsp_yuv2yuv_template.c
colorspacedsp.c all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
colorspacedsp.h
convolution.h libavfilter/x86/vf_convolution: add sobel filter optimization and unit test with intel AVX512 VNNI 2022-11-14 10:04:16 +08:00
deshake.h
dnn_filter_common.c avfilter/dnn_filter_common: fix memleak 2023-09-15 13:02:15 +08:00
dnn_filter_common.h avfilter/dnn: refactor ff_get_dnn_module to remove allocation 2023-06-08 10:50:23 +08:00
dnn_interface.h avfilter/dnn: add log context to ff_get_dnn_module 2023-06-08 10:50:23 +08:00
drawutils.c avfilter/drawutils: rgb48/bgr48 is supported 2022-12-10 14:57:05 +01:00
drawutils.h lavfi/drawutils: improve colorspace support 2022-06-19 19:18:34 -05:00
ebur128.c Remove unnecessary libavutil/(avutil|common|internal).h inclusions 2022-02-24 12:56:49 +01:00
ebur128.h
edge_common.c lavfi/edge_common: Templatify ff_gaussian_blur and ff_sobel 2022-07-30 13:17:28 +02:00
edge_common.h lavfi/edge_common: Templatify ff_gaussian_blur and ff_sobel 2022-07-30 13:17:28 +02:00
edge_template.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_bench.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_cue.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
f_drawgraph.c lavfi/f_drawgraph: forward input frame durations 2022-10-13 10:19:13 +02:00
f_ebur128.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
f_graphmonitor.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
f_interleave.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_latency.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_loop.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_metadata.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_perms.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
f_realtime.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
f_reverse.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_segment.c configure: Use a separate config_components.h header for $ALL_COMPONENTS 2022-03-16 14:12:49 +02:00
f_select.c avfilter/f_select: Also deprecate "pos" variable name 2023-09-07 00:49:25 +02:00
f_sendcmd.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
f_sidedata.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
f_streamselect.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
f_zmq.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
fflcms2.c fflcms2: move to libavcodec 2022-07-30 11:42:06 +02:00
fflcms2.h fflcms2: move to libavcodec 2022-07-30 11:42:06 +02:00
fifo.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
file_open.c libavutil: Deprecate av_fopen_utf8, provide an avpriv version 2022-05-23 13:52:26 +03:00
filters.h lavfi: add ff_inoutlink_check_flow() 2022-02-20 12:38:52 +01:00
formats.c avfilter/formats: fix format negotiation when multiple channel_layouts are provided 2023-05-13 18:21:29 -03:00
formats.h avfilter/formats: Constify channel_layout in ff_add_channel_layout() 2022-05-19 20:20:38 +02:00
framepool.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
framepool.h
framequeue.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
framequeue.h
framerate.h
framesync.c avfilter: use ff_inlink_make_frame_writable() 2023-02-12 13:32:00 +01:00
framesync.h avfilter/framesync: add a new option to set how to sync streams based on secondary input timestamps 2022-08-10 09:15:37 -03:00
gblur.h avfilter/vf_gblur: Move ff_gblur_init into a header 2022-05-06 05:19:49 +02:00
generate_wave_table.c
generate_wave_table.h
gradfun.h
graphdump.c avfilter: convert to new channel layout API 2022-03-15 09:42:46 -03:00
graphparser.c lavfi/graphparser: be more verbose when filtergraph parsing fails 2023-06-16 08:07:02 +02:00
hermite.h all: Add missing header guards 2016-01-28 19:49:48 -08:00
hflip.h avfilter/vf_hflip: Move ff_hflip_init into a header 2022-05-06 05:19:50 +02:00
internal.h avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
lavfutils.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
lavfutils.h
libavfilter.v build: Change structure of the linker version script templates 2016-05-29 16:43:11 +02:00
limiter.h
log2_tab.c
lswsutils.c
lswsutils.h
lut3d.h avfilter/vf_lut3d: allow to control when to upload CLUT for haldclut 2022-04-26 20:07:04 +02:00
Makefile avfilter: add asisdr filter 2023-08-14 11:19:56 +02:00
maskedclamp.h
maskedmerge.h avfilter/vf_maskedmerge: fix rounding when masking 2022-03-03 09:57:53 +01:00
median_template.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
median.h
motion_estimation.c Remove unnecessary libavutil/(avutil|common|internal).h inclusions 2022-02-24 12:56:49 +01:00
motion_estimation.h Remove unnecessary libavutil/(avutil|common|internal).h inclusions 2022-02-24 12:56:49 +01:00
opencl_source.h tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
opencl.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
opencl.h avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
palette.c avfilter/palette: add lowbias32 hashing 2023-01-03 17:18:55 +01:00
palette.h avfilter/palette: add lowbias32 hashing 2023-01-03 17:18:55 +01:00
phase_template.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
preserve_color.h avfilter/preserve_color: Add necessary headers 2021-09-27 10:17:53 +02:00
psnr.h
pthread.c Remove unnecessary libavutil/(avutil|common|internal).h inclusions 2022-02-24 12:56:49 +01:00
qp_table.c avfilter/qp_table: Stop using FF_QSCALE_TYPE_* 2022-03-23 23:45:38 +01:00
qp_table.h avfilter/qp_table: Stop using FF_QSCALE_TYPE_* 2022-03-23 23:45:38 +01:00
qsvvpp.c lavfi/qsvvpp: add set_frame_ext_params callback 2023-08-04 10:27:55 +08:00
qsvvpp.h lavfi/qsvvpp: add set_frame_ext_params callback 2023-08-04 10:27:55 +08:00
removegrain.h
scale_eval.c avfilter/scale_eval: Reduce rounding error. 2022-09-27 00:07:43 +02:00
scale_eval.h avfilter/scale_eval: Reduce rounding error. 2022-09-27 00:07:43 +02:00
scene_sad.c all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
scene_sad.h
setpts.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
settb.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
signature_lookup.c avfilter/signature: fix integer rounding cast precedence 2021-08-28 13:30:02 +05:30
signature.h
silenceremove_template.c avfilter/silenceremove_template: refactor detectors using common peaks code 2023-05-29 11:47:11 +02:00
split.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
src_avsynctest.c avfilter/src_avsynctest: add support for commands 2023-05-10 12:55:22 +02:00
src_movie.c lavfi/src_movie: stop using AV_CODEC_FLAG_COPY_OPAQUE 2023-07-11 19:14:23 +02:00
ssim.h
stack_internal.c lavfi: add a flag for filters able to work with hw_device_ctx 2023-03-24 10:16:51 +01:00
stack_internal.h Revert "avfilter/stack_internal: add missing header includes" 2023-03-11 10:05:47 -03:00
stereo3d.h
thread.h
threshold.h avfilter/vf_threshold: Move ff_threshold_init into a header 2022-05-06 05:19:50 +02:00
tinterlace.h avfilter/ccfifo: remove unnecessary context allocations 2023-05-12 16:21:18 -03:00
transform.c
transform.h
transpose.h
trim.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
unsharp.h avfilter/vf_unsharp: add support for alpha formats 2022-03-01 12:36:35 +01:00
v360.h avfilter/v360: add support for off-axis projection output 2021-11-15 20:41:27 +01:00
vaapi_vpp.c lavfi/{denoise, procamp, scale, sharpness}_vaapi: Add passthrough mode 2023-06-25 10:01:51 +08:00
vaapi_vpp.h lavfi/{denoise, procamp, scale, sharpness}_vaapi: Add passthrough mode 2023-06-25 10:01:51 +08:00
vaf_spectrumsynth.c avfilter: fix av_tx_fn stride usage for complex inputs 2022-11-19 00:25:47 +01:00
version_major.h avfilter/vf_libplacebo: wrap deprecated opts in FF_API define 2023-03-13 11:30:58 -03:00
version.c lib*/version: Move library version functions into files of their own 2022-05-10 06:49:32 +02:00
version.h Bump minor libavfilter version and add Changelog entry 2023-08-14 11:24:12 +02:00
vf_addroi.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_alphamerge.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_amplify.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_aspect.c lavfi/aspect: apply style fixes 2023-03-29 00:15:19 +02:00
vf_atadenoise.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_avgblur_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_avgblur_vulkan.c lavfi/avgblur_vulkan: fix memory leaks 2023-08-28 22:29:34 +02:00
vf_avgblur.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_backgroundkey.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_bbox.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_bilateral_cuda.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_bilateral_cuda.cu avfilter/vf_bilateral_cuda: refactor use of pow to simple multiplication 2022-09-03 20:27:34 +02:00
vf_bilateral.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_bitplanenoise.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_blackdetect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_blackframe.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_blend_init.h avfilter/blend_modes: Always preserve constness 2023-09-07 20:58:00 +02:00
vf_blend_vulkan.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_blend.c avfilter/blend_modes: Always preserve constness 2023-09-07 20:58:00 +02:00
vf_blockdetect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_blurdetect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_bm3d.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_boxblur.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_bwdif_cuda.c avfilter/vf_bwdif_cuda: CUDA accelerated bwdif deinterlacer 2023-06-16 12:52:32 -07:00
vf_bwdif_cuda.cu avfilter/vf_bwdif_cuda: CUDA accelerated bwdif deinterlacer 2023-06-16 12:52:32 -07:00
vf_bwdif_vulkan.c lavfi/bwdif_vulkan: fix memory leaks 2023-08-28 22:29:34 +02:00
vf_bwdif.c avfilter/vf_bwdif: Remove obsolete emms_c() 2023-09-04 11:04:45 +02:00
vf_cas.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_ccrepack.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_chromaber_vulkan.c lavfi/chromaber_vulkan: fix memory leaks 2023-08-28 22:29:34 +02:00
vf_chromakey_cuda.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_chromakey_cuda.cu avfilter: add chromakey_cuda filter 2022-07-10 17:20:15 +02:00
vf_chromakey.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_chromanr.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_chromashift.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_ciescope.c avfilter/vf_ciescope: set output frame duration 2023-01-27 23:13:16 +01:00
vf_codecview.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_colorbalance.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorchannelmixer.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorconstancy.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorcontrast.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_colorcorrect.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_colorize.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_colorkey_opencl.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorkey.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorlevels.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colormap.c avfilter/vf_colormap: Avoid allocation of small array 2022-04-29 13:38:20 +02:00
vf_colormatrix.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorspace_cuda.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_colorspace_cuda.cu libavfilter: add vf_colorrange_cuda, CUDA-accelerated color conversion filter 2022-09-13 22:59:30 +02:00
vf_colorspace.c avfilter/vf_colorspace: Remove redundant emms_c() 2023-09-04 11:04:45 +02:00
vf_colortemperature.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_convolution_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_convolution.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_convolve.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_copy.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_coreimage.m avfilter/vf_coreimage: add missing semicolon 2023-05-04 22:38:47 -03:00
vf_corr.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_cover_rect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_crop.c lavu/frame: deprecate AVFrame.pkt_{pos,size} 2023-03-20 10:42:09 +01:00
vf_cropdetect.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_curves.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_datascope.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_dblur.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_dctdnoiz.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_deband.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_deblock.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_decimate.c avfilter/vf_decimate: add mixed option to process input only partially to be decimated 2022-12-19 16:24:25 +01:00
vf_dedot.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_deflicker.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_deinterlace_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_dejudder.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_delogo.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_derain.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_deshake_opencl.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_deshake.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_despill.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_detelecine.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_displace.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_dnn_classify.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_dnn_detect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_dnn_processing.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_drawbox.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_drawtext.c avfilter/vf_drawtext: fix text width measurement 2023-09-12 19:33:09 +02:00
vf_edgedetect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_elbg.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_entropy.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_epx.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_eq.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_eq.h lavu/frame: deprecate AVFrame.pkt_{pos,size} 2023-03-20 10:42:09 +01:00
vf_estdif.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_exposure.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_extractplanes.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_fade.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_feedback.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_fftdnoiz.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_fftfilt.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_field.c avutil/frame: deprecate interlaced_frame and top_field_first 2023-05-04 18:15:00 -03:00
vf_fieldhint.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_fieldmatch.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_fieldorder.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_fillborders.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_find_rect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_flip_vulkan.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_floodfill.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_format.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_fps.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_framepack.c avfilter/vf_framepack: Use dedicated pointer for access 2023-09-12 09:42:43 +02:00
vf_framerate.c avfilter: Remove unnecessary emms_c for ff_scene_sad_get_fn 2023-09-04 11:04:45 +02:00
vf_framestep.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_freezedetect.c avfilter: Remove unnecessary emms_c for ff_scene_sad_get_fn 2023-09-04 11:04:45 +02:00
vf_freezeframes.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_frei0r.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_fspp.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_fspp.h avfilter/qp_table: Stop using FF_QSCALE_TYPE_* 2022-03-23 23:45:38 +01:00
vf_gblur_init.h all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
vf_gblur_vulkan.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_gblur.c avfilter/vf_gblur: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
vf_geq.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_gradfun.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_grayworld.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_guided.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_hflip_init.h all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
vf_hflip.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_histeq.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_histogram.c avfilter/vf_histogram: call av_frame_copy_props() 2023-01-17 23:20:00 +01:00
vf_hqdn3d.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_hqdn3d.h
vf_hqx.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_hsvkey.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_hue.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_huesaturation.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_hwdownload.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_hwmap.c lavfi: add hwdevice flag to hwupload/hwmap 2023-03-27 17:14:31 +02:00
vf_hwupload_cuda.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_hwupload.c lavfi: add hwdevice flag to hwupload/hwmap 2023-03-27 17:14:31 +02:00
vf_hysteresis.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_iccdetect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_iccgen.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_identity.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_idet.c avutil/frame: deprecate interlaced_frame and top_field_first 2023-05-04 18:15:00 -03:00
vf_idet.h
vf_il.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_kerndeint.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_lagfun.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_lenscorrection.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_lensfun.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_libopencv.c avfilter/vf_libopencv: Use formats list instead of query function 2021-10-05 18:58:27 +02:00
vf_libplacebo.c vf_libplacebo: warn on extra_opts + too old libplacebo 2023-09-03 13:40:27 +02:00
vf_libvmaf.c lavfi/vf_libvmaf: add warning when color ranges differ 2023-09-23 15:55:50 +01:00
vf_limitdiff.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_limiter.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_lumakey.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_lut2.c configure: Use a separate config_components.h header for $ALL_COMPONENTS 2022-03-16 14:12:49 +02:00
vf_lut3d.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_lut.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_maskedclamp.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_maskedmerge.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_maskedminmax.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_maskedthreshold.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_maskfun.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_mcdeint.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_median.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_mergeplanes.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_mestimate.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_midequalizer.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_minterpolate.c avfilter: Remove unnecessary emms_c for ff_scene_sad_get_fn 2023-09-04 11:04:45 +02:00
vf_misc_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_mix.c avfilter/vf_mix: add fast filtering in case all tmix weights are same 2023-06-02 18:54:32 +02:00
vf_monochrome.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_morpho.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_mpdecimate.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_multiply.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_negate.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_neighbor_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_neighbor.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_nlmeans_init.h all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
vf_nlmeans_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_nlmeans_vulkan.c lavfi/nlmeans_vulkan: fix memory leaks 2023-08-28 22:29:35 +02:00
vf_nlmeans.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_nlmeans.h avfilter/vf_nlmeans: Move ff_nlmeans_init into a header 2022-05-06 05:19:50 +02:00
vf_nnedi.c avutil/frame: deprecate interlaced_frame and top_field_first 2023-05-04 18:15:00 -03:00
vf_noise.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_noise.h
vf_normalize.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_null.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_ocr.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_overlay_cuda.c lavu/frame: deprecate AVFrame.pkt_{pos,size} 2023-03-20 10:42:09 +01:00
vf_overlay_cuda.cu
vf_overlay_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_overlay_qsv.c lavfi: add a flag for filters able to work with hw_device_ctx 2023-03-24 10:16:51 +01:00
vf_overlay_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_overlay_vulkan.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_overlay.c avfilter/vf_overlay: Add support for yuv444p10 pixel format 2023-07-20 16:49:05 +02:00
vf_overlay.h avfilter/vf_overlay: Add support for yuv444p10 pixel format 2023-07-20 16:49:05 +02:00
vf_owdenoise.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_pad_opencl.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_pad.c avfilter/vf_pad: use already available outlink variable 2022-03-04 18:30:10 +01:00
vf_palettegen.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_paletteuse.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_perspective.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_phase.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_photosensitivity.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_pixdesctest.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_pixelize.c avfilter: add pixelize video filter 2022-04-14 22:37:21 +02:00
vf_pp7.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_pp7.h avfilter/qp_table: Stop using FF_QSCALE_TYPE_* 2022-03-23 23:45:38 +01:00
vf_pp.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_premultiply.c configure: Use a separate config_components.h header for $ALL_COMPONENTS 2022-03-16 14:12:49 +02:00
vf_procamp_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_program_opencl.c lavfi: add a flag for filters able to work with hw_device_ctx 2023-03-24 10:16:51 +01:00
vf_pseudocolor.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_psnr.c lavfi/vf_psnr: add warning when color ranges differ 2023-09-23 15:55:44 +01:00
vf_pullup.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
vf_pullup.h
vf_qp.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_random.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_readeia608.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_readvitc.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_remap_opencl.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_remap.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_removegrain.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_removelogo.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_repeatfields.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_rotate.c lavfi/rotate: Avoid undefined behaviour. 2022-10-10 02:58:39 +02:00
vf_sab.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_scale_cuda.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_scale_cuda.cu avfilter/scale_cuda: add support for rgb32/bgr32 conversions 2023-06-16 10:40:21 -07:00
vf_scale_cuda.h
vf_scale_npp.c lavu/frame: deprecate AVFrame.pkt_{pos,size} 2023-03-20 10:42:09 +01:00
vf_scale_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_scale_vt.c avfilter/vf_scale_vt: fix output frame dimension 2023-08-26 16:31:43 +08:00
vf_scale_vulkan.c lavfi/scale_vulkan: fix memory leaks 2023-08-28 22:29:35 +02:00
vf_scale.c avfilter: use the new AVFrame interlace flags in all filters 2023-05-04 18:14:11 -03:00
vf_scdet.c avfilter: Remove unnecessary emms_c for ff_scene_sad_get_fn 2023-09-04 11:04:45 +02:00
vf_scroll.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_selectivecolor.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_separatefields.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_setparams.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_sharpen_npp.c avfilter/sharpen_npp: use FILTER_SINGLE_PIXFMT 2021-10-07 19:01:25 +02:00
vf_shear.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_showinfo.c avfilter: use the new AVFrame key_frame flag in all filters 2023-05-04 19:19:13 -03:00
vf_showpalette.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_shuffleframes.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_shufflepixels.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_shuffleplanes.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_signalstats.c avfilter: use ff_inlink_make_frame_writable() 2023-02-12 13:32:00 +01:00
vf_signature.c avutil/internal: Move avpriv-file API to a header of its own 2022-09-03 15:41:44 +02:00
vf_siti.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_smartblur.c avfilter/vf_smartblur: pass old context to sws_getCachedContext 2023-09-20 23:24:55 +08:00
vf_spp.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
vf_spp.h avfilter/qp_table: Stop using FF_QSCALE_TYPE_* 2022-03-23 23:45:38 +01:00
vf_sr.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_ssim360.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_ssim.c lavfi/vf_ssim: add warning when color ranges differ 2023-09-23 15:55:47 +01:00
vf_stack_qsv.c lavfi: add a flag for filters able to work with hw_device_ctx 2023-03-24 10:16:51 +01:00
vf_stack_vaapi.c lavfi: add a flag for filters able to work with hw_device_ctx 2023-03-24 10:16:51 +01:00
vf_stack.c avfilter/xstack: Add support for fixed size grid 2022-07-04 19:49:31 +02:00
vf_stereo3d.c all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
vf_subtitles.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_super2xsai.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_swaprect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_swapuv.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_telecine.c avutil/frame: deprecate interlaced_frame and top_field_first 2023-05-04 18:15:00 -03:00
vf_threshold_init.h avfilter/vf_threshold: fix handling of zero threshold 2022-10-27 10:23:24 +02:00
vf_threshold.c avfilter/vf_threshold: Move ff_threshold_init into a header 2022-05-06 05:19:50 +02:00
vf_thumbnail_cuda.c avfilter/vf_thumbnail_cuda: Reindent after the previous commit 2021-10-07 16:41:21 +02:00
vf_thumbnail_cuda.cu
vf_thumbnail.c avfilter/vf_thumbnail: allow to change stats log level 2022-12-05 21:08:02 +01:00
vf_tile.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_tinterlace.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_tmidequalizer.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_tonemap_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_tonemap_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_tonemap.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_tpad.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_transpose_npp.c avfilter/vf_transpose_npp: Store format in filter, remove query func 2021-10-05 18:58:28 +02:00
vf_transpose_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_transpose_vaapi.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_transpose_vt.c avfilter/vf_transpose_vt: fix declaration-after-statement 2023-08-26 16:31:43 +08:00
vf_transpose_vulkan.c lavfi/transpose_vulkan: fix memory leaks 2023-08-28 22:29:36 +02:00
vf_transpose.c all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
vf_unsharp_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_unsharp.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_untile.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_uspp.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_v360.c all: Replace if (ARCH_FOO) checks by #if ARCH_FOO 2022-06-15 04:56:37 +02:00
vf_vaguedenoiser.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_varblur.c avfilter/vf_varblur: Don't use pointer-to-const for destination 2023-09-07 20:58:00 +02:00
vf_vectorscope.c avfilter/vf_vectorscope: add some commands support 2022-04-08 18:54:00 +02:00
vf_vflip.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_vfrdet.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_vibrance.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vf_vidstabdetect.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_vidstabtransform.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_vif.c avfilter/vf_vif: Don't cast const away unnecessarily 2023-09-07 20:58:00 +02:00
vf_vignette.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_vmafmotion.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_vpp_qsv.c libavfilter/vf_vpp_qsv: Fix a timestamp bug when framerate is not set 2023-08-17 12:06:09 +08:00
vf_w3fdif.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_waveform.c avfilter/vf_waveform: add input option 2023-05-14 00:13:59 +02:00
vf_weave.c avfilter/internal: Don't include formats.h 2023-08-07 09:21:13 +02:00
vf_xbr.c avfilter/internal: Don't include video.h 2023-08-07 09:21:13 +02:00
vf_xfade_opencl.c tools/cl2c: change to tools/source2c and allow non-OpenCL source files 2023-05-29 00:42:00 +02:00
vf_xfade_vulkan.c lavfi/vf_xfade_vulkan: add wipes 2023-08-24 22:50:57 +02:00
vf_xfade.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_xmedian.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_yadif_cuda.c avfilter/vf_yadif_cuda: remove unnecessary private struct fields 2023-06-15 12:29:52 -07:00
vf_yadif_cuda.cu
vf_yadif_videotoolbox.m avfilter: Constify non-const filters 2022-04-01 21:29:01 +02:00
vf_yadif.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_yaepblur.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vf_zoompan.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vf_zscale.c avfilter/vf_zscale: Add smpte240m transfer option and fix matrix option typo 2022-07-28 16:17:23 +02:00
video.c avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
video.h avfilter: Deduplicate default video inputs/outputs 2023-08-07 09:21:13 +02:00
vidstabutils.c avfilter/vf_vidstab(detect|transform): Deduplicate pixel formats 2021-10-05 18:58:25 +02:00
vidstabutils.h avfilter/vf_vidstab(detect|transform): Deduplicate pixel formats 2021-10-05 18:58:25 +02:00
vmaf_motion.h
vsink_nullsink.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vsrc_cellauto.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vsrc_ddagrab_shaders.h avfilter/vsrc_ddagrab: fix checkheaders error 2022-07-18 13:08:39 +02:00
vsrc_ddagrab.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
vsrc_gradients.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vsrc_life.c avfilter/vsrc_life: set video frame duration 2023-01-17 17:46:58 +01:00
vsrc_mandelbrot.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vsrc_mptestsrc.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vsrc_sierpinski.c avfilter: Remove unnecessary formats.h inclusions 2023-08-07 09:21:13 +02:00
vsrc_testsrc_vulkan.c lavfi/testsrc_vulkan: fix memory leaks 2023-08-28 22:29:36 +02:00
vsrc_testsrc.c avfilter: use ptrdiff_t instead of int for linesize 2023-09-22 22:56:57 +02:00
vulkan_filter.c lavfi: add lavfi-only Vulkan infrastructure 2023-05-29 00:41:51 +02:00
vulkan_filter.h lavfi: add lavfi-only Vulkan infrastructure 2023-05-29 00:41:51 +02:00
vulkan_glslang.c lavfi: add lavfi-only Vulkan infrastructure 2023-05-29 00:41:51 +02:00
vulkan_shaderc.c lavfi: add lavfi-only Vulkan infrastructure 2023-05-29 00:41:51 +02:00
vulkan_spirv.h lavfi: add lavfi-only Vulkan infrastructure 2023-05-29 00:41:51 +02:00
vulkan.c lavfi/vulkan: split off lavfi-specific code into vulkan_filter.c 2021-11-19 16:47:26 +01:00
vulkan.h lavfi/vulkan: split off lavfi-specific code into vulkan_filter.c 2021-11-19 16:47:26 +01:00
w3fdif.h
window_func.h avfilter/window_func: Use av_bessel_i0() 2023-05-29 00:55:52 +02:00
yadif_common.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
yadif.h avfilter/ccfifo: remove unnecessary context allocations 2023-05-12 16:21:18 -03:00