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 F0EAE43356 for ; Wed, 1 Jun 2022 18:31:36 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0920368B7A0; Wed, 1 Jun 2022 21:31:34 +0300 (EEST) Received: from mail-ej1-f47.google.com (mail-ej1-f47.google.com [209.85.218.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A4D7268B75A for ; Wed, 1 Jun 2022 21:31:27 +0300 (EEST) Received: by mail-ej1-f47.google.com with SMTP id u12so5485169eja.8 for ; Wed, 01 Jun 2022 11:31:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=MIiTCHknMTFw1c3xGmmKmo18MpGonazDANyY4Ju5SaU=; b=Oyl2zspLSY0mqj4uRuD3qloG50UdUGMX7L1EETP7PYx3Ycg7va/I+byDvMoQAYTuwu qzlIJZZHRiBSJBnR1zvvZRzfl3HIMH07riOckXA1BlHMxSw7sfLwmbY2tM7OzwSvbOie ozrQwH+cWFaAGHS8eo4Z/pWIbiql2Q0cPNrSNC62MDLXm8m8Jne0ZvNEqwSU45O/+5e6 6T4ktvFFuT9J7NZK+yWsXEJDbbTN8xnEtdtU10Ix6XvVo12BU/oKC+R03YTtH0KMOwTc w5xgJoOcvktCyclT+Hyf068GtBjhSpseywzq9AXwQsT8Vzv8OxIgLFgx1mYY2b3vytDd kuEg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=MIiTCHknMTFw1c3xGmmKmo18MpGonazDANyY4Ju5SaU=; b=iD7ekhFOgnPgezYTtyiZQy59a8kq4YQCAjGTLaXUi/eUTQ1KEgxXBlgxEq6NSCqa81 HL5voicDfRZNn9lriUBwqk0HAtsZAiB56xvXDLED9QJYo9MfM5o0s0AL7C6Lxazrrn7R FQ8hccncu65kpnOWS9se+NbYWdYPATaOpKJazo6ZCWyxBLc26XpFQvoUJ0cx10L7fxFm s/UZuiHGn4rBGCtabHlOo3pCV5nSwAWneOOEJYC2nnfDNBRzPEWJXhLDqbPXv6Tid3UA mKPvoiA1Lp2iMNuha3W3INo2d+PsC6a323LXDXOndqQ/2ZWL2LHUQwp18wGcbtwsDb59 u0Dg== X-Gm-Message-State: AOAM531XYtB+SM66RoOzym1MYVc7ALER1AXX475hiA9jIcNxpoqLAHH1 agXWutiZTOCM+mj/TQUqIRSnA4K7R1zTmRbWyXGPQwBx X-Google-Smtp-Source: ABdhPJx3fyzJXWBAHLwcG1ZTiLsgUvSvNE3k/ciOAT2H1akcIif70SO+hcPk2JK4LhtOzn7XdiRP/BRaVAklGWuCpI0= X-Received: by 2002:a17:907:160c:b0:6fe:c691:47f2 with SMTP id hb12-20020a170907160c00b006fec69147f2mr772656ejc.303.1654108286108; Wed, 01 Jun 2022 11:31:26 -0700 (PDT) MIME-Version: 1.0 References: <20220528133036.33914-1-leo.izen@gmail.com> <20220528133036.33914-2-leo.izen@gmail.com> In-Reply-To: From: "Ronald S. Bultje" Date: Wed, 1 Jun 2022 14:31:13 -0400 Message-ID: To: FFmpeg development discussions and patches X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: Re: [FFmpeg-devel] [PATCH v7 1/1] avutil/csp: create public API for colorspace structs 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: Leo Izen 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: Hi, On Tue, May 31, 2022 at 10:26 AM Ronald S. Bultje wrote: > On Sat, May 28, 2022 at 9:30 AM Leo Izen wrote: > >> This commit moves some of the functionality from avfilter/colorspace >> into avutil/csp and exposes it as a public API so it can be used by >> libavcodec and/or libavformat. It also converts those structs from >> double values to AVRational to make regression testing easier and >> more consistent. >> --- >> libavfilter/colorspace.c | 143 ++++++++---------------------------- >> libavfilter/colorspace.h | 31 +------- >> libavfilter/fflcms2.c | 33 +++++---- >> libavfilter/fflcms2.h | 4 +- >> libavfilter/vf_colorspace.c | 37 +++++----- >> libavfilter/vf_iccdetect.c | 5 +- >> libavfilter/vf_tonemap.c | 17 +---- >> libavutil/Makefile | 2 + >> libavutil/csp.c | 128 ++++++++++++++++++++++++++++++++ >> libavutil/csp.h | 106 ++++++++++++++++++++++++++ >> libavutil/version.h | 2 +- >> 11 files changed, 317 insertions(+), 191 deletions(-) >> create mode 100644 libavutil/csp.c >> create mode 100644 libavutil/csp.h >> > > As far as I can see, all comments have been addressed and there's support > for merging this from multiple people (including me). I intend to push this > in 24 hrs if there are no further comments. Please comment if you disagree. > Merged. Ronald _______________________________________________ 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".