diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-11 00:53:10 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-14 15:59:37 +0200 |
commit | 7a92ec93c6507bd3dea4563ec7a0e3679034fc57 (patch) | |
tree | 7009111e6e7afd3fdf77013dfd235ca443a3df14 /libavfilter/allfilters.c | |
parent | ab0ad6eccf38cc90a80c681a9c51c81b728b4b30 (diff) | |
download | ffmpeg-7a92ec93c6507bd3dea4563ec7a0e3679034fc57.tar.gz |
lavfi: port IVTC filters from vapoursynth.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index bba036c268..95bd27088a 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -107,6 +107,7 @@ void avfilter_register_all(void) REGISTER_FILTER(CROP, crop, vf); REGISTER_FILTER(CROPDETECT, cropdetect, vf); REGISTER_FILTER(CURVES, curves, vf); + REGISTER_FILTER(DECIMATE, decimate, vf); REGISTER_FILTER(DELOGO, delogo, vf); REGISTER_FILTER(DESHAKE, deshake, vf); REGISTER_FILTER(DRAWBOX, drawbox, vf); @@ -114,6 +115,7 @@ void avfilter_register_all(void) REGISTER_FILTER(EDGEDETECT, edgedetect, vf); REGISTER_FILTER(FADE, fade, vf); REGISTER_FILTER(FIELD, field, vf); + REGISTER_FILTER(FIELDMATCH, fieldmatch, vf); REGISTER_FILTER(FIELDORDER, fieldorder, vf); REGISTER_FILTER(FORMAT, format, vf); REGISTER_FILTER(FPS, fps, vf); |