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 544244596B for ; Sat, 25 Feb 2023 17:48:45 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id DE39A68BCDD; Sat, 25 Feb 2023 19:48:41 +0200 (EET) Received: from shout01.mail.de (shout01.mail.de [62.201.172.24]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E39D968BA2D for ; Sat, 25 Feb 2023 19:48:35 +0200 (EET) Received: from postfix01.mail.de (postfix01.bt.mail.de [10.0.121.125]) by shout01.mail.de (Postfix) with ESMTP id 0FE33A06A4 for ; Sat, 25 Feb 2023 18:48:35 +0100 (CET) Received: from smtp03.mail.de (smtp03.bt.mail.de [10.0.121.213]) by postfix01.mail.de (Postfix) with ESMTP id EE01C8020A for ; Sat, 25 Feb 2023 18:48:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mail.de; s=mailde202009; t=1677347315; bh=fxAfRg6EKcN4+tM5Za4xDly0Q30ZmVHv0grD2vWk62A=; h=Message-ID:Date:Subject:To:From:From:To:CC:Subject:Reply-To; b=LiOQ8yBFpJ5gpN7xcxodzlfu/s+ZBM+0Nq6gHezukY2+DKs9co68HmJOCJUtMuIZf vxEA3jjfQynwOP5slQEulJXo5vN8x16gSiqpKQvRLbOZrp7jVQD+aJSWQW+8Z6NlXm mHo4QqVQDAE77/OyV5Ikh0m7YURF+hctAKr+GMXy1iJRxhg6brpNa+vg7gqSInpKEg zVPyO0sVsaCinoyyQHS2dtiQ7qfQzAN1EETHu6tI4EkfwT+OXJQ31hjLTpooT2CQW6 gTmAgWWYIlFbCFd5Fqm058Z5kA0O/Mz/UiotLtXt/GuaHv5uLdhYUp0JVYVAjuHPZ3 4r+i0jxPY64Mg== Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by smtp03.mail.de (Postfix) with ESMTPSA id C0094A0406 for ; Sat, 25 Feb 2023 18:48:34 +0100 (CET) Message-ID: Date: Sat, 25 Feb 2023 18:48:33 +0100 MIME-Version: 1.0 Content-Language: en-US To: ffmpeg-devel@ffmpeg.org References: <20230225152658.3086653-1-mypopydev@gmail.com> From: Thilo Borgmann In-Reply-To: <20230225152658.3086653-1-mypopydev@gmail.com> X-purgate: clean X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate-type: clean X-purgate-Ad: Categorized by eleven eXpurgate (R) http://www.eleven.de X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate: clean X-purgate-size: 778 X-purgate-ID: 154282::1677347314-72FFD647-71608279/0/0 Subject: Re: [FFmpeg-devel] [PATCH 1/2] lavfi/coreimage: suppress OpenGL deprecation warning 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-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Am 25.02.23 um 16:26 schrieb Jun Zhao: > From: Jun Zhao > > suppress OpenGL deprecation warning. > > Signed-off-by: Jun Zhao > --- > libavfilter/vf_coreimage.m | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/libavfilter/vf_coreimage.m b/libavfilter/vf_coreimage.m > index b1959861de..17b2cde6fe 100644 > --- a/libavfilter/vf_coreimage.m > +++ b/libavfilter/vf_coreimage.m > @@ -22,7 +22,8 @@ > * @file > * Video processing based on Apple's CoreImage API > */ > - > +#define GL_SILENCE_DEPRECATION > +#define CI_SILENCE_GL_DEPRECATION > #import > #import Why do you want to silence a framework warning? -Thilo _______________________________________________ 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".