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 0845F4B8ED for ; Tue, 18 Jun 2024 21:23:12 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 952D568D66B; Wed, 19 Jun 2024 00:23:08 +0300 (EEST) 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 2877E68CD10 for ; Wed, 19 Jun 2024 00:23:02 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 54DCB240003 for ; Tue, 18 Jun 2024 21:23:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1718745781; 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=mS0KlYZor1IgAr2zJpIwE/Z7Yz9dxXpaR6jVZvf62m0=; b=TZq0ffpd6cnY8TgSN/6kWQNw2MuXwnrwdV5MfdJ7LIHd1aoT7r8qWWlqawOdAWkTP8NvkW cx538NF+t5OS+e1GZ43dch3rVe+f6Aj/uzdbw+/gf/jmmSsGeI0tLdMi/vmvWzV61fNIw6 P9oXUe5gKxNlR8Vy7f7HpXfVnA/oEAoHHFDuUyvw2ImKCJtaeyVpKD9n9YQLz5RlyUj1X6 E/EJprVgCoCs2UTo+7liJQTQpCCMRgo9hRj8b//+XnduHMvqN++sm02MOU+Pdy4snM+nIk 59DpHl9LlRQMMbzSqPwvDe5GfcA8X+N5xkueLY85zi2ne4hnAYy4fs+cldIfJA== Date: Tue, 18 Jun 2024 23:23:00 +0200 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20240618212300.GI4991@pb2> References: <20240616170006.2180-1-jamrial@gmail.com> MIME-Version: 1.0 In-Reply-To: <20240616170006.2180-1-jamrial@gmail.com> X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH] avformat: split off generic NAL function helpers into their own file 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="===============1009979563158714561==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============1009979563158714561== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="+PbGPm1eXpwOoWkI" Content-Disposition: inline --+PbGPm1eXpwOoWkI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jun 16, 2024 at 02:00:06PM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libavformat/Makefile | 2 +- > libavformat/avc.c | 164 +--------------------------- > libavformat/avc.h | 37 ------- > libavformat/flvenc.c | 3 +- > libavformat/hevc.c | 7 +- > libavformat/hlsenc.c | 1 + > libavformat/matroskaenc.c | 1 + > libavformat/movenc.c | 5 +- > libavformat/movenccenc.c | 5 +- > libavformat/mxfenc.c | 3 +- > libavformat/nal.c | 190 +++++++++++++++++++++++++++++++++ > libavformat/nal.h | 66 ++++++++++++ > libavformat/rtpenc_h264_hevc.c | 9 +- > libavformat/sdp.c | 5 +- > libavformat/vvc.c | 7 +- > 15 files changed, 287 insertions(+), 218 deletions(-) > create mode 100644 libavformat/nal.c > create mode 100644 libavformat/nal.h TEST source --- ./tests/ref/fate/source 2024-06-16 09:48:55.353888202 +0200 +++ tests/data/fate/source 2024-06-18 23:22:19.071495178 +0200 @@ -25,6 +25,7 @@ compat/float/float.h compat/float/limits.h libavcodec/bitstream_template.h +libavformat/nal.h tools/decode_simple.h Use of av_clip() where av_clip_uintp2() could be used: Use of av_clip() where av_clip_intp2() could be used: [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No snowflake in an avalanche ever feels responsible. -- Voltaire --+PbGPm1eXpwOoWkI Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZnH6tAAKCRBhHseHBAsP q8TtAKCFFYrYX6I/XEGG4qgUD3Ev6zGOIACcCyycRopgbzFTMLtz0XzbyGD4+iM= =JxgO -----END PGP SIGNATURE----- --+PbGPm1eXpwOoWkI-- --===============1009979563158714561== 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". --===============1009979563158714561==--