From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id E2FFA4CBB4 for ; Wed, 11 Jun 2025 10:41:52 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 462EB68C10A; Wed, 11 Jun 2025 13:41:48 +0300 (EEST) Received: from mailout1.w1.samsung.com (mailout1.w1.samsung.com [210.118.77.11]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 45C7768B50A for ; Wed, 11 Jun 2025 13:41:42 +0300 (EEST) Received: from eucas1p1.samsung.com (unknown [182.198.249.206]) by mailout1.w1.samsung.com (KnoxPortal) with ESMTP id 20250611104139euoutp010765e76071cc23adac8ba9079cf482ef~H9vIVZF3_0998709987euoutp01J for ; Wed, 11 Jun 2025 10:41:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 mailout1.w1.samsung.com 20250611104139euoutp010765e76071cc23adac8ba9079cf482ef~H9vIVZF3_0998709987euoutp01J DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=samsung.com; s=mail20170921; t=1749638499; bh=5+CQf9NlPc0T7P+CBkaLXRhqXJ3IY2MPGnppjzb0T2Q=; h=From:To:Cc:Subject:Date:References:From; b=oCXO74jHw07cVMDjO+B9mbsulAaw3naMqxU/QEE/JFah4qRlSw1xBe6Pcbq0SdPCg yuYtu/g/Tg8IhLeTPA6djQvfB+1WM2M4/5D7Vbi8rfiKVsVgXiPR6/pROsGRBA0/Nx U37AofK8SmgmbRoLl4sUSBMko7yvgnGXt0oQ11wM= Received: from eusmtip1.samsung.com (unknown [203.254.199.221]) by eucas1p1.samsung.com (KnoxPortal) with ESMTPA id 20250611104139eucas1p104a199a496cf1632df09f9eb9672022e~H9vIFruDG1865118651eucas1p1e; Wed, 11 Jun 2025 10:41:39 +0000 (GMT) Received: from AMDC5021.local (unknown [106.120.41.33]) by eusmtip1.samsung.com (KnoxPortal) with ESMTPA id 20250611104139eusmtip1f3962ce6d651c1e7b275426e82c8cfd1~H9vH83zXW2829928299eusmtip1j; Wed, 11 Jun 2025 10:41:39 +0000 (GMT) From: Dawid Kozinski To: ffmpeg-devel@ffmpeg.org Date: Wed, 11 Jun 2025 12:41:31 +0200 Message-Id: <20250611104131.2621259-1-d.kozinski@samsung.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-CMS-MailID: 20250611104139eucas1p104a199a496cf1632df09f9eb9672022e X-Msg-Generator: CA X-RootMTR: 20250611104139eucas1p104a199a496cf1632df09f9eb9672022e X-EPHeader: CA X-CMS-RootMailID: 20250611104139eucas1p104a199a496cf1632df09f9eb9672022e References: Subject: [FFmpeg-devel] [PATCH v1] avcodec/apv_codec: Update liboapv version requirement in configure script 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: Dawid Kozinski 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: Changed the minimum required version of liboapv from 0.1.13 to 0.1.13.1 Signed-off-by: Dawid Kozinski --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 534b443f7d..22f5ca738b 100755 --- a/configure +++ b/configure @@ -6949,7 +6949,7 @@ enabled jni && { [ $target_os = "android" ] && check_headers jni.h enabled ladspa && require_headers "ladspa.h dlfcn.h" enabled lcms2 && require_pkg_config lcms2 "lcms2 >= 2.13" lcms2.h cmsCreateContext enabled libaom && require_pkg_config libaom "aom >= 2.0.0" aom/aom_codec.h aom_codec_version -enabled liboapv && require_pkg_config liboapv "oapv >= 0.1.13" "oapv/oapv.h" oapve_encode +enabled liboapv && require_pkg_config liboapv "oapv >= 0.1.13.1" "oapv/oapv.h" oapve_encode enabled libaribb24 && { check_pkg_config libaribb24 "aribb24 > 1.0.3" "aribb24/aribb24.h" arib_instance_new || { enabled gpl && require_pkg_config libaribb24 aribb24 "aribb24/aribb24.h" arib_instance_new; } || die "ERROR: libaribb24 requires version higher than 1.0.3 or --enable-gpl."; } -- 2.34.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".