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 04D4146956 for ; Sat, 29 Jul 2023 19:00:46 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id B408368C77F; Sat, 29 Jul 2023 22:00:44 +0300 (EEST) Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E402668C618 for ; Sat, 29 Jul 2023 22:00:38 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 3CD9A60002; Sat, 29 Jul 2023 19:00:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amyspark.me; s=gm1; t=1690657238; 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: in-reply-to:in-reply-to:references:references; bh=5ivjigkSv80qiYq76cY1JposDU5CKtxaR5gGZ0IEPQ8=; b=AWW9eTIaZPhqFRkVnEQV98lffA6d0iKj+x2W7AThpkYfU+t8PJRl5kDu5sY1aGeNJ6poZo 1GToL74Fe/lI9jwxBCd8W471jIG6JWJnDxHUEGqXzW402w4c+1VMfWQjBNAP4jecvvXXy+ rk9bIwZ8VgE0pALfEr/GK3fJy0QPYG/N4LAC5s9tbN82m/6a7yEYd3rxpVyIVVHz8Bs68z 60upn0ohspHUfECgBnkFFXvPqe98WMohXzKrrJu+4/lp+R/V6p8Hc3A4GTgXSH6kttGODc J++f8RgyzFTdREmtZVSIg5325INVZ+npPAdZMEIsQWVjl7KRZbJIDrD3MvaW/g== Message-ID: Date: Sat, 29 Jul 2023 16:00:33 -0300 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird From: "L. E. Segovia" To: ffmpeg-devel@ffmpeg.org References: <2ab084b2-7505-414d-9ff4-4315b087b67f@amyspark.me> Content-Language: en-US In-Reply-To: <2ab084b2-7505-414d-9ff4-4315b087b67f@amyspark.me> X-GND-Sasl: amy@amyspark.me Subject: [FFmpeg-devel] [PATCH v2] 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".