Re: [FFmpeg-devel] [PATCH 57/87] avfilter/Makefile: Don't compile transform.c unconditionally

2021-04-19 Thread Nicolas George
James Almer (12021-04-19):
> From: Andreas Rheinhardt 
> 
> Signed-off-by: Andreas Rheinhardt 
> ---
>  libavfilter/Makefile | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)

Should be ok.

Regards,

-- 
  Nicolas George


signature.asc
Description: PGP signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-devel] [PATCH 57/87] avfilter/Makefile: Don't compile transform.c unconditionally

2021-04-19 Thread James Almer
From: Andreas Rheinhardt 

Signed-off-by: Andreas Rheinhardt 
---
 libavfilter/Makefile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index b77f2276a4..42efa14a67 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -19,7 +19,6 @@ OBJS = allfilters.o   
  \
framequeue.o \
graphdump.o  \
graphparser.o\
-   transform.o  \
video.o  \
 
 OBJS-$(HAVE_THREADS) += pthread.o
@@ -237,8 +236,8 @@ OBJS-$(CONFIG_DEJUDDER_FILTER)   += 
vf_dejudder.o
 OBJS-$(CONFIG_DELOGO_FILTER) += vf_delogo.o
 OBJS-$(CONFIG_DENOISE_VAAPI_FILTER)  += vf_misc_vaapi.o vaapi_vpp.o
 OBJS-$(CONFIG_DESHAKE_OPENCL_FILTER)+= vf_deshake_opencl.o opencl.o \
-opencl/deshake.o
-OBJS-$(CONFIG_DESHAKE_FILTER)+= vf_deshake.o
+opencl/deshake.o transform.o
+OBJS-$(CONFIG_DESHAKE_FILTER)+= vf_deshake.o transform.o
 OBJS-$(CONFIG_DESPILL_FILTER)+= vf_despill.o
 OBJS-$(CONFIG_DETELECINE_FILTER) += vf_detelecine.o
 OBJS-$(CONFIG_DILATION_FILTER)   += vf_neighbor.o
-- 
2.31.1

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".