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 ADEB840932 for ; Sun, 1 Jan 2023 09:42:59 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7528C68BB37; Sun, 1 Jan 2023 11:42:57 +0200 (EET) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id F2E5268BA61 for ; Sun, 1 Jan 2023 11:42:45 +0200 (EET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 5A85D3200972; Sun, 1 Jan 2023 04:42:44 -0500 (EST) Received: from imap49 ([10.202.2.99]) by compute1.internal (MEProxy); Sun, 01 Jan 2023 04:42:44 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:date:feedback-id :feedback-id:from:from:in-reply-to:in-reply-to:message-id :mime-version:references:reply-to:sender:subject:subject:to:to :x-me-proxy:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; t=1672566163; x=1672652563; bh=Hh/tknKJN95Nbc3Rzt6b+UTzHaom ygnCUfiYlIorQVU=; b=tTC/T70JY24TtT9pBcxW/7aREvworaSp6pm2v95GPUOA y18L3HKC6jq/2weQEfGcbWOQdCuCKO8e11GYgUBYGTQs0dE9A9qu7z3EuIv23cCI BeN8oX8BwrZ/aVphpFNbhKBqFQdajUd2MRdP096vbGwGJPQdk7fyCppVbkbeRcgc P1R9oFQH66BlB3OGHYSHbM6v8SAHvaxCKGi+nnvFZY5x21S81yC9caYK37kAtngj 56vqUpp1Hi9t/z4B2nB5u3JzEHPE0vcEmAVqKKAHps9lkwK+FACnvO40LYsra+09 pWXk+08QEDnnA18KYgXiAh+YqVX5kxcqufHZd/UQ0Q== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrjedtgddtfecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhepofgfggfkjghffffhvffutgesthdtre dtreertdenucfhrhhomhepfdflvggrnhdquegrphhtihhsthgvucfmvghmphhffdcuoehj sgesvhhiuggvohhlrghnrdhorhhgqeenucggtffrrghtthgvrhhnpeegkeehtddthfegke dtheevvddtleefffejgfetjeeviedtvefghfelleevieehgeenucffohhmrghinhepfhhf mhhpvghgrdhorhhgnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilh hfrhhomhepjhgssehvihguvgholhgrnhdrohhrgh X-ME-Proxy: Feedback-ID: i06904239:Fastmail Received: by mailuser.nyi.internal (Postfix, from userid 501) id C881B15A008E; Sun, 1 Jan 2023 04:42:43 -0500 (EST) X-Mailer: MessagingEngine.com Webmail Interface User-Agent: Cyrus-JMAP/3.7.0-alpha0-1185-g841157300a-fm-20221208.002-g84115730 Mime-Version: 1.0 Message-Id: In-Reply-To: <20221230084256.23865-1-ting.fu@intel.com> References: <20221230084256.23865-1-ting.fu@intel.com> Date: Sun, 01 Jan 2023 10:42:22 +0100 From: "Jean-Baptiste Kempf" To: "Ting Fu" , ffmpeg-devel Subject: Re: [FFmpeg-devel] [PATCH 1/2] lavfi/dnn: Modify error message for incorrect backend_type 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: LGTM. On Fri, 30 Dec 2022, at 09:42, Ting Fu wrote: > Signed-off-by: Ting Fu > --- > libavfilter/dnn/dnn_interface.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavfilter/dnn/dnn_interface.c > b/libavfilter/dnn/dnn_interface.c > index 554a36b0dc..fa484c0905 100644 > --- a/libavfilter/dnn/dnn_interface.c > +++ b/libavfilter/dnn/dnn_interface.c > @@ -71,7 +71,7 @@ DNNModule *ff_get_dnn_module(DNNBackendType > backend_type) > #endif > break; > default: > - av_log(NULL, AV_LOG_ERROR, "Module backend_type is not native > or tensorflow\n"); > + av_log(NULL, AV_LOG_ERROR, "Module backend_type is not > supported or enabled.\n"); > av_freep(&dnn_module); > return NULL; > } > -- > 2.17.1 > > _______________________________________________ > 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". -- Jean-Baptiste Kempf - President +33 672 704 734 _______________________________________________ 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".