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 ESMTPS id B40784E2B0 for ; Mon, 10 Mar 2025 15:20:51 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7688568E2DA; Mon, 10 Mar 2025 17:20:49 +0200 (EET) Received: from haasn.dev (haasn.dev [78.46.187.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C76F468E233 for ; Mon, 10 Mar 2025 17:20:42 +0200 (EET) Received: from haasn.dev (unknown [10.30.1.1]) by haasn.dev (Postfix) with UTF8SMTP id 85FC2410B5; Mon, 10 Mar 2025 16:20:42 +0100 (CET) Date: Mon, 10 Mar 2025 16:20:42 +0100 Message-ID: <20250310162042.GB109646@haasn.xyz> From: Niklas Haas To: ffmpeg-devel@ffmpeg.org In-Reply-To: <20250310151811.107728-1-ffmpeg@haasn.xyz> References: <20250310151811.107728-1-ffmpeg@haasn.xyz> MIME-Version: 1.0 Content-Disposition: inline Subject: Re: [FFmpeg-devel] [PATCH] swscale/utils: split off format code into new file 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 Cc: Niklas Haas 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: On Mon, 10 Mar 2025 16:18:11 +0100 Niklas Haas wrote: > From: Niklas Haas > > utils.c is getting quite crowded, and I need a new place to dump a lot of > format handling code for the ongoing rewrite. Rather than bloating this file > even more, start splitting format handling helpers off into a new file. > > This also renames the existing utils.h header, which didn't really contain > anything except the SwsFormat definition anyway (the prototypes for what should > have been in utils.h are all still in the legacy swscale_internal.h). > --- > libswscale/Makefile | 1 + > libswscale/cms.c | 2 +- > libswscale/cms.h | 2 +- > libswscale/csputils.c | 2 +- > libswscale/format.c | 583 +++++++++++++++++++++++++++++++ > libswscale/{utils.h => format.h} | 6 +- > libswscale/graph.c | 2 +- > libswscale/graph.h | 2 +- > libswscale/lut3d.h | 2 +- > libswscale/utils.c | 559 ----------------------------- > 10 files changed, 593 insertions(+), 568 deletions(-) > create mode 100644 libswscale/format.c > rename libswscale/{utils.h => format.h} (98%) Decided to send this commit early to minimize merge conflicts with my ongoing rewrite. _______________________________________________ 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".