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 49C1747264 for ; Mon, 2 Oct 2023 17:03:43 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 554D668CC89; Mon, 2 Oct 2023 20:03:41 +0300 (EEST) Received: from mail-qv1-f48.google.com (mail-qv1-f48.google.com [209.85.219.48]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id F048E68CC53 for ; Mon, 2 Oct 2023 20:03:34 +0300 (EEST) Received: by mail-qv1-f48.google.com with SMTP id 6a1803df08f44-65b0ffbf36aso69205546d6.1 for ; Mon, 02 Oct 2023 10:03:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1696266213; x=1696871013; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=lVxeW8vBDD3EsNfamfLvzUwJwSL6z7w5CX9UiTg4904=; b=ry05/W5+fjGTga4mGDDP7VOOyVWZX4Xj89R8ZJecPae5Drnuko3FenHf/2d1YB89qW rOAhqg2uY7L2tmaCNIdIW2j6urqyVldATLRr+lxL7/kykWCLpDx/7q9AmNNw+Cm1BsPC 7OizBRyFxQRj6DgLMvx3WRb9RlMgXzv757JoFLLd46I/yFYieHllpKwTnFqnhrfSI0AB XLCFk1unJ8y6gHyp71rdijgeD5R0dEILXoNuhAg+uOxv8/q8e+YbUevLbq3/Fo7jnv9b T84mkRSbZozbBVDIdcbdARduEbkQf8cNbJKFegw89dYIhgrVE3fbNp8A/LJ4tUbZdWuQ i2jw== X-Gm-Message-State: AOJu0Yw5a9QcEDSHHC7pqoZtQE38sDn04T2DUq6BB2YEfz9qoACBQnb+ Pn/niCccudUjp3HJAXKuNryf/e7gEYLDx77Csoo4vg== X-Google-Smtp-Source: AGHT+IHP1aVonkZwV3SAXU+4ZbBnQ9L85+Vmv/QQJPETRpfmbmadOm0EgTxseHopFywO9MvM9eCW3g== X-Received: by 2002:a0c:cb0b:0:b0:65d:afc:3a52 with SMTP id o11-20020a0ccb0b000000b0065d0afc3a52mr10522619qvk.49.1696266213139; Mon, 02 Oct 2023 10:03:33 -0700 (PDT) Received: from provost.sidefx.com ([167.100.93.16]) by smtp.gmail.com with ESMTPSA id os27-20020a05620a811b00b00773fe8971bbsm9151985qkn.90.2023.10.02.10.03.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 02 Oct 2023 10:03:32 -0700 (PDT) To: ffmpeg-devel@ffmpeg.org Date: Mon, 2 Oct 2023 13:03:28 -0400 Message-Id: <20231002170328.67399-1-johnmather@sidefx.com> X-Mailer: git-send-email 2.39.3 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] avcodec/libkvazaar: Bump minimum version to 2.0.0 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: , From: John Mather via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: John Mather 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: 0cd8769207f utilized the rc_algorithm member of the kvz_config struct, which was introduced in Kvazaar 2.0.0. This patch bumps the minimum version of Kvazaar to 2.0.0 so that FFmpeg compiles successfully. Signed-off-by: John Mather --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 04bb9fe9dd..3118cc0502 100755 --- a/configure +++ b/configure @@ -6718,7 +6718,7 @@ enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -li enabled libjxl && require_pkg_config libjxl "libjxl >= 0.7.0" jxl/decode.h JxlDecoderVersion && require_pkg_config libjxl_threads "libjxl_threads >= 0.7.0" jxl/thread_parallel_runner.h JxlThreadParallelRunner enabled libklvanc && require libklvanc libklvanc/vanc.h klvanc_context_create -lklvanc -enabled libkvazaar && require_pkg_config libkvazaar "kvazaar >= 0.8.1" kvazaar.h kvz_api_get +enabled libkvazaar && require_pkg_config libkvazaar "kvazaar >= 2.0.0" kvazaar.h kvz_api_get enabled liblensfun && require_pkg_config liblensfun lensfun lensfun.h lf_db_new if enabled libmfx && enabled libvpl; then -- 2.39.3 _______________________________________________ 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".