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 B714642C34 for ; Wed, 12 Jan 2022 23:18:05 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D236D68AE7A; Thu, 13 Jan 2022 01:17:57 +0200 (EET) Received: from mail.xaymar.com (xaymar.com [95.217.118.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 0DB9C68AD96 for ; Thu, 13 Jan 2022 01:17:51 +0200 (EET) Received: from localhost.localdomain (unknown [IPv6:2a02:8106:c:6a00:ccbc:cf2c:5bb9:d3cf]) by mail.xaymar.com (Postfix) with ESMTPSA id 15FDE6132E; Thu, 13 Jan 2022 00:17:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=xaymar.com; s=2021; t=1642029470; bh=+8BewyxLhZubik3LUzfPUtTES8Eal7WYVHgJA2tfjiM=; h=From:To:Cc:Subject:Date:From; b=DothbqSt8Pz4UO6I2+E8gXYT/bKGCXx4jyq6Lfy/DS2iWRf2w5gfJLWVOyb+SkKT0 rvbjGjYD/BwPJcuSL6i+pUP0UJoSoXO9758QL72uhr91/+r3DGUi2dWnvuUxAM+zht rmJz8zId5DYkrHLPatM0yM8it0bLx5HSEvXNqkD+Lcn6QXclGoMtdHfbMMVeBpBVTj FP6dd2X93rRmNcbtEQMUoLBWN23b4s3HTnAsWvnwFA2LnABk0CWRIpo6na7o35EzNx 7MLgnuXGo54+TpjvYMLlM5P5ZcCnbnUBs5M0Vy4MeTLe/NWu6OEyUxuTz0H2QxkFjq kWZG3XP0N+JPMyCl5bf57FjdPpzXG3nWEjgEznAQVA6sJA2I5PPXBZXNTDN3B5EXxI XUVD5g+MF3W8AHelVxMefXwEtivM/FMvvqOVzN82Fp4Jvqpwuf8WKWHUZr7l4eJgSE S78HIa2rQrtGaRDJXT1CsnslT6zcJlNfw3IhYPB5Ke5RMbhDom7jrT0AtO5Uwgf4os nDp8rhQRC1tP2fVmxEvLJDXP+vEIgTZMqO+rcZ5ofhi5tbj6axBYLsde6jwLs6K5BH 3+2VHeXVQ+2+EuVsLQSd6uLdP+Bqq5GNYhGxJxa+S8g1apG2l1gVdv02jSjUPWbYQo FopYojpsHrV1qpTOR/64= From: Michael Fabian 'Xaymar' Dirks To: ffmpeg-devel@ffmpeg.org Date: Thu, 13 Jan 2022 00:17:20 +0100 Message-Id: X-Mailer: git-send-email 2.34.1.windows.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/5] avcodec: Require AMF SDK v1.4.23 or newer 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: Michael Fabian 'Xaymar' Dirks 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: Michael Fabian 'Xaymar' Dirks Increasing the minimum AMF SDK version allows us to support more recent hardware and drivers, which is necessary to fix some of the discrepancies between older and newer drivers on AMD hardware with FFmpeg. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 1413122d87..515ec1a50f 100755 --- a/configure +++ b/configure @@ -6969,7 +6969,7 @@ fi enabled amf && check_cpp_condition amf "AMF/core/Version.h" \ - "(AMF_VERSION_MAJOR << 48 | AMF_VERSION_MINOR << 32 | AMF_VERSION_RELEASE << 16 | AMF_VERSION_BUILD_NUM) >= 0x0001000400090000" + "AMF_FULL_VERSION >= AMF_MAKE_FULL_VERSION(1, 4, 23, 0)" # Funny iconv installations are not unusual, so check it after all flags have been set if enabled libc_iconv; then -- 2.34.1.windows.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-request@ffmpeg.org with subject "unsubscribe".