diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-07-09 18:13:10 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-07-14 00:00:31 +0200 |
commit | 6b61920ab76dc6d85ef462909951923935dd643f (patch) | |
tree | b936120e4ebfbf43c0010a45dcb52768bef84dc0 /libavfilter/Makefile | |
parent | bb258fb995a42112d1fe14f53ec599b2cd19b707 (diff) | |
download | ffmpeg-6b61920ab76dc6d85ef462909951923935dd643f.tar.gz |
lavfi: port boxblur filter from libmpcodecs
With the following additions:
* support to gray format
* support to yuva420p format
* parametric luma/chroma/alpha radius
* consistency check on the radius values, avoid crashes with invalid values
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 a8233fd764..e29fe5eabd 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -25,6 +25,7 @@ OBJS-$(CONFIG_ANULLSRC_FILTER) += asrc_anullsrc.o OBJS-$(CONFIG_ANULLSINK_FILTER) += asink_anullsink.o OBJS-$(CONFIG_BLACKFRAME_FILTER) += vf_blackframe.o +OBJS-$(CONFIG_BOXBLUR_FILTER) += vf_boxblur.o OBJS-$(CONFIG_COPY_FILTER) += vf_copy.o OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o OBJS-$(CONFIG_CROPDETECT_FILTER) += vf_cropdetect.o |