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 1707443259 for ; Thu, 26 May 2022 02:33:18 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 80C1E68B588; Thu, 26 May 2022 05:33:15 +0300 (EEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A345468B407 for ; Thu, 26 May 2022 05:33:07 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653532393; x=1685068393; h=from:to:cc:subject:date:message-id; bh=CVfBAGWrSQEYez8r2Lk6yeh9Trtud24YvHlU3k7k96o=; b=lHmvPmAn8AL+G0obK52RMQ5nFtwN03EItk6PBd8at8pKBd6vlDXSSAyw Fiy/n85MyhLn0gZEpjk0FHPNl7vcPDybNAbTeL052EZ5xzP3K0hO/4jkc 3Ht7SIa7jTB9Rir0bLtvMs0nENSia9OmJh6E09eXCi68oCY9njzqPRxV/ 2TFen+qL3/R9BTQysyopX6E9DB73iLnucHJofhMZfECuSY7pj5UKntyWH i0rGYYJZPK5U0goeSo9PfFVqOeQX7rlrFdy4qUWFC6ognVhFgN5h/qaNp GoT9UShrTYIzNqizy2Qxc+gWOHxgPVCmg3oHv0CXiEOcFyLIZ7+YePmJf w==; X-IronPort-AV: E=McAfee;i="6400,9594,10358"; a="274108845" X-IronPort-AV: E=Sophos;i="5.91,252,1647327600"; d="scan'208";a="274108845" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 May 2022 19:33:05 -0700 X-IronPort-AV: E=Sophos;i="5.91,252,1647327600"; d="scan'208";a="602681029" Received: from swang11-mobl.ccr.corp.intel.com (HELO hxiang-desk.ccr.corp.intel.com) ([10.254.208.181]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 May 2022 19:33:03 -0700 From: Haihao Xiang To: ffmpeg-devel@ffmpeg.org Date: Thu, 26 May 2022 10:32:26 +0800 Message-Id: <20220526023226.3728-1-haihao.xiang@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [FFmpeg-devel] [PATCH] qsv: check for libmfx.pc instead of mfx.pc 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: Haihao Xiang MIME-Version: 1.0 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: This fixed the regression caused by commit 478e1a98a Reported-by: Timo Rothenpieler Signed-off-by: Haihao Xiang --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 6cf7d89674..5a167613a4 100755 --- a/configure +++ b/configure @@ -6565,7 +6565,7 @@ enabled liblensfun && require_pkg_config liblensfun lensfun lensfun.h lf_ # Media SDK or Intel Media Server Studio, these don't come with # pkg-config support. Instead, users should make sure that the build # can find the libraries and headers through other means. -enabled libmfx && { check_pkg_config libmfx "mfx >= 1.28" "mfx/mfxvideo.h" MFXInit || +enabled libmfx && { check_pkg_config libmfx "libmfx >= 1.28" "mfx/mfxvideo.h" MFXInit || { require libmfx "mfx/mfxvideo.h mfx/mfxdefs.h" MFXInit "-llibmfx $advapi32_extralibs" && { test_cpp_condition mfx/mfxdefs.h "MFX_VERSION >= 1028" || die "ERROR: libmfx version must be >= 1.28"; } && warn "using libmfx without pkg-config"; } } -- 2.17.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".