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 4A626437BB for ; Mon, 29 Aug 2022 00:03:01 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0A9BB68B98E; Mon, 29 Aug 2022 03:02:58 +0300 (EEST) Received: from mail-vs1-f46.google.com (mail-vs1-f46.google.com [209.85.217.46]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 991D468B468 for ; Mon, 29 Aug 2022 03:02:51 +0300 (EEST) Received: by mail-vs1-f46.google.com with SMTP id p6so6827598vsr.9 for ; Sun, 28 Aug 2022 17:02:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc; bh=Vr0vNPcXdl07TC5ILMH46j+Ud7qHQwPSSiUEnATKeJc=; b=CD2A4flEgtriQMukMUe4hmh8jSwldu4YKsq0OPXHYvsCNyAmO/31PisOvNLzZihlXh 8rCZSod2UXlr/1Gi/W0YD9KfHTdIqTILtvLmLWUnkgJpnl3k+Q4NmKwa2MMseUHCU/sJ 7irCr7Jm+OR1KinjpPSF7LszOpZDwzuPdxRszdmyVP0t1BPl0pmXp9AD5LKgk5e20LRt /I9yvtKuj/70bDDba4GImEZn/L7+h4CJQfIryy7YIvk/RCoKcUhBeFOXfqSdDJEBldBi OoecJj+E8eBApGnxlJe0K0cPa7g4Ozd6fjCoO4wOs7R2EwGwFoD/XI57sFzI5j29nJBG /Wkw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc; bh=Vr0vNPcXdl07TC5ILMH46j+Ud7qHQwPSSiUEnATKeJc=; b=m3LEBRhl4zwHN5/+tlI066UcsQKw1UAotpmSh7EpAKcUtHtA5Q953kt6xwqobZH4XN 0Z/CSjl7+htZEZKg2GcXkbW1jW83l05P9NWbX1GEXC3vrnmzPdUblhoNYxVUDJ29rSpV W3uJkNSd7nd49OOj4rbDo1FffxEAlZqK3HkTkQaBW/mpDKQ4iDXEYvHvUmS1omdfnRk3 00JUTjDeM97ToUImd4HrQvDA3Fl4UHTzMODeMzeExJ57fMH5ymBZIopNpNOYIJ2jka1u VKEvkpkUMtVVVWzEg0cWEKteUPiCvv2hUov6H/g1OIXgIvvtnY/7IqpdaKtLpN/+/k2J 8crQ== X-Gm-Message-State: ACgBeo2U9hSKc+VStDwGwSK34wyjiG4OlJ2YgBHI/f3ClB5cYPqV6TBT 8fIpaR9miGcrBalMu4vz1+q1rVYn7X3v8A== X-Google-Smtp-Source: AA6agR7kIKwGotfFc2yzPTj+c2/b4fIZGfbeuBXY95pTej4TpCk6iJ/cyXFYlyNE/vRx5741FaTSWA== X-Received: by 2002:a05:6102:3da4:b0:390:8971:e5ce with SMTP id h36-20020a0561023da400b003908971e5cemr2613147vsv.14.1661731369317; Sun, 28 Aug 2022 17:02:49 -0700 (PDT) Received: from cappuccino.. (075-115-109-114.inf.spectrum.com. [75.115.109.114]) by smtp.gmail.com with ESMTPSA id z5-20020ab05645000000b0039f07e29623sm1382804uaa.4.2022.08.28.17.02.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 28 Aug 2022 17:02:48 -0700 (PDT) From: Stephen Hutchinson To: ffmpeg-devel@ffmpeg.org Date: Sun, 28 Aug 2022 20:02:35 -0400 Message-Id: <20220829000244.71123-1-qyot27@gmail.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/9] avisynth: add user options 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: Stephen Hutchinson 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: The introduction of reading _SARNum/Den values spurred the idea of making sure that users can turn the frameprop value reading ability on and off. Resizing is a much more common activity in AviSynth scripts than the kind of broad color work that would potentially severely impact the usage of the color-related frameprops. Since the source filter sets the SAR values, but then it would be quite possible for a user to manipulate the resolution without updating the prop values for _SARNum and _SARDen, it would become extremely easy to get it wrong. So reading _SARNum/_SARDen is *possible*, but requires user opt-in with the -read_frameprop_sar boolean option. And that then lead to fleshing out the others into their own options, and a mass frameprop on/off setting. Stephen Hutchinson (9): avformat/avisynth: read _SARNum/_SARDen from frame properties avformat/avisynth: add read_frameprop_sar option avformat/avisynth: add read_frameprops option avformat/avisynth: add read_frameprop_field_order option avformat/avisynth: add read_frameprop_range option avformat/avisynth: add read_frameprop_primaries option avformat/avisynth: add read_frameprop_transfer option avformat/avisynth: add read_frameprop_matrix option avformat/avisynth: add read_frameprop_chroma_location option libavformat/avisynth.c | 462 +++++++++++++++++++++++------------------ 1 file changed, 259 insertions(+), 203 deletions(-) -- 2.34.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".