librempeg/libavfilter
Andreas Rheinhardt 2ee4077248 avfilter/vf_morpho: Fix invalid frees on error
The current code used a pointer to an array (of arrays) that
is offset relative to the start of the actually allocated buffer.
Yet offsetting the pointer is only done on success, whereas the
freeing code believes it to have happened even on error.
So if any of the subarrays (or the subarrays' subarrays) can't
be successfully allocated, one gets a bad free in free_lut().

Furthermore, said offsetting is only permissible in case the
offsetted pointer points in the allocated buffer (here: in case
the LUT's min_r is <= 0), as pointer arithmetic is undefined
in case it exceeds the allocated object.

Moreover, in case one of the subarrays couldn't be allocated,
the code nevertheless tried to free the subarray's subarrays;
and in case one of the subarray's subarrays could not be allocated
successfully, there will be an invalid free, too, because the
pointers for the subarrays' subarrays are also offset compared
to the base pointer.

This commit fixes all of this, by using the actually allocated
pointer for freeing and by adding appropriate checks before
freeing the subarrays. The former also allows to distinguish
the cases in which the lut is currently only half-allocated due to
an error in an earlier allocation attempt from the success case.

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2021-10-04 17:27:50 +02:00
..
aarch64
cuda
dnn Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
opencl
tests Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
x86 avfilter/x86/vf_blend: unify indentation format 2021-10-03 09:15:55 +02:00
.gitignore
aeval.c avfilter/aeval: fix forgotten EOF case for activate 2021-08-26 19:23:03 +02:00
af_acontrast.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_acopy.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_acrossover.c avfilter/af_acrossover: check for rest of sample formats 2021-08-29 10:29:15 +02:00
af_acrusher.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_adeclick.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_adecorrelate.c avfilter: add adecorrelate filter 2021-08-28 18:46:39 +02:00
af_adelay.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_adenorm.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_aderivative.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_aecho.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_aemphasis.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_aexciter.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_afade.c avfilter/af_afade: Remove impossible branch 2021-10-02 16:29:11 +02:00
af_afftdn.c avfilter/af_afftdn: switch to internal timeline 2021-10-03 13:06:44 +02:00
af_afftfilt.c avfilter/af_afftfilt: reindent after last commit 2021-09-12 13:28:12 +02:00
af_afir.c avfilter/af_afir: Free inpads' names generically 2021-08-22 16:13:34 +02:00
af_afir.h
af_aformat.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_afreqshift.c avfilter/af_afreqshift: do not forget to update coeffs at runtime 2021-08-28 18:52:08 +02:00
af_afwtdn.c avfilter/af_afwtdn: add internal timeline support 2021-10-03 13:06:57 +02:00
af_agate.c avfilter/af_agate: switch to internal timeline 2021-10-03 13:06:54 +02:00
af_aiir.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_alimiter.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_amerge.c avfilter/af_amerge: Remove always-false samplerate check 2021-09-21 17:56:25 +02:00
af_amix.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
af_amultiply.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_anequalizer.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_anlmdn.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_anlmdndsp.h
af_anlms.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_anull.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_apad.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_aphaser.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_apsyclip.c avfilter/af_apsyclip: fix mixed declarations and code 2021-09-11 21:47:49 +02:00
af_apulsator.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_aresample.c avfilter/af_aresample: Use preinit instead of init_dict 2021-09-19 04:44:27 +02:00
af_arnndn.c avfilter/af_arnndn: initialize ret to silence compiler warning 2021-09-11 22:19:25 +02: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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_ashowinfo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_asoftclip.c avfilter/af_asoftclip: rewrite oversampling 2021-09-12 12:55:50 +02:00
af_asr.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_astats.c avfilter/af_astats: add entropy stat 2021-09-11 10:54:20 +02:00
af_asubboost.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_asupercut.c avfilter/af_asupercut: Deduplicate AVClasses 2021-09-19 04:04:00 +02:00
af_atempo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_atilt.c avfilter: add atilt filter 2021-08-28 18:51:04 +02:00
af_axcorrelate.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_biquads.c avfilter/af_biquads: Deduplicate AVClasses 2021-09-19 04:04:12 +02:00
af_bs2b.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_channelmap.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
af_channelsplit.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_chorus.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_compand.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
af_compensationdelay.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_crossfeed.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_crystalizer.c avfilter/af_crystalizer: refactor some code 2021-08-29 00:09:29 +02:00
af_dcshift.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_deesser.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_drmeter.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_dynaudnorm.c avfilter/af_dynaudnorm: improve EOF timestamp precision 2021-09-12 23:47:32 +02:00
af_earwax.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_extrastereo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_firequalizer.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_flanger.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_haas.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_hdcd.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_headphone.c avfilter/af_headphone: Free inpads' names generically 2021-08-22 16:13:44 +02:00
af_join.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
af_ladspa.c avfilter/af_ladspa: Free inpad's name generically 2021-08-22 16:13:50 +02:00
af_loudnorm.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_lv2.c avfilter/af_lv2: Free inpad's name generically 2021-08-22 16:13:53 +02:00
af_mcompand.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_pan.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_replaygain.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_rubberband.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_sidechaincompress.c avfilter/af_sidechaincompress: Remove always-false samplerate check 2021-09-21 17:56:30 +02:00
af_silencedetect.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
af_silenceremove.c avfilter/af_silenceremove: improve trimming middle silence 2021-09-23 23:34:45 +02:00
af_sofalizer.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_speechnorm.c avfilter/af_speechnorm: improve EOF timestamp precision 2021-09-12 23:47:32 +02:00
af_stereotools.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_stereowiden.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_superequalizer.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_surround.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_tremolo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_vibrato.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_volume.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
af_volume.h
af_volumedetect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
allfilters.c avfilter: add (a)latency filters 2021-10-02 18:49:40 +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_afirsrc.c avfilter/asrc_afirsrc: switch to activate 2021-08-21 16:27:27 +02:00
asrc_anoisesrc.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
asrc_anullsrc.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
asrc_flite.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
asrc_hilbert.c avfilter/asrc_hilbert: switch to activate 2021-08-21 16:31:40 +02:00
asrc_sinc.c avfilter/asrc_sinc: switch to activate 2021-08-21 16:27:27 +02:00
asrc_sine.c lavfi/sine: switch to activate 2021-08-21 16:11:11 +02:00
atadenoise.h
audio.c
audio.h avfilter/audio, video: Remove references to avfilter_unref_buffer() 2021-09-27 06:10:57 +02:00
avf_abitscope.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_ahistogram.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_aphasemeter.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_avectorscope.c avfilter/avf_avectorscope: fix zoom 0 mode with nonlinear scale 2021-09-19 13:49:55 +02:00
avf_concat.c avfilter/avf_concat: Free pads' names generically 2021-08-22 16:13:56 +02:00
avf_showcqt.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_showcqt.h
avf_showfreqs.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_showspatial.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_showspectrum.c avfilter/avf_showspectrum: rewrite frequency log axis/bin scaling 2021-09-20 11:14:53 +02:00
avf_showvolume.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
avf_showwaves.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
avfilter.c avfilter/avfilter: Make ff_tlog_ref() static 2021-10-03 22:54:54 +02:00
avfilter.h avfilter/avfilter: Deprecate avfilter_pad_count() 2021-08-20 14:29:46 +02:00
avfiltergraph.c avfilter/avfiltergraph: Remove always-true check 2021-10-02 16:20:21 +02:00
avfilterres.rc
bbox.c
bbox.h
blend_modes.c avfilter/vf_blend: add few more modes 2021-09-30 01:22:48 +02:00
blend.h avfilter/vf_blend: add few more modes 2021-09-30 01:22:48 +02:00
boxblur.c
boxblur.h
bufferqueue.h
buffersink.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
buffersink.h
buffersrc.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
buffersrc.h
bwdif.h
colorspace.c
colorspace.h
colorspacedsp_template.c
colorspacedsp_yuv2yuv_template.c
colorspacedsp.c
colorspacedsp.h
convolution.h
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
drawutils.h
ebur128.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
ebur128.h
f_bench.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
f_cue.c avfilter/f_cue: Deduplicate AVClasses 2021-09-19 04:07:48 +02:00
f_drawgraph.c avfilter/f_drawgraph: Deduplicate AVClasses 2021-09-19 04:08:10 +02:00
f_ebur128.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
f_graphmonitor.c avfilter/f_graphmonitor: Deduplicate AVClasses 2021-09-19 04:08:18 +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 (a)latency filters 2021-10-02 18:49:40 +02: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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
f_perms.c avfilter/f_perms: Deduplicate AVClasses 2021-09-19 04:09:06 +02:00
f_realtime.c avfilter/f_realtime: Deduplicate AVClasses 2021-09-19 04:24:00 +02:00
f_reverse.c avfilter/f_reverse: add missing S64(P) sample format support 2021-10-02 18:49:40 +02:00
f_segment.c avfilter/f_segment: silence compiler warning 2021-09-11 22:19:25 +02:00
f_select.c avfilter/f_select: Free outpads' names generically 2021-08-22 16:14:07 +02:00
f_sendcmd.c avfilter/f_sendcmd: Deduplicate AVClasses 2021-09-19 04:24:07 +02:00
f_sidedata.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
f_streamselect.c avfilter/f_streamselect: Deduplicate AVClasses 2021-09-19 04:24:55 +02:00
f_zmq.c avfilter/f_zmq: Deduplicate AVClasses 2021-09-19 04:26:00 +02:00
fifo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
filters.h
formats.c avfilter/formats: Update outdated comment 2021-10-02 16:29:11 +02:00
formats.h avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
framepool.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
framepool.h
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
glslang.cpp
glslang.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
hermite.h
hflip.h
internal.h avfilter/avfilter: Make ff_tlog_ref() static 2021-10-03 22:54:54 +02:00
lavfutils.c
lavfutils.h
libavfilter.v
limiter.h
log2_tab.c
lswsutils.c
lswsutils.h
Makefile avfilter: add (a)latency filters 2021-10-02 18:49:40 +02:00
maskedclamp.h
maskedmerge.h
median_template.c
median.h
motion_estimation.c
motion_estimation.h
opencl_source.h
opencl.c
opencl.h
phase_template.c
preserve_color.h avfilter/preserve_color: Add necessary headers 2021-09-27 10:17:53 +02:00
psnr.h
pthread.c
qp_table.c
qp_table.h
qsvvpp.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
qsvvpp.h
removegrain.h
scale_eval.c
scale_eval.h
scene_sad.c
scene_sad.h
setpts.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
settb.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
signature_lookup.c avfilter/signature: fix integer rounding cast precedence 2021-08-28 13:30:02 +05:30
signature.h
split.c avfilter/split: Deduplicate AVClasses 2021-09-19 04:26:07 +02:00
src_movie.c avfilter/src_movie: Deduplicate AVClasses 2021-09-19 04:26:16 +02:00
ssim.h
stereo3d.h
thread.h
threshold.h
tinterlace.h
transform.c
transform.h
transpose.h
trim.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
unsharp.h
v360.h
vaapi_vpp.c
vaapi_vpp.h
vaf_spectrumsynth.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
version.h avfilter: add (a)latency filters 2021-10-02 18:49:40 +02:00
vf_addroi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_alphamerge.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_amplify.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_aspect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_atadenoise.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_avgblur_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_avgblur_vulkan.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_avgblur.c avfilter/vf_avgblur: switch to faster algorithm 2021-09-30 01:22:57 +02:00
vf_bbox.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_bilateral.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_bitplanenoise.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_blackdetect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_blackframe.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_blend.c avfilter/vf_blend: add few more modes 2021-09-30 01:22:48 +02:00
vf_bm3d.c avfilter/vf_bm3d: Remove always-false format check 2021-09-21 17:56:37 +02:00
vf_boxblur.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_bwdif.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_cas.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_chromaber_vulkan.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_chromakey.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_chromanr.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_chromashift.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_ciescope.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_codecview.c avfilter/vf_codecview: added new options for block 2021-10-01 07:49:00 +08:00
vf_colorbalance.c avfilter/vf_colorbalance: fix min/max check that can never be true 2021-09-26 11:20:45 +02:00
vf_colorchannelmixer.c avfilter/vf_colorchannelmixer: add extended preserve color support 2021-09-26 20:27:24 +02:00
vf_colorconstancy.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_colorcontrast.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_colorcorrect.c avfilter/vf_colorcorrect: add median analyze mode 2021-08-27 10:04:04 +02:00
vf_colorize.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_colorkey_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_colorkey.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_colorlevels.c avfilter/vf_colorlevels: add preserve color option 2021-09-26 20:27:23 +02:00
vf_colormatrix.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_colorspace.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_colortemperature.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_convolution_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_convolution.c avfilter/vf_convolution: Deduplicate AVClasses 2021-09-19 04:01:37 +02:00
vf_convolve.c avfilter/vf_convolve: Deduplicate framesync auxiliary functions 2021-09-23 21:12:58 +02:00
vf_copy.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_coreimage.m Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_cover_rect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_crop.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_cropdetect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_curves.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_datascope.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_dblur.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_dctdnoiz.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_deband.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_deblock.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_decimate.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_dedot.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_deflicker.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_deinterlace_qsv.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_deinterlace_vaapi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_derain.c libavfilter: Unify Execution Modes in DNN Filters 2021-08-28 16:19:07 +08:00
vf_deshake_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_deshake.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_despill.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_detelecine.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_displace.c avfilter/vf_displace: Remove always-false format check 2021-09-21 17:56:43 +02:00
vf_dnn_classify.c libavfilter: Unify Execution Modes in DNN Filters 2021-08-28 16:19:07 +08:00
vf_dnn_detect.c libavfilter: Remove synchronous functions from DNN filters 2021-08-28 16:19:07 +08:00
vf_dnn_processing.c libavfilter: Remove synchronous functions from DNN filters 2021-08-28 16:19:07 +08:00
vf_drawbox.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_drawtext.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_edgedetect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_elbg.c avfilter/elbg: Extend filter to include alpha values in the quantization procedure 2021-09-26 17:34:08 +02:00
vf_entropy.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_epx.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_eq.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_eq.h
vf_estdif.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_exposure.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_extractplanes.c avfilter/vf_extractplanes: fix regression 2021-09-12 17:06:21 +02:00
vf_fade.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_fftdnoiz.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_fftfilt.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +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/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_fieldmatch.c avfilter/vf_fieldmatch: initialize dst pointer to silence warning 2021-09-11 22:19:25 +02:00
vf_fieldorder.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_fillborders.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_find_rect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_floodfill.c avfilter/vf_floodfill: constify the AVFrame parameter in is_same() and pick_pixel() functions 2021-09-29 11:46:20 -03:00
vf_format.c avfilter/vf_format: Deduplicate AVClasses 2021-09-19 04:28:03 +02:00
vf_fps.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_framepack.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_framerate.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_framestep.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_freezedetect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +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/frei0r: use win32dlfcn wrapper 2021-09-15 12:37:02 +02:00
vf_fspp.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_fspp.h
vf_gblur.c libavfilter/x86/vf_gblur: add localbuf and ff_horiz_slice_avx2/512() 2021-08-29 19:58:33 +02:00
vf_geq.c avfilter/vf_geq: Simplify creating string 2021-09-21 17:57:35 +02:00
vf_gradfun.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_grayworld.c avfilter: add grayworld video filter 2021-08-29 13:31:37 +02:00
vf_guided.c avfilter/vf_guided: Fix indention 2021-09-29 18:00:13 +08:00
vf_hflip.c avfilter/vf_hflip: Don't call av_pix_fmt_desc_get() twice 2021-09-19 05:18:51 +02:00
vf_histeq.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_histogram.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hqdn3d.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hqdn3d.h
vf_hqx.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hsvkey.c avfilter: add hsvkey and hsvhold video filters 2021-08-25 20:43:18 +02:00
vf_hue.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hwdownload.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_hwmap.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hwupload_cuda.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hwupload.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_hysteresis.c avfilter/vf_hysteresis: Remove always-false format check 2021-09-21 17:56:49 +02:00
vf_identity.c avfilter/vf_identity: Remove always-false format check 2021-09-21 17:56:52 +02:00
vf_idet.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_idet.h
vf_il.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_kerndeint.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_lagfun.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_lenscorrection.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_lensfun.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_libopencv.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_libvmaf.c avfilter/vf_libvmaf: Remove always-false format check 2021-09-21 17:56:55 +02:00
vf_limiter.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_lumakey.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_lut2.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_lut3d.c avfilter/vf_lut3d: Deduplicate options 2021-09-23 21:12:58 +02:00
vf_lut.c avfilter/vf_lut: Remove empty init function 2021-09-19 04:31:03 +02:00
vf_maskedclamp.c avfilter/vf_maskedclamp: Remove always-false format check 2021-09-21 17:56:58 +02:00
vf_maskedmerge.c avfilter/vf_maskedmerge: Remove always-false format check 2021-09-21 17:57:02 +02:00
vf_maskedminmax.c avfilter/vf_maskedminmax: Remove always-false format check 2021-09-21 17:57:05 +02:00
vf_maskedthreshold.c avfilter/vf_maskedthreshold: Remove always-false format check 2021-09-21 17:57:09 +02:00
vf_maskfun.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_mcdeint.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_median.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_mergeplanes.c avfilter/vf_mergeplanes: Free inpads' names generically 2021-08-22 16:15:36 +02:00
vf_mestimate.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_midequalizer.c avfilter/vf_midequalizer: Remove always-false format check 2021-09-21 17:57:14 +02:00
vf_minterpolate.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_misc_vaapi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_mix.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_monochrome.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_morpho.c avfilter/vf_morpho: Fix invalid frees on error 2021-10-04 17:27:50 +02:00
vf_mpdecimate.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_neighbor_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_neighbor.c avfilter/vf_neighbor: Deduplicate AVClasses 2021-09-19 04:32:05 +02:00
vf_nlmeans_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_nlmeans.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_nlmeans.h
vf_nnedi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_noise.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_noise.h
vf_normalize.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_null.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_ocr.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_overlay_cuda.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_overlay_cuda.cu
vf_overlay_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_overlay_qsv.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_overlay_vulkan.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_overlay.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_overlay.h
vf_owdenoise.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_pad_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_pad.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_palettegen.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_paletteuse.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_perspective.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_phase.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_photosensitivity.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +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_pp7.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_pp7.h
vf_pp.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_premultiply.c avfilter/vf_premultiply: Remove always-false format check 2021-09-21 17:57:17 +02:00
vf_procamp_vaapi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_program_opencl.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_pseudocolor.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_psnr.c avfilter/vf_psnr: Remove always-false format check 2021-09-21 17:57:20 +02:00
vf_pullup.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_pullup.h
vf_qp.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02: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/vf_readeia608: Use av_dict_set_int() 2021-09-19 04:39:25 +02:00
vf_readvitc.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_remap.c avfilter/vf_remap: remove timeline support 2021-09-28 00:38:35 +02:00
vf_removegrain.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_removelogo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_repeatfields.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_rotate.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_sab.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_scale_cuda.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_scale_cuda.cu
vf_scale_cuda.h
vf_scale_npp.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_scale_qsv.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_scale_vaapi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_scale_vulkan.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_scale.c avfilter/vf_scale: Deduplicate AVClasses 2021-09-19 04:38:02 +02:00
vf_scdet.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_scroll.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_selectivecolor.c avfilter/vf_selectivecolor: reduce number of operations with r/g/b/a pointers 2021-09-26 10:17:17 +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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_shear.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_showinfo.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_showpalette.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_shuffleplanes.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_signalstats.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_signature.c avfilter/vf_signature: Free inpads' names generically 2021-08-22 16:15:44 +02:00
vf_smartblur.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_spp.c avfilter/vf_spp: Add dummy element to array to avoid shift 2021-09-19 04:47:17 +02:00
vf_spp.h
vf_sr.c libavfilter: Unify Execution Modes in DNN Filters 2021-08-28 16:19:07 +08:00
vf_ssim.c avfilter/vf_ssim: Remove always-false format check 2021-09-21 17:57:23 +02:00
vf_stack.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_stereo3d.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_subtitles.c avfilter/vf_subtitles, fftools/ffmpeg: Don't set sub_text_format 2021-09-20 00:27:47 +02:00
vf_super2xsai.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_swaprect.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_swapuv.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_telecine.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_threshold.c avfilter/vf_threshold: Remove always-false format check 2021-09-21 17:57:27 +02:00
vf_thumbnail_cuda.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_thumbnail_cuda.cu
vf_thumbnail.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tile.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tinterlace.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tmidequalizer.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tonemap_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tonemap_vaapi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tonemap.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_tpad.c avfilter/vf_tpad: rescale EOF pts for case outlink time_base differs 2021-08-29 01:47:23 +02:00
vf_transpose_npp.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_transpose_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_transpose_vaapi.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_transpose.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_unsharp_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_unsharp.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_untile.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_uspp.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_v360.c avfilter/vf_v360: refactor uf/vf scaling 2021-09-24 22:30:37 +02:00
vf_vaguedenoiser.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vectorscope.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +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/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vibrance.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vidstabdetect.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vidstabtransform.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vif.c avfilter/vf_vif: Remove always-false format check 2021-09-21 17:57:30 +02:00
vf_vignette.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vmafmotion.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_vpp_qsv.c libavfilter/vf_vpp_qsv: fix uninitialized variable problem 2021-09-15 09:24:08 -03:00
vf_w3fdif.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_waveform.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_weave.c avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* 2021-09-26 12:41:33 +02:00
vf_xbr.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_xfade_opencl.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_xfade.c avfilter/vf_xfade: Remove always-false format check 2021-09-21 17:57:32 +02:00
vf_xmedian.c avfilter/vf_xmedian: Split portion of init unique to xmedian off 2021-09-04 15:24:59 +02:00
vf_yadif_cuda.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_yadif_cuda.cu
vf_yadif.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_yaepblur.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vf_zoompan.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vf_zscale.c avfilter/vf_zscale: Use init instead of init_dict 2021-09-19 04:48:58 +02:00
video.c
video.h avfilter/audio, video: Remove references to avfilter_unref_buffer() 2021-09-27 06:10:57 +02:00
vidstabutils.c
vidstabutils.h
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 Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vsrc_gradients.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vsrc_life.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vsrc_mandelbrot.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vsrc_mptestsrc.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vsrc_sierpinski.c avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter 2021-08-20 12:53:58 +02:00
vsrc_testsrc.c avfilter/vsrc_testsrc: Deduplicate AVClasses 2021-09-19 04:37:22 +02:00
vulkan.c
vulkan.h
w3fdif.h
window_func.h
yadif_common.c
yadif.h