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 6390B48B5A for ; Fri, 3 May 2024 20:08:06 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5B9EE68D70C; Fri, 3 May 2024 23:08:03 +0300 (EEST) Received: from haasn.dev (haasn.dev [78.46.187.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id AFA8C68D6F2 for ; Fri, 3 May 2024 23:07:55 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=haasn.xyz; s=mail; t=1714766874; bh=g+A4VmTX5xtT3e8Id5TxU5yTYsAZpeSopD15j0iSZ48=; h=From:To:Cc:Subject:Date:From; b=OQ+GZ51LHxC7f/Asyfxj52ExhwbfbH9bGP31/3jHaocV3j/Em/2VnSfsVnz9gcz7X G6Cx3WoN6F6XRG/jR7sDmLRH75i5Yfn6L9zlUWCI1W+JQNkfzJv6mIr7iuUDQbffiK o2wWoW5J3584+6dqes598nShTMcd58u4K5unrhHI= Received: from haasn.dev (unknown [10.30.0.2]) by haasn.dev (Postfix) with ESMTP id DB9B7434E9; Fri, 3 May 2024 22:07:54 +0200 (CEST) From: Niklas Haas To: ffmpeg-devel@ffmpeg.org Date: Fri, 3 May 2024 22:07:51 +0200 Message-ID: <20240503200751.8378-1-ffmpeg@haasn.xyz> X-Mailer: git-send-email 2.44.0 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] avfilter/vf_scale: add missing filter flag 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 Cc: Niklas Haas 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: From: Niklas Haas Fixes: bb8044581366fe286e16b14515d873979133dbda --- libavfilter/vf_scale.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index bc53571c1c..696ee272ec 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -1261,6 +1261,7 @@ const AVFilter ff_vf_scale = { FILTER_QUERY_FUNC(query_formats), .activate = activate, .process_command = process_command, + .flags = AVFILTER_FLAG_DYNAMIC_INPUTS, }; static const AVFilterPad avfilter_vf_scale2ref_inputs[] = { -- 2.44.0 _______________________________________________ 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".