diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2019-11-19 12:07:03 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2019-11-19 12:07:03 +0530 |
commit | 2ff444bd3ade79e63859f0d5ea53d6274edbf223 (patch) | |
tree | a6a439ce336203ec04309ec7a5c0d94649f41b2c /libavfilter/Makefile | |
parent | 4e2bef6a82b356772a5919c51c9be1530268bd79 (diff) | |
download | ffmpeg-2ff444bd3ade79e63859f0d5ea53d6274edbf223.tar.gz |
avfilter/Makefile: add missing dependency for scale_cuda
scale_cuda includes scale.h
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index fce930360d..6838d5c986 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -359,7 +359,7 @@ OBJS-$(CONFIG_ROBERTS_OPENCL_FILTER) += vf_convolution_opencl.o opencl.o OBJS-$(CONFIG_ROTATE_FILTER) += vf_rotate.o OBJS-$(CONFIG_SAB_FILTER) += vf_sab.o OBJS-$(CONFIG_SCALE_FILTER) += vf_scale.o scale.o -OBJS-$(CONFIG_SCALE_CUDA_FILTER) += vf_scale_cuda.o vf_scale_cuda.ptx.o +OBJS-$(CONFIG_SCALE_CUDA_FILTER) += vf_scale_cuda.o vf_scale_cuda.ptx.o scale.o OBJS-$(CONFIG_SCALE_NPP_FILTER) += vf_scale_npp.o scale.o OBJS-$(CONFIG_SCALE_QSV_FILTER) += vf_scale_qsv.o OBJS-$(CONFIG_SCALE_VAAPI_FILTER) += vf_scale_vaapi.o scale.o vaapi_vpp.o |