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 C802840180 for ; Thu, 3 Nov 2022 15:57:35 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id F287B68BFB3; Thu, 3 Nov 2022 17:57:33 +0200 (EET) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 26BC568BD0C for ; Thu, 3 Nov 2022 17:57:28 +0200 (EET) Received: from tutadb.w10.tutanota.de (unknown [192.168.1.10]) by w4.tutanota.de (Postfix) with ESMTP id BED8610602F0 for ; Thu, 3 Nov 2022 15:57:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1667491047; 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=PGgEs0Iq0UBHSdqLZ/i5TzwkvaLI9bxcacArE5LbDLg=; b=vPPIa5pio9GMfYxpm6COL8i5uJdMc4tOxyliFqW+cEMVwH908REJaJcXJGQu/0Ug 8l+9npKdrg7UPClBEIeiWdE/7uZ+HfhVEtALqDZC4qhFtSrrchXyGdkg5aIIezNc/YL meXN4O5PzwfZpukCwRj6vMTZ02a9zEb4reIhPWysnSqDmIJCyk3mnInSdQnBG9Axuzy B8EMVHh4vaFghWGV6q50JlPOnLr3/oZvQA1FeW0utGzlcZHCxKtBTV1n/u/A4pjOTBp mp+KbuCiUKrQwav9nwmegq0nvxK3MHWaaogvpNsM1qHuCTd216CU2HbIWvr1W68a6p1 Afdo1fVuSQ== Date: Thu, 3 Nov 2022 16:57:27 +0100 (CET) From: Lynne To: FFmpeg development discussions and patches Message-ID: In-Reply-To: <20221103122158.27169-3-thomas.ff@spin-digital.com> References: <20221103122158.27169-1-thomas.ff@spin-digital.com> <20221103122158.27169-3-thomas.ff@spin-digital.com> MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH v3 02/10] avcodec: add cbs for H266/VVC 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: Nov 3, 2022, 13:21 by thomas.ff@spin-digital.com: > Add CodedBitstreamContext to parse VPS,SPS,PPS in VVC nal units. > Implement parsing and writing of SPS,PPS,VPS,PH,AUD,SEI and slices. > Add ff_cbs_type_h266 to cbs types tables and AV_CODEC_ID_H266 > to cbs codec ids. > > Signed-off-by: Thomas Siedel <> thomas.ff@spin-digital.com> > > --- > libavcodec/cbs.c | 6 + > libavcodec/cbs_h2645.c | 373 ++- > libavcodec/cbs_h266.h | 791 +++++++ > libavcodec/cbs_h266_syntax_template.c | 3010 +++++++++++++++++++++++++ > libavcodec/cbs_internal.h | 1 + > libavcodec/cbs_sei.c | 29 + > 6 files changed, 4208 insertions(+), 2 deletions(-) > create mode 100644 libavcodec/cbs_h266.h > create mode 100644 libavcodec/cbs_h266_syntax_template.c > Can't this be integrated with libavcodec/cbs_h2645.c? _______________________________________________ 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".