From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 9C5CD4CF30 for ; Fri, 30 May 2025 00:58:51 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id E882E68BE90; Fri, 30 May 2025 03:58:46 +0300 (EEST) Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id ABB7768B5A1 for ; Fri, 30 May 2025 03:58:40 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id D7AE841CFB for ; Fri, 30 May 2025 00:58:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1748566720; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=YOEdKyvJyAORAmaIc7vW/GLRIbUa3/HLAzPfJ9OL6IQ=; b=COGXSmNMTovfayAgp1MHLDw+9xsGQmTv6GQu6ct8GpHTnVmv3kLrRZKzwacM8JXDECugZd BmNsgzAdBzHWzqaPWD9qBcWdKqbI006mCfjLgSQgKpXvSJue2EAORakubYolgBG8qOBa3L BSI79ByjIXi4PChlCMvXli/L+6dIxJeB+QBqOHI069m3e64VuMwgbBlRbW98NhB9qvPikl 87Kb78WRtIC7VB4i2MPAofAZnkoxqf5KSG0gQzpBFt2Te13nwRdngUdSC8RvNJlyPiGT31 mq6qOgShNh6ooWoJz/IXw2/rYygGFaPAZEhjUdLHkY2a6AQb5uhj9UZ3/D3qhw== Date: Fri, 30 May 2025 02:58:39 +0200 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20250530005839.GG29660@pb2> References: <90c31845-ef4f-4aa2-b87d-93800e1a469b@gmail.com> MIME-Version: 1.0 In-Reply-To: <90c31845-ef4f-4aa2-b87d-93800e1a469b@gmail.com> X-GND-State: clean X-GND-Score: -85 X-GND-Cause: gggruggvucftvghtrhhoucdtuddrgeeffedrtddtgddvjeeifeculddtuddrgeefvddrtddtmdcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfitefpfffkpdcuggftfghnshhusghstghrihgsvgenuceurghilhhouhhtmecufedtudenucesvcftvggtihhpihgvnhhtshculddquddttddmnegfrhhlucfvnfffucdludehmdenucfjughrpeffhffvuffkfhggtggujgesghdtreertddtvdenucfhrhhomhepofhitghhrggvlhcupfhivgguvghrmhgrhigvrhcuoehmihgthhgrvghlsehnihgvuggvrhhmrgihvghrrdgttgeqnecuggftrfgrthhtvghrnhepieegkedtjeduffejhfetgeejtdegteetgfegtdfhjefgvefhteegkeejtddvhfevnecukfhppeeguddrieeirdeijedruddufeenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeeguddrieeirdeijedruddufedphhgvlhhopehlohgtrghlhhhoshhtpdhmrghilhhfrhhomhepmhhitghhrggvlhesnhhivgguvghrmhgrhigvrhdrtggtpdhnsggprhgtphhtthhopedupdhrtghpthhtohepfhhfmhhpvghgqdguvghvvghlsehffhhmphgvghdrohhrgh X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH] add yuv444p support to mcdeint 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-Type: multipart/mixed; boundary="===============0390243014591974337==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============0390243014591974337== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Ggk44vW2fZBLKK4k" Content-Disposition: inline --Ggk44vW2fZBLKK4k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 27, 2025 at 01:24:57PM -0500, Ethan Halsall wrote: > Signed-off-by: Ethan Halsall > --- > libavfilter/vf_mcdeint.c | 32 ++++++++++++++++++++++++++++---- > 1 file changed, 28 insertions(+), 4 deletions(-) >=20 > diff --git a/libavfilter/vf_mcdeint.c b/libavfilter/vf_mcdeint.c > index 82048b51d0..11ad19f5cd 100644 > --- a/libavfilter/vf_mcdeint.c > +++ b/libavfilter/vf_mcdeint.c > @@ -51,8 +51,10 @@ > #include "libavutil/opt.h" > #include "libavcodec/avcodec.h" > +#include "libavutil/pixdesc.h" > #include "avfilter.h" > #include "filters.h" > +#include "formats.h" > #include "video.h" > enum MCDeintMode { > @@ -76,6 +78,7 @@ typedef struct MCDeintContext { > AVPacket *pkt; > AVFrame *frame_dec; > AVCodecContext *enc_ctx; > + const AVPixFmtDescriptor *pix_fmt_desc; > } MCDeintContext; > #define OFFSET(x) offsetof(MCDeintContext, x) > @@ -99,6 +102,17 @@ static const AVOption mcdeint_options[] =3D { > AVFILTER_DEFINE_CLASS(mcdeint); > +static const enum AVPixelFormat pix_fmts[] =3D { > + AV_PIX_FMT_YUV420P, > + AV_PIX_FMT_YUV444P, > + AV_PIX_FMT_NONE > +}; > + Applying: add yuv444p support to mcdeint error: corrupt patch at line 18 this patch is somehow corrupted, that above is not a valid diff make sure the output of git format-patch is not modified thx [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Breaking DRM is a little like attempting to break through a door even though the window is wide open and the only thing in the house is a bunch of things you dont want and which you would get tomorrow for free anyway --Ggk44vW2fZBLKK4k Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCaDkCuwAKCRBhHseHBAsP q60OAJwOHCvq9zBomNrtG3Q5iTLN+9zKLACfeqfLXz55PW0VqTloS42FlQgefvo= =DgN7 -----END PGP SIGNATURE----- --Ggk44vW2fZBLKK4k-- --===============0390243014591974337== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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". --===============0390243014591974337==--