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 A228B46D15 for ; Mon, 6 May 2024 05:47:30 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 04ACE68D5D3; Mon, 6 May 2024 08:47:28 +0300 (EEST) Received: from mail-4323.proton.ch (mail-4323.proton.ch [185.70.43.23]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id DC4AD68D516 for ; Mon, 6 May 2024 08:47:20 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marcusspencer.xyz; s=protonmail; t=1714974440; x=1715233640; bh=NsH1r0aa+lPXqvdQ9wXPq2pN4fwhsu0ko4vEn64TMUY=; h=Date:To:From:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=DX5GJLbgNMgF9n+durchlt1etxgNwSydIi9TYQGC8pN9KhJGuO0eqmA33jTjVJBHr aEPdUww1aDlkzZwB+F3KiZyGsQHpmT/yQDlZnbzavmxzdgxQTWkJv8sEJc4rNHJU8G Ydt89bumq/wxyKiAEAP5XvB7QU+0TO362eBZospmUgiLxookVODhzFuOHfG9m1rqFn vyBRAArHlFtz72AEKYmA10d+0GNegzqb0v8JhCB/NYpp+9HEo8SiB32kfUM5rFZ12b kby1F5smzNxkFc+vfy3B8pGVns3fQE/1Z50vOh8RS4uEIznGXQ0gvYGk/a934PzA3F b7InTz3qw676g== Date: Mon, 06 May 2024 05:47:15 +0000 To: ffmpeg-devel@ffmpeg.org From: marcus Message-ID: <3JkleGFevpj3DNOKN3i7saQmj-Th6-DRyPHTigdDPxTWfHqgO1GhpCIXalT6QpL_GAZxfSpDfW3D3LhZ6CtXRDiotVqBq0Nk3LUToHnLCvU=@marcusspencer.xyz> In-Reply-To: <20240506053219.216068-2-marcus@marcusspencer.xyz> References: <20240506053219.216068-1-marcus@marcusspencer.xyz> <20240506053219.216068-2-marcus@marcusspencer.xyz> Feedback-ID: 34157397:user:proton X-Pm-Message-ID: f9e2835e389a03c206d132844ced9ebad479bf69 MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH 2/2] Changelog: add datamosh bitstream filter entry 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: 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: This pull request has issues with unrelated changes being put in here due to a history change failure. Reject it. On Monday, May 6th, 2024 at 12:32 AM, Marcus B Spencer wrote: > > > Signed-off-by: Marcus B Spencer marcus@marcusspencer.xyz > > --- > Changelog | 2 +- > libavcodec/bsf/datamosh.c | 8 ++++++++ > 2 files changed, 9 insertions(+), 1 deletion(-) > > diff --git a/Changelog b/Changelog > index e827208439..decfc4e4bb 100644 > --- a/Changelog > +++ b/Changelog > @@ -9,7 +9,7 @@ version : > > - pad_vaapi, drawbox_vaapi filters > - vf_scale supports secondary ref input and framesync options > - vf_scale2ref deprecated > - > +- datamosh bitstream filter > > version 7.0: > - DXV DXT1 encoder > diff --git a/libavcodec/bsf/datamosh.c b/libavcodec/bsf/datamosh.c > index 8314a4efc8..dad65e957d 100644 > --- a/libavcodec/bsf/datamosh.c > +++ b/libavcodec/bsf/datamosh.c > @@ -86,3 +86,11 @@ static const AVClass datamosh_class = { > .option = options, > .version = LIBAVUTIL_VERSION_INT, > }; > + > +const FFBitStreamFilter ff_datamosh_bsf = { > + .p.name = "datamosh", > + .p.priv_class = &datamosh_class, > + .priv_data_size = sizeof(DatamoshContext), > + .init = datamosh_init, > + .filter = datamosh, > +}; > -- > 2.45.0 _______________________________________________ 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".