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 D880A48CF3 for ; Fri, 23 Feb 2024 19:08:07 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 20EEB68C5C8; Fri, 23 Feb 2024 21:08:05 +0200 (EET) Received: from relay1-d.mail.gandi.net (relay1-d.mail.gandi.net [217.70.183.193]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 2F0D768007C for ; Fri, 23 Feb 2024 21:07:58 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 0D05A240003 for ; Fri, 23 Feb 2024 19:07:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1708715278; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=j4GRjwQJ+JXj+pid/VypKDCIglBt0ONWB6xI4MwJOdY=; b=ZeWVxMZMpaxg8A6RoLxHwn61+Z9U8LBApL8ly23jEuj8s46V8xqkJxxfSHgB7ORc9QvQvS XXRUtW9cSC7hzWGr6WG5xfrc/oWszvmFlkx0Vhw8zTN0Z1fypDWjZ7c+Hx5zx653cXOQnl J2xt4JVuCLuC89m1i8ojPg095OzkymHDSiMSPUMZwTk34HMqEB5CjiURXzelU71qQK76T0 cPgGL+4qAC8YglJTIM8j6g6QNyS6oCzVy2eTT5DSgoFB1OJ7UGbDTwG4XDDp9CmFTw1GUO wU6GoZ1H5pJYkQuoA4PSUij2+K/s6jLeNSD/CJbS2ED3ZlbNEDlbEXlryItZ+g== Date: Fri, 23 Feb 2024 20:07:57 +0100 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20240223190757.GH6420@pb2> References: <20240222010922.67688-1-connorbworley@gmail.com> MIME-Version: 1.0 In-Reply-To: <20240222010922.67688-1-connorbworley@gmail.com> X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH v3 1/2] lavu/hashtable: create generic robin hood hash table 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="===============9060709024474706772==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============9060709024474706772== Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="YUPB13a/DkXY1s02" Content-Disposition: inline --YUPB13a/DkXY1s02 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 21, 2024 at 05:09:21PM -0800, Connor Worley wrote: > Signed-off-by: Connor Worley > --- > libavutil/Makefile | 2 + > libavutil/hashtable.c | 192 ++++++++++++++++++++++++++++++++++++ > libavutil/hashtable.h | 40 ++++++++ > libavutil/tests/hashtable.c | 108 ++++++++++++++++++++ > 4 files changed, 342 insertions(+) > create mode 100644 libavutil/hashtable.c > create mode 100644 libavutil/hashtable.h > create mode 100644 libavutil/tests/hashtable.c breaks make testprogs CC libavutil/tests/hashtable.o libavutil/tests/hashtable.c: In function =E2=80=98main=E2=80=99: libavutil/tests/hashtable.c:28:5: error: unknown type name =E2=80=98uint8_t= =E2=80=99; did you mean =E2=80=98u_int8_t=E2=80=99? uint8_t k; ^~~~~~~ u_int8_t libavutil/tests/hashtable.c:29:5: error: unknown type name =E2=80=98uint64_= t=E2=80=99; did you mean =E2=80=98u_int64_t=E2=80=99? uint64_t v; ^~~~~~~~ u_int64_t ffbuild/common.mak:81: recipe for target 'libavutil/tests/hashtable.o' fail= ed make: *** [libavutil/tests/hashtable.o] Error 1 [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If you drop bombs on a foreign country and kill a hundred thousand innocent people, expect your government to call the consequence "unprovoked inhuman terrorist attacks" and use it to justify dropping more bombs and killing more people. The technology changed, the idea is old. --YUPB13a/DkXY1s02 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEIAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZdjtBgAKCRBhHseHBAsP q58cAJ0aRcbo8xIHYq+jUmmefMJJjAQD9wCgiWv3Rsygqc4+SqUCxaA4TzvCz0A= =CnEC -----END PGP SIGNATURE----- --YUPB13a/DkXY1s02-- --===============9060709024474706772== 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". --===============9060709024474706772==--