From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 69A9C4AA4D for ; Tue, 7 May 2024 21:10:57 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1857F68D4BB; Wed, 8 May 2024 00:10:55 +0300 (EEST) Received: from sender-op-o18.zoho.eu (sender-op-o18.zoho.eu [136.143.169.18]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 169EF68D469 for ; Wed, 8 May 2024 00:10:49 +0300 (EEST) ARC-Seal: i=1; a=rsa-sha256; t=1715116247; cv=none; d=zohomail.eu; s=zohoarc; b=Sc8Q08ZWJzAzbwZ0NeVbLlDBsgfoqBu7xFayymyZvJcjf9yeMIwDjRj82cgB29jDRjVXOrSGGgB1a8t9kgxPwsLieipQuT2NIfrggykxc6ygd/e2FjYd49X9pWOQEeTqPVuBpMmPXG7ABNL7LZAZnt4B7viU/uG3NeWpeZWZxK4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.eu; s=zohoarc; t=1715116247; h=Content-Type:Content-Transfer-Encoding:Date:Date:From:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:Subject:To:To:Message-Id:Reply-To:Cc; bh=iMUz/SrxZeOt2kJbkUWG5LGcf6svBhgGT56PpaPfUyM=; b=Q0VliMXD/ywKK/mwCiJ5S3oLWx2n9eCE4jfNgzPOD62b18n4kfYABBZYCyyDy7dzj/Blx73QHoFZ2nbJB/NR7gOpqe0jsGceeql1JL4w/cxxXn3V+d38IAAplH9Aspgy1inXgMXBA1VRM22akJxneMzRge037i66mvAgrlLeIAQ= ARC-Authentication-Results: i=1; mx.zohomail.eu; dkim=pass header.i=frankplowman.com; spf=pass smtp.mailfrom=post@frankplowman.com; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1715116247; s=zmail; d=frankplowman.com; i=post@frankplowman.com; h=Message-ID:Date:Date:MIME-Version:Subject:Subject:To:To:References:From:From:In-Reply-To:Content-Type:Content-Transfer-Encoding:Message-Id:Reply-To:Cc; bh=iMUz/SrxZeOt2kJbkUWG5LGcf6svBhgGT56PpaPfUyM=; b=LThGK4pn0tWQd/XF8DrX4tzjkHTfKHviKSg67j/gOxkL/4t2q16oozVAzadWZ+qt Z2c2yz+KenvX8IGWAgEN8N3ra0tBEzbn2a9ZVMq2okr2O8qmUHjCUjwVAe6SYnp1Kcz 0lTw1m4zYlHeBrnBHuqywJ7D9Dh0wP3LmLfQPO/k= Received: by mx.zoho.eu with SMTPS id 1715116245351738.1868058186187; Tue, 7 May 2024 23:10:45 +0200 (CEST) Message-ID: <283bd209-ea78-4a28-9777-e088487dab67@frankplowman.com> Date: Tue, 7 May 2024 22:10:43 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-GB To: ffmpeg-devel@ffmpeg.org References: <20240507210358.6064-1-post@frankplowman.com> From: Frank Plowman In-Reply-To: <20240507210358.6064-1-post@frankplowman.com> X-ZohoMailClient: External Subject: Re: [FFmpeg-devel] [PATCH] lavf/vf_scale: Add framesync dependency to Makefile X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: 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 > --- > 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. -- Frank _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".