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 09DB9410A1 for ; Sun, 13 Feb 2022 17:48:16 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6A1ED68B237; Sun, 13 Feb 2022 19:48:13 +0200 (EET) Received: from mail-vs1-f52.google.com (mail-vs1-f52.google.com [209.85.217.52]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 02D4968B09E for ; Sun, 13 Feb 2022 19:48:07 +0200 (EET) Received: by mail-vs1-f52.google.com with SMTP id v6so16291302vsp.11 for ; Sun, 13 Feb 2022 09:48:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=message-id:date:mime-version:user-agent:subject:content-language:to :references:from:in-reply-to:content-transfer-encoding; bh=nrvIys+TS8F5gEy8OtkhQVb9YT483UTWZyURXtgm33E=; b=OTwAwVTxX/27sreik8+eOaZ53EnjJGh7nzITD1dxatGOx0ACJp8wlsUU1ZJS73xdyF NNp/4CDYG/RSNswmGJC+wxM/l3tMAXO/cNlIQ/BZBhSnsu+ljhqudTdLN03IW0tMjSYg 3QK0AjUC1zQNI2+T07059nWQcK5mDboM4uqOKUvblMSpCwJqcOiWpDYBdpVBUbGGbq0K AK+vWYCwJp47o9tMBuBeA5ZxfL+HFpoHZfCOaTiXnS2UxZmg8oRH2J5n6HNpyLhPgbDh IbeXe7w4/oc+O2PWGrq+0lWSXAz5TSQVzqHMRAjORD4ICoCFeOK5QLiIDxczBzmm+3d2 s/nQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:references:from:in-reply-to :content-transfer-encoding; bh=nrvIys+TS8F5gEy8OtkhQVb9YT483UTWZyURXtgm33E=; b=eqe/7USY56FVJ0uUgopSRRhgtAwytz8+w+q1qwPPGkM2FllHtRaKtisxZbkhg1tsnq zdyRrSLm8sn/JRaQk7mqWiobDknUf3bcTAETnhp7mY7RFq6z1LhYal+CiTysWvPhpU6b 0Xgl3wPXOJop/XdEjArDh1xRkZZDbG9fNbVIgBQz9q/qirIwZh0VDSj85pyBBMfZ/9qz obDxz+xDlHJXwiX1RZgeEpUr5DiGKdcbs7EqEw6gIgYoc98MX56dFgc6qM+yMDZpnBcb 6oEnuGVd9ZHhPB6Kam89zHG8nioGk71eSFnkOIoDUxngwdov2pUdPdtt6DnqNZNaPoH2 3Grw== X-Gm-Message-State: AOAM530thHpXJmfMxewouxTMG5M7VBpx7xJhsD9ThfBpvvmc6A0lXmrX unuvVqUSien5oYX3bBdzTncYhIOU20E= X-Google-Smtp-Source: ABdhPJzlUDDke7k92/P80Jp52BuSuJ41hP2Nfcv7K/nzs9ZckMmjJX7xom0kqmEzaOjoxiSKE+LDOw== X-Received: by 2002:a67:d002:: with SMTP id r2mr2749720vsi.64.1644774485342; Sun, 13 Feb 2022 09:48:05 -0800 (PST) Received: from [192.168.1.5] ([75.115.109.114]) by smtp.gmail.com with ESMTPSA id 17sm5171247vky.10.2022.02.13.09.48.05 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sun, 13 Feb 2022 09:48:05 -0800 (PST) Message-ID: <29650ef4-a7fb-de7e-9ba4-9a2c1a80c777@gmail.com> Date: Sun, 13 Feb 2022 12:48:04 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: FFmpeg development discussions and patches References: <20220208110240.4179-1-qyot27@gmail.com> From: Stephen Hutchinson In-Reply-To: <20220208110240.4179-1-qyot27@gmail.com> Subject: Re: [FFmpeg-devel] [PATCH 0/3] avformat/avisynth: support frame properties 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-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 2/8/22 6:02 AM, Stephen Hutchinson wrote: > AviSynth+ 3.6.0 introduced support for frame properties, allowing > various metadata to be passed between filters or read out by > client programs. Using this, FFmpeg can read Color Range, Transfer > Characteristics, Matrix, Color Primaries, Chroma Location, and > Field Order information from AviSynth scripts. > > Reading frame properties through AviSynth's C interface was not > possible until a few months ago, though, so client programs that > use the C API need version 3.7.1 or higher to be able to take > advantage of it. > > Incorporates a previous patch by emcodem that fixes setting field > order on non-frameprop-aware versions of AviSynth. > > Stephen Hutchinson (2): > avisynth: use AviSynth+'s frame properties to set various fields > configure: check avisynth header version > > emcodem (1): > avisynth: corrected interlace detection > > configure | 4 +- > libavformat/avisynth.c | 266 ++++++++++++++++++++++++++++++++++++++--- > 2 files changed, 253 insertions(+), 17 deletions(-) > Since it's been about a week, if there aren't any objections that show up, I'll go ahead and push this later today or tomorrow. _______________________________________________ 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".