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 0CD884417A for ; Wed, 31 Aug 2022 00:24:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 4FD2D68B9CE; Wed, 31 Aug 2022 03:24:50 +0300 (EEST) 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 C7E8D68B989 for ; Wed, 31 Aug 2022 03:24:44 +0300 (EEST) Received: by mail-vs1-f52.google.com with SMTP id d126so13116735vsd.13 for ; Tue, 30 Aug 2022 17:24:44 -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=+hUolm0593MHj2e8h3u9zqk/wGg8wJMOfpiLbkYSpcY=; b=OEl12Kt8mPuDGsvzdIgkHbTxdyiCzjFIuxBZ67Rc2dK87XyqvIfSRym0bEIpevK76h y6h1HxtiiTePeW1TBQkmiNFo4KYPFakDcdPoPOBYsA20EdhWyxbZKeBEUrJ5009e/6lR IZPl+sRCJnhjlyIc1BP3A0YOG4BMr7mTUqfSf/6xTObmLIEWLljnZxPVMSQfwBXq+hLw l6IH8NAtDYiOq2UAesK3eLXHIx5jR23B0Qvp78ZYea1gqZsh/HDqfHU3oUiIlrcQptl5 MCFNSi91b4aPO+kvFe1cn2rGY4BAvN3ZSpO+DWZkXoiQNkFCD5+LZJRintGXbJHax/wb jmWA== 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=+hUolm0593MHj2e8h3u9zqk/wGg8wJMOfpiLbkYSpcY=; b=OTWvoCe07k5VOjFhuzlQgzlLzYwNMrQpoZC0gOknBR/Z3HEXNIGQWOEeTikAUaWzdB uf+7tUXCe8F7j0IROHuYIjMPh4rL4DThUXIct21U5V0tr0lQaSKqzS0lS/i1ObbuBvZ1 TQJZImsXgwwZYTn+crCcqFs97ytxYOvq+g/bW738IYH/ozh1Xca0xt39dvPWC+184B4S LaPEmdF9e+XnYk4qr+BGIJ+woiwU9id+ibpq5gRXLsv6VsnWgV01FedHqjXhI65cBXFf GWQiUlfAdLB5ReTuM8KTArzC99XN3pPapDMXzTS5bUmlPvrg++l448NfMHm4QIMcOg9e lFsA== X-Gm-Message-State: ACgBeo2qYDLaam8OMSn8zvFuRjDWKOy8mVdmeBoz7Cf5PQyQErXVRHKV uSjluUxUP1pmBkMUNcSmMx4M3cLh68fx3g== X-Google-Smtp-Source: AA6agR6Xey1kDN57ugB+1/PSkvwK7BXIWAsB4DH2BgO0wRcBMiJuZtLv1KGqbT0HFv5bSl7QwfC58w== X-Received: by 2002:a67:f2c1:0:b0:390:e833:762b with SMTP id a1-20020a67f2c1000000b00390e833762bmr3319470vsn.78.1661905482975; Tue, 30 Aug 2022 17:24:42 -0700 (PDT) Received: from cappuccino.. (075-115-109-114.inf.spectrum.com. [75.115.109.114]) by smtp.gmail.com with ESMTPSA id x204-20020a1f31d5000000b0038ca654efa6sm2087206vkx.19.2022.08.30.17.23.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 30 Aug 2022 17:23:45 -0700 (PDT) From: Stephen Hutchinson To: ffmpeg-devel@ffmpeg.org Date: Tue, 30 Aug 2022 20:23:37 -0400 Message-Id: <20220831002340.31886-1-qyot27@gmail.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/3 v2] avisynth: add user-selectable flags 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 reading of frame properties from the script can now be toggled on and off per-property or as a whole, using the avisynth_flags option. The ability to read _SARNum/_SARDen properties has been added, but is kept off by default because it poses more of a risk of a user accidentally getting it wrong than the already existing properties do, which is what prompted adding the ability to switch frame property reading on and off. Stephen Hutchinson (3): avformat/avisynth: read _SARNum/_SARDen from frame properties avformat/avisynth: implement avisynth_flags option avformat/avisynth: reindent libavformat/avisynth.c | 386 ++++++++++++++++++++++++----------------- 1 file changed, 223 insertions(+), 163 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".