ffmpeg/libavfilter
Andreas Rheinhardt 20b0d24c2f Makefile: Redo duplicating object files in shared builds
In case of shared builds, some object files containing tables
are currently duplicated into other libraries: log2_tab.c,
golomb.c, reverse.c. The check for whether this is duplicated
is simply whether CONFIG_SHARED is true. Yet this is crude:
E.g. libavdevice includes reverse.c for shared builds, but only
needs it for the decklink input device, which given that decklink
is not enabled by default will be unused in most libavdevice.so.

This commit changes this by making it more explicit about what
to duplicate from other libraries. To do this, two new Makefile
variables were added: SHLIBOBJS and STLIBOBJS. SHLIBOBJS contains
the objects that are duplicated from other libraries in case of
shared builds; STLIBOBJS contains stuff that a library has to
provide for other libraries in case of static builds. These new
variables provide a way to enable/disable with a finer granularity
than just whether shared builds are enabled or not. E.g. lavd's
Makefile now contains: SHLIBOBJS-$(CONFIG_DECKLINK_INDEV) += reverse.o

Another example is provided by the golomb tables. These are provided
by lavc for static builds, even if one uses a build configuration
that makes only lavf use them. Therefore lavc's Makefile contains
STLIBOBJS-$(CONFIG_MXF_MUXER) += golomb.o, whereas lavf's Makefile
has a corresponding SHLIBOBJS-$(CONFIG_MXF_MUXER) += golomb_tab.o.
E.g. in case the MXF muxer is the only component needing these tables
only libavformat.so will contain them for shared builds; currently
libavcodec.so does so, too.
(There is currently a CONFIG_EXTRA group for golomb. But actually
one would need two groups (golomb_avcodec and golomb_avformat) in
order to know when and where to include these tables. Therefore
this commit uses a Makefile-based approach for this and stops
using these groups for the users in libavformat.)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2022-01-04 05:01:04 +01:00
..
aarch64 Include attributes.h directly 2021-04-19 14:34:10 +02:00
cuda avfilter/cuda: fix ptx inflation with large payloads 2021-06-24 20:58:47 +02:00
dnn Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
metal lavfi/metal: fix build with pre-10.11 deployment targets 2021-12-22 18:43:34 -06:00
opencl
tests tests/dnn: Make DNN tests regular libavfilter tests 2021-12-19 00:46:29 +01:00
x86 avfilter/vf_nlmeans: add x86 SIMD 2021-11-11 21:54:46 +01:00
.gitignore
Makefile Makefile: Redo duplicating object files in shared builds 2022-01-04 05:01:04 +01:00
aeval.c avfilter/aeval: Fix leak of expressions upon reallocation error 2021-10-07 12:50:18 +02:00
af_acontrast.c avfilter/af_contrast: Use formats list instead of query function 2021-10-05 18:01:01 +02:00
af_acopy.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_acrossover.c avfilter/af_crossover: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_acrusher.c avfilter/af_acrusher: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_adeclick.c avfilter/af_adeclick: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_adecorrelate.c avfilter/af_adecorrelate: Store format in filter, remove query func 2021-10-05 18:01:02 +02:00
af_adelay.c avfilter/af_adelay: use outlink where applicable 2021-11-07 20:47:21 +01:00
af_adenorm.c avfilter/af_adenorm: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_aderivative.c avfilter/af_aderivative: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_adynamicequalizer.c avfilter: add audio dynamic equalizer filter 2021-12-12 10:47:28 +01:00
af_adynamicsmooth.c avfilter: add audio dynamic smooth filter 2021-12-02 09:39:27 +01:00
af_aecho.c avfilter/af_aecho: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_aemphasis.c avfilter/af_aemphasis: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_aexciter.c avfilter/af_aexciter: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_afade.c avfilter/af_afade: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_afftdn.c avfilter/af_afftdn: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_afftfilt.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
af_afir.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_afir.h
af_aformat.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_afreqshift.c avfilter/af_afreqshift: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_afwtdn.c avfilter/af_afwtdn: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_agate.c avfilter/af_agate: Store format in filter, remove query function 2021-10-05 18:01:04 +02:00
af_aiir.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_alimiter.c avfilter/af_alimiter: add timeline and commands support 2021-10-18 22:46:36 +02:00
af_amerge.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_amix.c avfilter/af_amix: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_amultiply.c avfilter/af_amultiply: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_anequalizer.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_anlmdn.c avfilter/af_anlmdn: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_anlmdndsp.h
af_anlms.c avfilter: add anlmf filter 2021-12-25 11:32:41 +01:00
af_anull.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_apad.c avfilter/af_apad: do not add infinite silence for zero pad_dur or whole_dur 2021-11-14 18:13:58 +01:00
af_aphaser.c avfilter/af_aphaser: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_apsyclip.c avfilter/af_apsyclip: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_apulsator.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_aresample.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_arnndn.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_asdr.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_asetnsamples.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_asetrate.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_ashowinfo.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_asoftclip.c avfilter/af_asoftclip: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_aspectralstats.c avfilter: add audio spectral stats filter 2021-12-02 09:35:36 +01:00
af_asr.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_astats.c avfilter/af_astats: improve options descriptions 2021-12-14 22:36:50 +08:00
af_asubboost.c avfilter/af_asubboost: Store format in filter, remove query function 2021-10-05 18:01:02 +02:00
af_asupercut.c avfilter/af_asupercut: Use formats list instead of query function 2021-10-05 18:01:02 +02:00
af_atempo.c avfilter/af_atempo: Use formats list instead of query function 2021-10-05 18:01:03 +02:00
af_atilt.c avfilter/af_atilt: use ff_filter_execute() 2021-11-11 21:54:17 +01:00
af_axcorrelate.c avfilter/af_axcorrelate: add DBLP sample format support 2021-10-09 14:10:09 +02:00
af_biquads.c avfilter/af_biquads: add svf transform type 2021-11-26 00:55:32 +01:00
af_bs2b.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_channelmap.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_channelsplit.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_chorus.c avfilter/af_chorus: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_compand.c avfilter/af_compand: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_compensationdelay.c avfilter/af_compensationdelay: Store format in filter, remove query func 2021-10-05 18:01:03 +02:00
af_crossfeed.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_crystalizer.c avfilter/af_crystalizer: Use formats list instead of query function 2021-10-05 18:01:03 +02:00
af_dcshift.c avfilter/af_dcshift: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_deesser.c avfilter/af_deesser: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_drmeter.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_dynaudnorm.c avfilter/af_dynaudnorm: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_earwax.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_extrastereo.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_firequalizer.c avfilter/af_firequalizer: Store format in filter, remove query func 2021-10-05 18:01:03 +02:00
af_flanger.c avfilter/af_flanger: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_haas.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_hdcd.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_headphone.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_join.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_ladspa.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_loudnorm.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_lv2.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_mcompand.c avfilter/af_mcompand: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_pan.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_replaygain.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_rubberband.c avfilter/af_rubberband: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_sidechaincompress.c avfilter/af_sidechaincompress: Store format in filter, remove query func 2021-10-05 18:01:03 +02:00
af_silencedetect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
af_silenceremove.c avfilter/af_silenceremove: Use formats list instead of query function 2021-10-05 18:01:03 +02:00
af_sofalizer.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_speechnorm.c avfilter/af_speechnorm: Use formats list instead of query function 2021-10-05 18:01:03 +02:00
af_stereotools.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_stereowiden.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_superequalizer.c avfilter/af_superequalizer: Store format in filter, remove query func 2021-10-05 18:01:03 +02:00
af_surround.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
af_tremolo.c avfilter/af_tremolo: Store format in filter, remove query function 2021-10-05 18:01:03 +02:00
af_vibrato.c avfilter/af_vibrato: Fix segfault upon allocation error 2021-10-07 12:50:01 +02:00
af_volume.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
af_volume.h
af_volumedetect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
allfilters.c avfilter: add anlmf filter 2021-12-25 11:32:41 +01:00
asink_anullsink.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
asrc_afirsrc.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
asrc_anoisesrc.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
asrc_anullsrc.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
asrc_flite.c avfilter/asrc_flite: Remove double ';' 2021-10-10 14:27:36 +02:00
asrc_hilbert.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
asrc_sinc.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
asrc_sine.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
atadenoise.h avfilter/vf_atadenoise: add sigma options 2021-01-22 16:21:22 +01:00
audio.c avfilter/audio: Don't call av_get_channel_layout_nb_channels twice 2021-08-17 19:13:40 +02:00
audio.h avfilter/audio, video: Remove references to avfilter_unref_buffer() 2021-09-27 06:10:57 +02:00
avf_abitscope.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_ahistogram.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_aphasemeter.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_avectorscope.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_concat.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_showcqt.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_showcqt.h avfilter/avf_showcqt: switch to TX FFT from avutil 2021-07-27 21:16:28 +02:00
avf_showfreqs.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
avf_showspatial.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
avf_showspectrum.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
avf_showvolume.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avf_showwaves.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
avfilter.c avfilter/avfilter: Make ff_tlog_ref() static 2021-10-03 22:54:54 +02:00
avfilter.h avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
avfiltergraph.c avfilter/avfiltergraph: Fix use-after-free when inserting auto-converter 2021-10-08 12:06:00 +02:00
avfilterres.rc
bbox.c avfilter/bbox: add support for >8 depth 2021-01-17 12:06:01 +01:00
bbox.h avfilter/bbox: add support for >8 depth 2021-01-17 12:06:01 +01:00
blend.h avfilter/vf_blend: add few more modes 2021-09-30 01:22:48 +02:00
blend_modes.c avfilter/vf_blend: add few more modes 2021-09-30 01:22:48 +02:00
boxblur.c
boxblur.h Remove unnecessary mem.h inclusions 2021-07-22 14:47:57 +02:00
bufferqueue.h
buffersink.c avfilter/buffersink: Remove outdated comments 2021-12-03 17:01:45 +01:00
buffersink.h avfilter/buffersink: Postpone removal of av_[a]buffersink_params_alloc 2021-03-07 15:19:10 +01:00
buffersrc.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
buffersrc.h
bwdif.h
colorspace.c
colorspace.h
colorspacedsp.c
colorspacedsp.h
colorspacedsp_template.c
colorspacedsp_yuv2yuv_template.c
convolution.h avfilter/vf_convolution: add 16-column operation for filter_column() 2021-02-13 14:45:48 +01:00
deshake.h
dnn_filter_common.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
dnn_filter_common.h libavfilter: Remove Async Flag from DNN Filter Side 2021-08-28 16:19:07 +08:00
dnn_interface.h libavfilter: Unify Execution Modes in DNN Filters 2021-08-28 16:19:07 +08:00
drawutils.c Remove unnecessary avassert.h inclusions 2021-07-22 15:02:30 +02:00
drawutils.h avfilter/drawutils: Remove remnants of old API 2021-01-29 15:20:53 +01:00
ebur128.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
ebur128.h avfilter/ebur128: Remove unused functions 2021-02-02 23:53:30 +01:00
f_bench.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_cue.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_drawgraph.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
f_ebur128.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
f_graphmonitor.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
f_interleave.c avfilter/f_interleave: Free inpads' names generically 2021-08-22 16:13:59 +02:00
f_latency.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_loop.c avfilter/f_loop: initialize ret to silence compiler warning 2021-09-11 22:19:25 +02:00
f_metadata.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_perms.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_realtime.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_reverse.c avfilter/f_reverse: readjust frame timestamps for areverse 2021-11-07 20:47:21 +01:00
f_segment.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_select.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_sendcmd.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_sidedata.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
f_streamselect.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
f_zmq.c avfilter/f_zmq: Deduplicate AVClasses 2021-09-19 04:26:00 +02:00
fifo.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
filters.h
formats.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
formats.h avfilter/formats: Add function to create AVFilterFormats with one entry 2021-10-05 17:37:09 +02:00
framepool.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
framepool.h avutil/buffer: Switch AVBuffer API to size_t 2021-04-27 10:43:13 -03:00
framequeue.c
framequeue.h
framerate.h
framesync.c avfilter/framesync: Remove redundant setting of AVClass 2021-09-23 21:13:00 +02:00
framesync.h avfilter/framesync: Remove redundant setting of AVClass 2021-09-23 21:13:00 +02:00
gblur.h libavfilter/x86/vf_gblur: add localbuf and ff_horiz_slice_avx2/512() 2021-08-29 19:58:33 +02:00
generate_wave_table.c
generate_wave_table.h
gradfun.h
graphdump.c avfilter/graphdump: Use pointer to const for pointer to static strings 2021-08-27 18:17:07 +02:00
graphparser.c avfilter/graphparser: Fix memleak when linking filters fails 2020-08-23 19:57:42 +02:00
hermite.h
hflip.h lavfi/hflip: Support Bayer pixel formats. 2020-08-25 01:29:24 +02:00
internal.h avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
lavfutils.c lavfi/lavfutils: include required headers explicitly 2021-06-10 16:51:44 +02:00
lavfutils.h avfilter/lavfutils.h: Don't include avformat.h 2021-02-25 22:03:32 +01:00
libavfilter.v
limiter.h
log2_tab.c
lswsutils.c
lswsutils.h
lut3d.h avfilter/vf_lut3d: add x86-optimized tetrahedral interpolation 2021-10-10 22:23:48 +02:00
maskedclamp.h
maskedmerge.h
median.h
median_template.c
motion_estimation.c
motion_estimation.h
opencl.c avfilter/opencl: Fix program_opencl for source code larger than 64kB 2021-10-16 12:17:23 +02:00
opencl.h avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
opencl_source.h
phase_template.c avfilter/vf_phase: add >8 bit support 2020-02-15 12:18:51 +01:00
preserve_color.h avfilter/preserve_color: Add necessary headers 2021-09-27 10:17:53 +02:00
psnr.h
pthread.c avutil/internal, swresample/audioconvert: Remove cpu.h inclusions 2021-07-22 14:33:45 +02:00
qp_table.c lavfi: add common code to handle QP tables 2021-01-01 14:24:20 +01:00
qp_table.h avfilter/internal: Move ff_norm_qscale() to qp_table.h 2021-08-05 19:59:00 +02:00
qsvvpp.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
qsvvpp.h lavfi/qsvvpp: support async depth 2021-04-11 23:18:20 +08:00
removegrain.h
scale_eval.c
scale_eval.h
scene_sad.c
scene_sad.h
setpts.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
settb.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
signature.h
signature_lookup.c avfilter/signature: fix integer rounding cast precedence 2021-08-28 13:30:02 +05:30
split.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
src_movie.c avfilter/src_movie: add format_opts for the opened file 2021-11-29 09:26:40 +08:00
ssim.h
stereo3d.h
thread.h
threshold.h
tinterlace.h avfilter/vf_tinterlace: use frame counter from lavfi 2020-07-17 13:53:55 +02:00
transform.c avfilter/transform: Stop exporting internal functions 2021-04-27 10:43:11 -03:00
transform.h avfilter/transform: Stop exporting internal functions 2021-04-27 10:43:11 -03:00
transpose.h
trim.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
unsharp.h avfilter/vf_unsharp: add 10bit support 2020-11-07 10:09:59 +08:00
v360.h avfilter/v360: add support for off-axis projection output 2021-11-15 20:41:27 +01:00
vaapi_vpp.c lavfi: regroup formats lists in a single structure. 2020-09-08 14:02:40 +02:00
vaapi_vpp.h
vaf_spectrumsynth.c avfilter/window_func: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
version.h lib*/version.h: Bump Versions after release/5.0 branch 2022-01-03 22:10:46 +01:00
vf_addroi.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01: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: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_aspect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_atadenoise.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_avgblur.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_avgblur_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_avgblur_vulkan.c avfilter/avgblur_vulkan: call av_vkfmt_from_pixfmt only one time 2021-11-19 16:47:47 +01:00
vf_bbox.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_bilateral.c avfilter/vf_bilateral: add slice threading support 2021-10-22 12:20:40 +02:00
vf_bitplanenoise.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_blackdetect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_blackframe.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_blend.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_bm3d.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_boxblur.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_bwdif.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_cas.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_chromaber_vulkan.c avfilter/chromaber_vulkan: call av_vkfmt_from_pixfmt only one time 2021-11-19 16:47:47 +01:00
vf_chromakey.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_chromanr.c avfilter/vf_chromanr: improve filtering results 2021-11-03 11:55:46 +01:00
vf_chromashift.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_ciescope.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_codecview.c avfilter/vf_codecview: Store format in filter, remove query function 2021-10-05 18:01:04 +02:00
vf_colorbalance.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_colorchannelmixer.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_colorconstancy.c avfilter/vf_colorconstancy: Store format in filter, remove query func 2021-10-05 18:01:04 +02:00
vf_colorcontrast.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_colorcorrect.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_colorize.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_colorkey.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_colorkey_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_colorlevels.c avfilter/vf_colorlevels: Use formats list instead of query function 2021-10-05 18:01:04 +02:00
vf_colormatrix.c avfilter/vf_colormatrix: Use formats list instead of query function 2021-10-05 18:01:04 +02:00
vf_colorspace.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_colortemperature.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_convolution.c avfilter/vf_convolution: improve runtime support for convolution filter 2021-10-23 14:51:42 +02:00
vf_convolution_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_convolve.c avfilter: add xcorrelate video filter 2021-10-13 19:09:21 +02:00
vf_copy.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_coreimage.m avfilter/vf_coreimage: Store format in filter, remove query function 2021-10-05 18:58:09 +02:00
vf_cover_rect.c avfilter/vf_cover_rect: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vf_crop.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_cropdetect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_curves.c avfilter/vf_curves: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vf_datascope.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_dblur.c avfilter/vf_dblur: add clipping 2021-10-23 23:53:51 +02:00
vf_dctdnoiz.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_deband.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_deblock.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_decimate.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_dedot.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_deflicker.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_deinterlace_qsv.c avfilter/vf_deinterlace_qsv: Store format in filter, remove query func 2021-10-05 18:58:28 +02:00
vf_deinterlace_vaapi.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +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: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_derain.c avfilter/vf_derain: Store format in filter, remove query function 2021-10-05 18:58:24 +02:00
vf_deshake.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_deshake_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_despill.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +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: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_dnn_classify.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_dnn_detect.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_dnn_processing.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_drawbox.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_drawtext.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_edgedetect.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_elbg.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_entropy.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_epx.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_eq.c avfilter/vf_eq: add support for alpha channel 2021-10-21 14:13:03 +02:00
vf_eq.h
vf_estdif.c avfilter/vf_estdif: allow to change two more options 2021-11-11 21:54:40 +01:00
vf_exposure.c avfilter/vf_exposure: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vf_extractplanes.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_fade.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_fftdnoiz.c avfilter/vf_fftdnoiz: fix missing funcionality 2021-10-18 21:34:08 +02:00
vf_fftfilt.c avfilter/vf_fftfilt: export FFT arrays size 2021-10-14 20:26:23 +02:00
vf_field.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_fieldhint.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_fieldmatch.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_fieldorder.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_fillborders.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_find_rect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_flip_vulkan.c avfilter: add a flip_vulkan filter 2021-12-02 11:06:24 +01:00
vf_floodfill.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_format.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_fps.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_framepack.c avfilter/vf_framepack: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vf_framerate.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_framestep.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_freezedetect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01: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: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_fspp.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_fspp.h lavfi/vf_fspp: convert to the video_enc_params API 2021-01-01 14:25:28 +01:00
vf_gblur.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_gblur_vulkan.c lavfi/vulkan: split off lavfi-specific code into vulkan_filter.c 2021-11-19 16:47:26 +01:00
vf_geq.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_gradfun.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_grayworld.c avfilter/vf_grayworld: Use formats list instead of query function 2021-10-05 18:58:27 +02:00
vf_guided.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_hflip.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_histeq.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_histogram.c avfilter/vf_histogram: add more color modes 2021-10-27 11:29:29 +02:00
vf_hqdn3d.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_hqdn3d.h
vf_hqx.c avfilter/vf_hqx: Store format in filter, remove query function 2021-10-05 18:58:24 +02:00
vf_hsvkey.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_hue.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_huesaturation.c avfilter/vf_huesaturation: Remove dead store 2021-11-19 20:37:17 +01: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 avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_hwupload.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +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_hysteresis.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_identity.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_idet.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_idet.h
vf_il.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_kerndeint.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_lagfun.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_lenscorrection.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_lensfun.c avfilter/vf_lensfun: Store format in filter, remove query function 2021-10-05 18:58:24 +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 lavfi/vf_libplacebo: update deprecated option name 2021-12-15 23:38:29 +01:00
vf_libvmaf.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_limitdiff.c avfilter: add limitdiff video filter 2021-10-13 19:02:34 +02:00
vf_limiter.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_lumakey.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_lut.c avfilter: split negate filter from lut filter 2021-10-27 11:29:29 +02:00
vf_lut2.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_lut3d.c avfilter/vf_lut3d: add x86-optimized tetrahedral interpolation 2021-10-10 22:23:48 +02:00
vf_maskedclamp.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_maskedmerge.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_maskedminmax.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_maskedthreshold.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_maskfun.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_mcdeint.c avfilter/vf_mcdeint: Store format in filter, remove query function 2021-10-05 18:58:24 +02:00
vf_median.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_mergeplanes.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_mestimate.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_midequalizer.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_minterpolate.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_misc_vaapi.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_mix.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_monochrome.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_morpho.c avfilter/vf_morpho: fix leak by not returning too early 2021-10-05 20:13:13 +02:00
vf_mpdecimate.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_negate.c avfilter: split negate filter from lut filter 2021-10-27 11:29:29 +02:00
vf_neighbor.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_neighbor_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_nlmeans.c avfilter/vf_nlmeans: add x86 SIMD 2021-11-11 21:54:46 +01:00
vf_nlmeans.h avfilter/vf_nlmeans: add x86 SIMD 2021-11-11 21:54:46 +01:00
vf_nlmeans_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_nnedi.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_noise.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_noise.h
vf_normalize.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_null.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_ocr.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_overlay.c avfilter/vf_overlay: unbreak alpha composition with negative y and threads > 1 2021-10-14 20:05:39 +02:00
vf_overlay.h avfilter/vf_overlay: add yuv420p10 and yuv422p10 10bit format support 2020-06-19 07:14:46 +08:00
vf_overlay_cuda.c avfilter/vf_overlay_cuda: Store format in filter, remove query func 2021-10-05 18:58:28 +02:00
vf_overlay_cuda.cu avfilter: add vf_overlay_cuda 2020-03-28 18:39:40 +01:00
vf_overlay_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_overlay_qsv.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_overlay_vulkan.c avfilter/overlay_vulkan: call av_vkfmt_from_pixfmt only one time 2021-11-19 16:47:47 +01:00
vf_owdenoise.c avfilter/vf_owdenoise: relicense my code 2021-10-24 16:54:36 +02:00
vf_pad.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_pad_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_palettegen.c avfilter/vf_palettegen: cosmetic changes 2021-10-13 18:52:14 +02:00
vf_paletteuse.c avfilter/vf_paletteuse: Add missing parentheses 2021-11-27 19:15:19 +01:00
vf_perspective.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_phase.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_photosensitivity.c avfilter/vf_photosensitivity: Use formats list instead of query function 2021-10-05 18:58:26 +02:00
vf_pixdesctest.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_pp.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_pp7.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_pp7.h
vf_premultiply.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_procamp_vaapi.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_program_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_pseudocolor.c avfilter/vf_pseudocolor: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vf_psnr.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_pullup.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_pullup.h
vf_qp.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_random.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_readeia608.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_readvitc.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01: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: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_removelogo.c avfilter/vf_removelogo: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_repeatfields.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_rotate.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_sab.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_scale.c avfilter/vf_scale: Reindentation 2021-10-10 12:04:30 +02:00
vf_scale_cuda.c avfilter/vf_scale_cuda: Store format in filter, remove query function 2021-10-05 18:58:28 +02:00
vf_scale_cuda.cu avfilter/scale_cuda: add support for pixel format conversion 2021-06-25 01:44:30 +02:00
vf_scale_cuda.h avfilter/scale_cuda: expose optional algorithm parameter 2020-11-04 18:10:19 +01:00
vf_scale_npp.c avfilter/scale_npp: add scale2ref_npp filter 2021-11-03 19:06:14 +01:00
vf_scale_qsv.c avfilter/vf_scale_qsv: Use formats list instead of query function 2021-10-05 18:58:28 +02:00
vf_scale_vaapi.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_scale_vulkan.c avfilter/vf_scale_vulkan: align struct ScaleVulkanContext 2022-01-03 03:17:43 +01:00
vf_scdet.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_scroll.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_selectivecolor.c avfilter/vf_selectivecolor: no need to use doubles 2021-10-22 13:57:42 +02:00
vf_separatefields.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_setparams.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01: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: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01: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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_shufflepixels.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_shuffleplanes.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_signalstats.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_signature.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_smartblur.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_spp.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_spp.h lavfi/vf_spp: convert to the video_enc_params API 2021-01-01 14:25:02 +01:00
vf_sr.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_ssim.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_stack.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_stereo3d.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_subtitles.c lavfi/vf_subtitles: stop using deprecated ass_set_aspect_ratio() 2021-12-07 11:16:14 +01:00
vf_super2xsai.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_swaprect.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_swapuv.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_telecine.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_threshold.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_thumbnail.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +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_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: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_tmidequalizer.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_tonemap.c avfilter/vf_tonemap: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vf_tonemap_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_tonemap_vaapi.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_tpad.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_transpose.c avfilter/vf_transpose: fix un-checked potential memory allocation failure 2021-12-10 12:38:43 +01: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 avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_transpose_vaapi.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_transpose_vulkan.c transpose_vulkan: add passthrough option 2022-01-03 03:17:43 +01:00
vf_unsharp.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_unsharp_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_untile.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_uspp.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_v360.c avfilter/v360: add support for off-axis projection output 2021-11-15 20:41:27 +01:00
vf_vaguedenoiser.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_varblur.c avfilter: add varblur video filter 2021-10-19 08:53:56 +02:00
vf_vectorscope.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_vflip.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vfrdet.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_vibrance.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_vidstabdetect.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_vidstabtransform.c avfilter/vf_vidstabtransform: Use formats list instead of query func 2021-10-05 18:58:25 +02:00
vf_vif.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_vignette.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_vmafmotion.c avfilter: add AVFILTER_FLAG_METADATA_ONLY 2021-12-04 14:07:19 +01:00
vf_vpp_qsv.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_w3fdif.c avfilter/vf_w3fdif: do not output extra frame at start with deint=interlaced 2021-10-18 09:29:41 +02:00
vf_waveform.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_weave.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vf_xbr.c avfilter/vf_xbr: Store format in filter, remove query function 2021-10-05 18:58:25 +02:00
vf_xfade.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_xfade_opencl.c avfilter/opencl: Store format in filter, remove query function 2021-10-05 18:58:29 +02:00
vf_xmedian.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_yadif.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_yadif_cuda.c avfilter/vf_yadif_cuda: simplify filter definition 2021-12-18 11:55:47 -08:00
vf_yadif_cuda.cu
vf_yadif_videotoolbox.m lavfi/metal: fix build with pre-10.11 deployment targets 2021-12-22 18:43:34 -06:00
vf_yaepblur.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_zoompan.c avfilter: Reindentation after query_formats changes 2021-10-05 18:58:29 +02:00
vf_zscale.c avfilter/vf_zscale: fix mapping of zimg_chroma_location_e to AVChromaLocation 2021-10-28 23:13:51 +03:00
video.c avfilter/internal: Combine get_(audio|video)_buffer into union 2021-08-17 19:13:16 +02:00
video.h avfilter/audio, video: Remove references to avfilter_unref_buffer() 2021-09-27 06:10:57 +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/vsrc_cellauto: Store format in filter, remove query function 2021-10-05 18:58:25 +02:00
vsrc_gradients.c avfilter/vsrc_gradients: Use formats list instead of query function 2021-10-05 18:58:24 +02:00
vsrc_life.c avfilter: Replace query_formats callback with union of list and callback 2021-10-05 17:48:25 +02:00
vsrc_mandelbrot.c avfilter/vsrc_mandelbrot: Store format in filter, remove query func 2021-10-05 18:58:24 +02:00
vsrc_mptestsrc.c avfilter/vsrc_mptestsrc: Store format in filter, remove query function 2021-10-05 18:58:24 +02:00
vsrc_sierpinski.c avfilter/vsrc_sierpinski: Store format in filter, remove query func 2021-10-05 18:58:24 +02:00
vsrc_testsrc.c avfilter: add colorspectrum source video filter 2021-11-16 20:41:39 +01: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
vulkan_filter.c lavfi/vulkan: split off lavfi-specific code into vulkan_filter.c 2021-11-19 16:47:26 +01:00
vulkan_filter.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: unify all filters win_func option that use this header 2021-10-15 10:45:50 +02:00
yadif.h Revert "avfilter/yadif: simplify the code for better readability" 2020-08-27 07:30:30 +08:00
yadif_common.c Revert "avfilter/yadif: simplify the code for better readability" 2020-08-27 07:30:30 +08:00