[FFmpeg-devel] [PATCH] avfilter/Makefile: add missing dependency for scale_cuda
Gyan
ffmpeg at gyani.pro
Sat Nov 16 17:23:30 EET 2019
Was missing since initial commit.
Gyan
-------------- next part --------------
From 470dfb6bcbe3ff1341a3aca77ebc92b5c7acbdbe Mon Sep 17 00:00:00 2001
From: Gyan Doshi <ffmpeg at gyani.pro>
Date: Sat, 16 Nov 2019 20:48:10 +0530
Subject: [PATCH] avfilter/Makefile: add missing dependency for scale_cuda
scale_cuda includes scale.h
---
libavfilter/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
--
2.24.0
More information about the ffmpeg-devel
mailing list