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 30E63483AD for ; Mon, 1 Jan 2024 15:16:37 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id AB90868CF5E; Mon, 1 Jan 2024 17:16:35 +0200 (EET) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 01DFE68CC19 for ; Mon, 1 Jan 2024 17:16:28 +0200 (EET) Received: from tutadb.w10.tutanota.de (unknown [192.168.1.10]) by w4.tutanota.de (Postfix) with ESMTP id 6541A106014E for ; Mon, 1 Jan 2024 15:16:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1704122188; 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:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=BBhMQSjVj3AcmVfOQOqCl66oj7MDZvt3q3SomNhot5I=; b=AchvKlWBfaL0EYkIIzqjWZREfU5xpTi+BQ+8C+PaEvC79v1L5g1fVdfXA8YMssRS vMiupnUK/bzL7eIWxRjvAQG9NxgKZ9a3V5zqjNMxusPeAunXwRbRP1fFcEsUmSxOKf2 ygXkjIVTNLhU5qU5npddI+NuZNt/3HRCWgYOeTWXgKoR4XHeW7aN4usqr9PB+CO+Xab y5+5z2FQdDiVvnI6VymaszExf78YSPToXDMu9Kn7mTGlDIh213DibunH1QaRCjJcz/8 sJh7ItVsKGKFTqhGhj3GjvGKVsph+Zu/WtxObZeWQ0jBv+Pq/STbAuC0XDbVpweF3Vv RMKJZtMZMw== Date: Mon, 1 Jan 2024 16:16:28 +0100 (CET) From: Lynne To: FFmpeg development discussions and patches Message-ID: In-Reply-To: References: MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH v9 00/13] Add vvc decoder 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: Jan 1, 2024, 15:13 by nuomi2021@gmail.com: > libavcodec/vvc/Makefile | 16 + > libavcodec/vvc/vvc_cabac.c | 2478 ++++++++++++++++++ > libavcodec/vvc/vvc_cabac.h | 126 + > libavcodec/vvc/vvc_ctu.c | 2491 ++++++++++++++++++ > libavcodec/vvc/vvc_ctu.h | 480 ++++ > libavcodec/vvc/vvc_data.c | 3486 ++++++++++++++++++++++++++ > libavcodec/vvc/vvc_data.h | 80 + > libavcodec/vvc/vvc_filter.c | 1332 ++++++++++ > libavcodec/vvc/vvc_filter.h | 71 + > libavcodec/vvc/vvc_filter_template.c | 1135 +++++++++ > libavcodec/vvc/vvc_inter.c | 923 +++++++ > libavcodec/vvc/vvc_inter.h | 42 + > libavcodec/vvc/vvc_inter_template.c | 1023 ++++++++ > libavcodec/vvc/vvc_intra.c | 797 ++++++ > libavcodec/vvc/vvc_intra.h | 49 + > libavcodec/vvc/vvc_intra_template.c | 1015 ++++++++ > libavcodec/vvc/vvc_itx_1d.c | 708 ++++++ > libavcodec/vvc/vvc_itx_1d.h | 52 + > libavcodec/vvc/vvc_mvs.c | 1798 +++++++++++++ > libavcodec/vvc/vvc_mvs.h | 46 + > libavcodec/vvc/vvc_ps.c | 1150 +++++++++ > libavcodec/vvc/vvc_ps.h | 263 ++ > libavcodec/vvc/vvc_refs.c | 559 +++++ > libavcodec/vvc/vvc_refs.h | 57 + > libavcodec/vvc/vvc_thread.c | 828 ++++++ > libavcodec/vvc/vvc_thread.h | 36 + > libavcodec/vvc/vvcdec.c | 1017 ++++++++ > libavcodec/vvc/vvcdec.h | 226 ++ > libavcodec/vvc/vvcdsp.c | 141 ++ > libavcodec/vvc/vvcdsp.h | 170 ++ > libavcodec/vvc/vvcdsp_template.c | 120 + > We have larger decoders than this, could you just put all files in libavodec/? _______________________________________________ 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".