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 0D9A94120C for ; Tue, 15 Feb 2022 21:53:57 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E2F8568B2BD; Tue, 15 Feb 2022 23:53:38 +0200 (EET) Received: from vie01a-dmta-pe05-1.mx.upcmail.net (vie01a-dmta-pe05-1.mx.upcmail.net [84.116.36.11]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E2D7968AF89 for ; Tue, 15 Feb 2022 23:53:29 +0200 (EET) Received: from [172.31.216.235] (helo=vie01a-pemc-psmtp-pe12.mail.upcmail.net) by vie01a-dmta-pe05.mx.upcmail.net with esmtp (Exim 4.92) (envelope-from ) id 1nK5lJ-000g7B-0C for ffmpeg-devel@ffmpeg.org; Tue, 15 Feb 2022 22:53:29 +0100 Received: from localhost ([213.47.68.29]) by vie01a-pemc-psmtp-pe12.mail.upcmail.net with ESMTP id K5kLn0XS6SgGFK5kLnEslg; Tue, 15 Feb 2022 22:52:29 +0100 X-Env-Mailfrom: michael@niedermayer.cc X-Env-Rcptto: ffmpeg-devel@ffmpeg.org X-SourceIP: 213.47.68.29 X-CNFS-Analysis: v=2.3 cv=f8Q2+96M c=1 sm=1 tr=0 a=2hcxjKEKjp0CzLx6oWAm4g==:117 a=2hcxjKEKjp0CzLx6oWAm4g==:17 a=MKtGQD3n3ToA:10 a=1oJP67jkp3AA:10 a=GEAsPZ9sns4A:10 a=ZZnuYtJkoWoA:10 a=PY2fQcHlzAFk5VDSiNsA:9 From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Tue, 15 Feb 2022 22:52:26 +0100 Message-Id: <20220215215228.12252-1-michael@niedermayer.cc> X-Mailer: git-send-email 2.17.1 X-CMAE-Envelope: MS4wfKcH/wUZGMpTgxWPUJ5xNfh51EYM/RXMiMl1emvAfgLOL7R6/rxXCxEmlMKzYrxa4n4a3iH8hODNjUshZsPhkI5Ftls2bSpjVCowI45EJdAu5yzTYLOn BAhzJMc9LnjYbms6AwC27wps7yyIfQIjwx35frQnzGmd02pJTpAQ3iU2 Subject: [FFmpeg-devel] [PATCH 1/3] avfilter: Rename blend_modes.c -> blend_modes_template.c 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 MIME-Version: 1.0 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: This is more consistent with similar usage Signed-off-by: Michael Niedermayer --- .../{blend_modes.c => blend_modes_template.c} | 0 libavfilter/vf_blend.c | 14 +++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) rename libavfilter/{blend_modes.c => blend_modes_template.c} (100%) diff --git a/libavfilter/blend_modes.c b/libavfilter/blend_modes_template.c similarity index 100% rename from libavfilter/blend_modes.c rename to libavfilter/blend_modes_template.c diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 2d433e439f..e912ba4cb8 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -34,31 +34,31 @@ #define BOTTOM 1 #define DEPTH 8 -#include "blend_modes.c" +#include "blend_modes_template.c" #undef DEPTH #define DEPTH 9 -#include "blend_modes.c" +#include "blend_modes_template.c" #undef DEPTH #define DEPTH 10 -#include "blend_modes.c" +#include "blend_modes_template.c" #undef DEPTH #define DEPTH 12 -#include "blend_modes.c" +#include "blend_modes_template.c" #undef DEPTH #define DEPTH 14 -#include "blend_modes.c" +#include "blend_modes_template.c" #undef DEPTH #define DEPTH 16 -#include "blend_modes.c" +#include "blend_modes_template.c" #undef DEPTH #define DEPTH 32 -#include "blend_modes.c" +#include "blend_modes_template.c" typedef struct BlendContext { const AVClass *class; -- 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".