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 614C3479F4 for ; Thu, 28 Sep 2023 23:26:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1D6C368CBDD; Fri, 29 Sep 2023 02:26:51 +0300 (EEST) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id C73DE68CB78 for ; Fri, 29 Sep 2023 02:26:44 +0300 (EEST) Received: from tutadb.w10.tutanota.de (unknown [192.168.1.10]) by w4.tutanota.de (Postfix) with ESMTP id 24DD610602D1; Thu, 28 Sep 2023 23:26:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1695943603; s=s1; d=lynne.ee; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=eIitpES0NbUIk1tE2LDFRlk6WdqRY0dXO+2bbluAO54=; b=nIEIpqablJHUzPY18XZKbEtUOhxuSWvy2YEBxOB0qhBUqp3iBGGKdzyAeL0NxkMl FT/ew6qZ2OIFQcs1Hr4LHlBrKDV+KtD35FFqMTdj+e9Gn7XSflNe4kYVK5qKIgrmC8i zZsGeUUzMNKo2+q6jM7dCjvAGc30KKeb9IXcS7FtLJ56Z086SZ3ziagkEydSbMKt6oM GwrYPomPSQRJ/1EuAECu4NhiApQ7q15Lws0xhrAnzilfRPBODJu7lulFVUwmoGZqIgo 5py6R07mv0ze7MxzSJw3bVQjjwQFuvOiab5U7pFBv7bKPOwRYIIE0rl2kL4NNiciwZb iQnHNP8LJw== Date: Fri, 29 Sep 2023 01:26:43 +0200 (CEST) From: Lynne To: FFmpeg development discussions and patches Cc: Ffmpeg Devel Message-ID: In-Reply-To: References: MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH 01/14] configure: Remove obsolete wmavoice->rdft, dct dependencies 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: Sep 29, 2023, 00:10 by andreas.rheinhardt@outlook.com: > Lynne: > >> Sep 28, 2023, 23:40 by andreas.rheinhardt@outlook.com: >> >>> Andreas Rheinhardt: >>> >>>> Forgotten in a810126501e1ef0992d765720ff0d2629c5d1616. >>>> >>>> Signed-off-by: Andreas Rheinhardt >>>> --- >>>> configure | 2 +- >>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>> >>>> diff --git a/configure b/configure >>>> index e1afcaa586..762311ae51 100755 >>>> --- a/configure >>>> +++ b/configure >>>> @@ -3033,7 +3033,7 @@ wmav1_decoder_select="sinewin wma_freqs" >>>> wmav1_encoder_select="sinewin wma_freqs" >>>> wmav2_decoder_select="sinewin wma_freqs" >>>> wmav2_encoder_select="sinewin wma_freqs" >>>> -wmavoice_decoder_select="lsp rdft dct sinewin" >>>> +wmavoice_decoder_select="lsp sinewin" >>>> wmv1_decoder_select="msmpeg4dec" >>>> wmv1_encoder_select="msmpeg4enc" >>>> wmv2_decoder_select="blockdsp error_resilience idctdsp intrax8 msmpeg4dec videodsp wmv2dsp" >>>> >>> >>> Unfortunately, patch #5 from this set (the main one) has been rejected >>> by the mailing list as spam. It is here: >>> https://github.com/mkver/FFmpeg/commit/e0ad224d4ccd293617c75a8ba6f5e2cda78b7c56 >>> and a branch for these patches is here: >>> https://github.com/mkver/FFmpeg/commits/fft >>> >> >> Would you mind awfully letting me be the author on this one? I already had a >> patch, but then I got swept up switching mpegaudiodsp to lavu/tx, doing >> a better 32-point DCT, and Cooley-Tukey, and VDD, and I forgot to send it. >> Would just be nice to see after working on lavu/tx for 4 years now. >> > > If you have a patch, why don't you send it now? There is really no need > for this code to be recompiled and relinked all the time? > Your patch is pretty much what my patches did, except you wrap dct32, while I get rid of it, and I also did it one component at a time rather than getting rid of all of it at once. I have no objection with the way this is done either way. I'd just like some credit for deleting something I spent years researching and replacing. After all, it's easy to remove entire files at once and being first, but less so figuring out how to write fast and reasonably small DCT-I/DST-I transforms. _______________________________________________ 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".