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 46F8742C3E for ; Wed, 12 Jan 2022 22:49:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 92A9568A744; Thu, 13 Jan 2022 00:49:50 +0200 (EET) Received: from mail.xaymar.com (xaymar.com [95.217.118.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 1BDD26899A7 for ; Thu, 13 Jan 2022 00:49:44 +0200 (EET) Received: from localhost.localdomain (unknown [IPv6:2a02:8106:c:6a00:ccbc:cf2c:5bb9:d3cf]) by mail.xaymar.com (Postfix) with ESMTPSA id 50F7C6133E; Wed, 12 Jan 2022 23:49:43 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=xaymar.com; s=2021; t=1642027783; bh=es+dcS19tb957fiODIdmb+URFxFBmNcWR3wdF8ZSWuI=; h=From:To:Cc:Subject:Date:From; b=EXQ6CzUVrcdtZQPuEBqW/scSnaMS+nPLmGSZGpYCbm6Y5Lrx6GxyE3p2bbwlsJHh1 Ef3tPpDixuKFVE04mN2vsgRIOFLGW3D/gFUqH2aSgzPYMONwZc/dJPNCvxceilZkA4 2iS+HvZO/Ac89hLAZqcU/PIU+spSOfE/NqJP9gUSnoY8iwN+Gttfv/mdhFIZqmmbEi xTnQwdQxVs/CcVAmmXRG27RfVAxYWo/qxac0Hy5H/sR5ZLNhhlKi54AgVBKn/ve/UH alsoGUpwHQWlMJrJBQU5pktC64PWSRNR/MrPZAmDqUrxlRI/Db/q+NHTf8DTQuMbpo 0Dp61nqoBbHXY+yrki/JrNCnHKU2T5aqzextry/Iw9SKZZRSHdbjF3rdIfKo7/kfnw orIdY8thUxekpMKSJkWGDqt8OXgvUoIvCKRapuJfQT6YmZ+KwUws9gc74hahsqXIrB 4v+fIVwpheBAmmXVW0B/qg1v39+HGFhLOgEs4f6vbhrjAM0VHDLxIwtB1BNWCOsY8G RjptAvlncfbY3rVvnKVuY3zUrSyaocITFdF8to4pJs7Tg/xZKb2RjQlFmcQjaH5cas dcpWqji09pT6qmTTYpCOZat81bi6eTT4e0Je730XD/LRY+arlic2aM0SmcM7SlIL4D kkjz9BNvDfRcNjd+0jPg= From: Michael Fabian 'Xaymar' Dirks To: ffmpeg-devel@ffmpeg.org Date: Wed, 12 Jan 2022 23:49:20 +0100 Message-Id: <96117e46dbb4032a02d92c178ea4cc979203a0d3.1642027745.git.michael.dirks@xaymar.com> 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: 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".