diff mbox series

[FFmpeg-devel] lavf/vf_scale: Add framesync dependency to Makefile

Message ID 20240507210358.6064-1-post@frankplowman.com
State New
Headers show
Series [FFmpeg-devel] lavf/vf_scale: Add framesync dependency to Makefile | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Frank Plowman May 7, 2024, 9:04 p.m. UTC
Since e82a3997cdd6c0894869b33ba42430ac3c57fb3b, the scale filter has
depended on FFFrameSync.  Reflect this in the Makefile, fixing compile
errors under some configurations.

Signed-off-by: Frank Plowman <post@frankplowman.com>
---
 libavfilter/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Frank Plowman May 7, 2024, 9:10 p.m. UTC | #1
On 07/05/2024 22:04, Frank Plowman wrote:
> Since e82a3997cdd6c0894869b33ba42430ac3c57fb3b, the scale filter has
> depended on FFFrameSync.  Reflect this in the Makefile, fixing compile
> errors under some configurations.
> 
> Signed-off-by: Frank Plowman <post@frankplowman.com>
> ---
>  libavfilter/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/Makefile b/libavfilter/Makefile
> index 8571e9e2af..5f80900a53 100644
> --- a/libavfilter/Makefile
> +++ b/libavfilter/Makefile
> @@ -455,7 +455,7 @@ OBJS-$(CONFIG_ROBERTS_OPENCL_FILTER)         += vf_convolution_opencl.o opencl.o
>                                                  opencl/convolution.o
>  OBJS-$(CONFIG_ROTATE_FILTER)                 += vf_rotate.o
>  OBJS-$(CONFIG_SAB_FILTER)                    += vf_sab.o
> -OBJS-$(CONFIG_SCALE_FILTER)                  += vf_scale.o scale_eval.o
> +OBJS-$(CONFIG_SCALE_FILTER)                  += vf_scale.o scale_eval.o framesync.o
>  OBJS-$(CONFIG_SCALE_CUDA_FILTER)             += vf_scale_cuda.o scale_eval.o \
>                                                  vf_scale_cuda.ptx.o cuda/load_helper.o
>  OBJS-$(CONFIG_SCALE_NPP_FILTER)              += vf_scale_npp.o scale_eval.o

Duplicate of https://ffmpeg.org/pipermail/ffmpeg-devel/2024-May/326801.html.
diff mbox series

Patch

diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 8571e9e2af..5f80900a53 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -455,7 +455,7 @@  OBJS-$(CONFIG_ROBERTS_OPENCL_FILTER)         += vf_convolution_opencl.o opencl.o
                                                 opencl/convolution.o
 OBJS-$(CONFIG_ROTATE_FILTER)                 += vf_rotate.o
 OBJS-$(CONFIG_SAB_FILTER)                    += vf_sab.o
-OBJS-$(CONFIG_SCALE_FILTER)                  += vf_scale.o scale_eval.o
+OBJS-$(CONFIG_SCALE_FILTER)                  += vf_scale.o scale_eval.o framesync.o
 OBJS-$(CONFIG_SCALE_CUDA_FILTER)             += vf_scale_cuda.o scale_eval.o \
                                                 vf_scale_cuda.ptx.o cuda/load_helper.o
 OBJS-$(CONFIG_SCALE_NPP_FILTER)              += vf_scale_npp.o scale_eval.o