diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-16 19:04:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-18 12:13:34 +0200 |
commit | 48d116400cb321dd045bcf6836d1270b1d2b6f74 (patch) | |
tree | b30fcfe66f2b644674c50cf6c61c041f1b54cb1c /libavfilter/Makefile | |
parent | 7cd5fa35fecc2717223459d04822faed6bbd40fa (diff) | |
download | ffmpeg-48d116400cb321dd045bcf6836d1270b1d2b6f74.tar.gz |
lavfi: add framestep filter
This filter is inspired upon libmpcodecs/vf_framestep.c, by Daniele
Forghieri.
Only-keyframe output is not supported, since that feature can be achieved
through the more versatile select filter.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 5b2ccdbb21..bdeabc2680 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -95,6 +95,7 @@ OBJS-$(CONFIG_FADE_FILTER) += vf_fade.o OBJS-$(CONFIG_FIELDORDER_FILTER) += vf_fieldorder.o OBJS-$(CONFIG_FIFO_FILTER) += fifo.o OBJS-$(CONFIG_FORMAT_FILTER) += vf_format.o +OBJS-$(CONFIG_FRAMESTEP_FILTER) += vf_framestep.o OBJS-$(CONFIG_FPS_FILTER) += vf_fps.o OBJS-$(CONFIG_FREI0R_FILTER) += vf_frei0r.o OBJS-$(CONFIG_GRADFUN_FILTER) += vf_gradfun.o |