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 256954A35F for ; Tue, 26 Mar 2024 23:08:13 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id BF64A68D687; Wed, 27 Mar 2024 01:08:11 +0200 (EET) Received: from mail-yw1-f202.google.com (mail-yw1-f202.google.com [209.85.128.202]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3F4EE68D680 for ; Wed, 27 Mar 2024 01:08:05 +0200 (EET) Received: by mail-yw1-f202.google.com with SMTP id 00721157ae682-613f563def5so1591187b3.1 for ; Tue, 26 Mar 2024 16:08:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1711494483; x=1712099283; h=cc:to:from:subject:message-id:mime-version:date:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=zJZR5sd72dfEIylOTwiBKyI+BwFxrHSL0cLmZeEFV1I=; b=jYA9ERUgX65aHJJSrhHkDUdmiRrZMr2ODceku7MZ3l7yGZ/DJuw1X3qQGB8BeuWEbm f8jLM+5xDEaYdjYxDiZHPldp8HOo1ee4ApBkKQQ2dU/GYAZH2pHGTAQhnvrzxSfRBgyf hqbhcBbdbblos0RTu6F6HKhh+ZnK8zmdpUdAQqr4JpmJs3tQcDgQmwD0JLlcbguenvb7 SerGyO89gsugfC5X3z69NV+ps6He4u61+Yq630kT/KHCJ4OzazjCoCTVJ7WT2alIv/j8 +Td5l24S+U9WGC1aC7DV3JDeAcZkj+24VAehzPDc0w3WfO0WQiyXDBPRGSujnsCAaZ9i Mccw== X-Gm-Message-State: AOJu0YwgQEbJORKJiLYk1Uw/t12BnJzIsOaTzGMEEszL+EIJmwWT00vG +Cue40gtQJwLa4Oi7oWqqZPxGrl32olOiJ9+jMmxxnFXgqqoSU2saOt9xl+u/oUGZOxUPRK/7A6 rh2oWwhMbMYiu1//XkEosvKKiIuPZlDT2QpINDNQnavOAKg6aU4UUf5BiBs/pH5XBwOzU3AKbX4 q2rZaiaVDkT/NQjkoIXBg2QWIGk8CmDB/spHqMrWQde749 X-Google-Smtp-Source: AGHT+IHtBzNH44ssDNDLkmpYECEd0zod2H+R785sUbd43B65406YuLWqKsk/iNOVGYo17EQyuKzx+1jRRrCT+w== X-Received: from asoulier-us.c.googlers.com ([fda3:e722:ac3:cc00:20:ed76:c0a8:f79]) (user=asoulier job=sendgmr) by 2002:a05:6902:2407:b0:dcd:4286:4498 with SMTP id dr7-20020a056902240700b00dcd42864498mr747129ybb.6.1711494483537; Tue, 26 Mar 2024 16:08:03 -0700 (PDT) Date: Tue, 26 Mar 2024 23:07:53 +0000 Mime-Version: 1.0 X-Mailer: git-send-email 2.44.0.396.g6e790dbe36-goog Message-ID: <20240326230757.282319-1-asoulier@google.com> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 1/5] configure: Add option for enabling LC3/LC3plus wrapper 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: Antoine Soulier via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Antoine Soulier 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: Signed-off-by: Antoine Soulier --- configure | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure b/configure index 2a1d22310b..4262b96117 100755 --- a/configure +++ b/configure @@ -244,6 +244,7 @@ External library support: --enable-libjxl enable JPEG XL de/encoding via libjxl [no] --enable-libklvanc enable Kernel Labs VANC processing [no] --enable-libkvazaar enable HEVC encoding via libkvazaar [no] + --enable-liblc3 enable LC3 de/encoding via liblc3 [no] --enable-liblensfun enable lensfun lens correction [no] --enable-libmodplug enable ModPlug via libmodplug [no] --enable-libmp3lame enable MP3 encoding via libmp3lame [no] @@ -1926,6 +1927,7 @@ EXTERNAL_LIBRARY_LIST=" libjxl libklvanc libkvazaar + liblc3 libmodplug libmp3lame libmysofa @@ -3499,6 +3501,9 @@ libilbc_encoder_deps="libilbc" libjxl_decoder_deps="libjxl libjxl_threads" libjxl_encoder_deps="libjxl libjxl_threads" libkvazaar_encoder_deps="libkvazaar" +liblc3_decoder_deps="liblc3" +liblc3_encoder_deps="liblc3" +liblc3_encoder_select="audio_frame_queue" libmodplug_demuxer_deps="libmodplug" libmp3lame_encoder_deps="libmp3lame" libmp3lame_encoder_select="audio_frame_queue mpegaudioheader" @@ -6869,6 +6874,7 @@ enabled libjxl && require_pkg_config libjxl "libjxl >= 0.7.0" jxl/dec 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 >= 2.0.0" kvazaar.h kvz_api_get +enabled liblc3 && require_pkg_config liblc3 "lc3 >= 1.1.0" lc3.h lc3_hr_setup_encoder enabled liblensfun && require_pkg_config liblensfun lensfun lensfun.h lf_db_create if enabled libmfx && enabled libvpl; then -- 2.44.0.396.g6e790dbe36-goog _______________________________________________ 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".