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 0FDF746707 for ; Sat, 8 Jul 2023 21:41:46 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7A41968C599; Sun, 9 Jul 2023 00:41:43 +0300 (EEST) Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3E4A568C418 for ; Sun, 9 Jul 2023 00:41:37 +0300 (EEST) X-GND-Sasl: michael@niedermayer.cc Received: by mail.gandi.net (Postfix) with ESMTPSA id A8711C0002 for ; Sat, 8 Jul 2023 21:41:36 +0000 (UTC) Date: Sat, 8 Jul 2023 23:41:35 +0200 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20230708214135.GA1093384@pb2> References: <20230707140540.10279-1-nuomi2021@gmail.com> MIME-Version: 1.0 In-Reply-To: Subject: Re: [FFmpeg-devel] [PATCH v2 13/14] vvcdec: add CTU thread logical 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="===============3137835110394238501==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============3137835110394238501== Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="Jsn5+Lu/ZvzbAGtZ" Content-Disposition: inline --Jsn5+Lu/ZvzbAGtZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 07, 2023 at 10:05:39PM +0800, Nuo Mi wrote: > This is the main entry point for the CTU (Coding Tree Unit) decoder. > The code will divide the CTU decoder into several stages. > It will check the stage dependencies and run the stage decoder. > --- > libavcodec/vvc/Makefile | 3 +- > libavcodec/vvc/vvc_thread.c | 804 ++++++++++++++++++++++++++++++++++++ > libavcodec/vvc/vvc_thread.h | 73 ++++ > 3 files changed, 879 insertions(+), 1 deletion(-) > create mode 100644 libavcodec/vvc/vvc_thread.c > create mode 100644 libavcodec/vvc/vvc_thread.h seems not to build with enable-shared src/libavcodec/vvc/vvc_thread.c:235:9: error: address argument to atomic op= eration must be a pointer to non-const _Atomic type ('const atomic_int *' (= aka 'const _Atomic(int) *') invalid) if (atomic_load(&ft->ret)) ^ ~~~~~~~~ /usr/lib/llvm-6.0/lib/clang/6.0.0/include/stdatomic.h:134:29: note: expande= d from macro 'atomic_load' #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) ^ ~~~~~~ 1 error generated. src/ffbuild/common.mak:81: recipe for target 'libavcodec/vvc/vvc_thread.o' = failed make: *** [libavcodec/vvc/vvc_thread.o] Error 1 make: *** Waiting for unfinished jobs.... [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Everything should be made as simple as possible, but not simpler. -- Albert Einstein --Jsn5+Lu/ZvzbAGtZ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEIAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZKnYCwAKCRBhHseHBAsP q3g6AJ9Ll0b6qsmBxw4L8OBeTbfvgWcrswCcCEzIqNfLmuC0bd+MYE+9N7M0rIU= =Asju -----END PGP SIGNATURE----- --Jsn5+Lu/ZvzbAGtZ-- --===============3137835110394238501== 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". --===============3137835110394238501==--