diff options
author | Aman Gupta <aman@tmm1.net> | 2017-02-01 16:30:18 -0800 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-02-02 22:58:54 +0000 |
commit | 037bb4021c0b0b33c752850f58cf7e2ea44359b7 (patch) | |
tree | d92a56bd24ab29e5019cb1f71f4ef6caf4f204ca /libavfilter/Makefile | |
parent | c8467abbadab424757ea23f71a1036abfb7f14b4 (diff) | |
download | ffmpeg-037bb4021c0b0b33c752850f58cf7e2ea44359b7.tar.gz |
avfilter/scale: refactor common code for scaling height/width expressions
Implements support for height/width expressions in vf_scale_vaapi,
by refactoring common code into a new libavfilter/scale.c
Signed-off-by: Mark Thompson <sw@jkqxz.net>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 68a94be4a6..3231f08a8d 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -257,10 +257,10 @@ OBJS-$(CONFIG_REPEATFIELDS_FILTER) += vf_repeatfields.o OBJS-$(CONFIG_REVERSE_FILTER) += f_reverse.o OBJS-$(CONFIG_ROTATE_FILTER) += vf_rotate.o OBJS-$(CONFIG_SAB_FILTER) += vf_sab.o -OBJS-$(CONFIG_SCALE_FILTER) += vf_scale.o -OBJS-$(CONFIG_SCALE_NPP_FILTER) += vf_scale_npp.o -OBJS-$(CONFIG_SCALE_VAAPI_FILTER) += vf_scale_vaapi.o -OBJS-$(CONFIG_SCALE2REF_FILTER) += vf_scale.o +OBJS-$(CONFIG_SCALE_FILTER) += vf_scale.o scale.o +OBJS-$(CONFIG_SCALE_NPP_FILTER) += vf_scale_npp.o scale.o +OBJS-$(CONFIG_SCALE_VAAPI_FILTER) += vf_scale_vaapi.o scale.o +OBJS-$(CONFIG_SCALE2REF_FILTER) += vf_scale.o scale.o OBJS-$(CONFIG_SELECT_FILTER) += f_select.o OBJS-$(CONFIG_SELECTIVECOLOR_FILTER) += vf_selectivecolor.o OBJS-$(CONFIG_SENDCMD_FILTER) += f_sendcmd.o |