From patchwork Fri Dec 6 07:06:18 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhao Zhili X-Patchwork-Id: 16616 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id E34BB445008 for ; Fri, 6 Dec 2019 09:06:50 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id CBF4E68B609; Fri, 6 Dec 2019 09:06:50 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from smtpbgeu2.qq.com (smtpbgeu2.qq.com [18.194.254.142]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 073DC68B4C5 for ; Fri, 6 Dec 2019 09:06:43 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=foxmail.com; s=s201512; t=1575615990; bh=9QSocruxDQqI09DXhqNyWb8/Ei53+KdFKXdG5sPpZjY=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=XJeaDaTk9aTFkaP2KicLD7nmmNx+wNNEsMQVwLtehaEfCOptpdfN81jZF3xQFFVQ8 jXJ6cpl1mLXIRvLC9ePwpwBu2Jcyu0R0gjiwSjeJSZKKqKdDZt/IN7I//Kc/lo93ek 40mHSqUCZL2xpZ6QJiWcZoW7053ky5vr6knVpf+8= X-QQ-mid: esmtp2t1575615988t70qvex3c Received: from ZHILIZHAO-MB1.tencent.com (unknown [14.17.22.53]) by esmtp4.qq.com (ESMTP) with id ; Fri, 06 Dec 2019 15:06:28 +0800 (CST) X-QQ-SSF: 01000000000000N0VG3006000000002 X-QQ-FEAT: Tubeh+4qKFQVGwhlV98zd4ftf7glyKV2z/jCTBuekr/aGppfxGDXqvJ5PCBqJ 51h2YUM+mL45H7KQR/mYgW/B+4cmi36oRzXgCzoB2ydVJg/GCz0l2bM//0yWLmvB7w4AnZ2 wd5HslWCce2OiTxsKpeqAQ8Q48ASaGpD6GVFSNAiORTffe45rhiJr28lq6qtKpxJPdUebkq gxgmC1jgO+6fCgfaYw7qrGgEJSdEuC8gWCe6Yg/NAgkdrv+C5a7Q+hInuqNnx8JNUUDNKhJ SSQB/8q8PcSNeJ4LWZatYaVx4R7tzRnk3LgtlA+kbRwjkA X-QQ-GoodBg: 0 From: quinkblack@foxmail.com To: ffmpeg-devel@ffmpeg.org Date: Fri, 6 Dec 2019 15:06:18 +0800 Message-Id: <20191206070618.42407-4-quinkblack@foxmail.com> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20191206070618.42407-1-quinkblack@foxmail.com> References: <20191206070618.42407-1-quinkblack@foxmail.com> MIME-Version: 1.0 X-QQ-SENDSIZE: 520 Feedback-ID: esmtp:foxmail.com:bgforeign:bgforeign12 X-QQ-Bgrelay: 1 Subject: [FFmpeg-devel] [PATCH v2 4/4] avfilter/avfilter: update documentation of avfilter_graph_create_filter X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 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 Cc: Zhao Zhili Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" From: Zhao Zhili --- libavfilter/avfilter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 3eaa8a4089..197e12a625 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -947,7 +947,7 @@ AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, const char *nam /** * Create and add a filter instance into an existing graph. * The filter instance is created from the filter filt and inited - * with the parameters args and opaque. + * with the parameters args. opaque is ignored currently. * * In case of success put in *filt_ctx the pointer to the created * filter instance, otherwise set *filt_ctx to NULL.