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 74990453FA for ; Sat, 29 Jul 2023 18:40:37 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D078D68C812; Sat, 29 Jul 2023 21:40:33 +0300 (EEST) Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 9A12368C6DE for ; Sat, 29 Jul 2023 21:40:27 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 03186E0002; Sat, 29 Jul 2023 18:40:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amyspark.me; s=gm1; t=1690656027; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=XxxGqcO2UHckqSK1e1EKKqe413+nVx2KSJY1EqeOLL0=; b=Gk8IGKwRNEACZDXaPtO7haPnqDpxk8dFoA2o+eiFSabkyE61mBSals4nSnuBs7nj22Qlxj nYrFG3YGduW46o+Esg9EpDk2UjaFUH861DLmuT33giYuXpI0n6K0RZqAyzPNThVyJeV31y V31osakBXWC4mAnvwRYKFc4PjjS6mPR6pYWlyDaH7PotczIci378TDklXNZnPwUhsjrpEi St+cJ4s32njtZwvw04x+ovBOv0Bnu5+KD2ncJrbbrM0//Alsu+NIkWl1YuQGTYODiJ5Krh 6ZtOPvydq9b9/8LfKbifVLaz9r8bBwt43LDKixiyvhLju7i1Aa43Vymd+cB6ng== Message-ID: <2ab084b2-7505-414d-9ff4-4315b087b67f@amyspark.me> Date: Sat, 29 Jul 2023 15:40:21 -0300 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird From: "L. E. Segovia" To: ffmpeg-devel@ffmpeg.org Content-Language: en-US X-GND-Sasl: amy@amyspark.me Subject: [FFmpeg-devel] [PATCH] avdevice: Fix disabling audiotoolbox_outdev build on iOS 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 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: audiotoolbox.m uses CoreAudio APIs that are only available in macOS. The existing CoreAudio framework check is already enough for this case (as CoreAudio.h does not exist for the iDevices), however, it was never passed as a dependency of audiotoolbox_outdev. This caused the build system to include that output device into the targets. Signed-off-by: L. E. Segovia --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 99388e7664..ccb9d7be7a 100755 --- a/configure +++ b/configure @@ -3577,7 +3577,7 @@ alsa_outdev_deps="alsa" avfoundation_indev_deps="avfoundation corevideo coremedia pthreads" avfoundation_indev_suggest="coregraphics applicationservices" avfoundation_indev_extralibs="-framework Foundation" -audiotoolbox_outdev_deps="audiotoolbox pthreads" +audiotoolbox_outdev_deps="audiotoolbox coreaudio pthreads" audiotoolbox_outdev_extralibs="-framework AudioToolbox -framework CoreAudio" bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h" caca_outdev_deps="libcaca" -- 2.41.0 _______________________________________________ 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".