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 6360C494A7 for ; Sun, 11 Feb 2024 22:14:22 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 40DAD68D06A; Mon, 12 Feb 2024 00:14:20 +0200 (EET) Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 1848F68C7BB for ; Mon, 12 Feb 2024 00:14:14 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 67C0A1BF203 for ; Sun, 11 Feb 2024 22:14:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1707689653; 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=j3ObKHvrNppbWMPGe2Ykujux7iDNwW6ah2oHqnmXE0M=; b=HbhG2BEQTof2/udiEysxXxvOFvJtm2cIdjKdA1DTZIfnfPqb6915dYVqcK0L6KhwQLMG/j D4og/Q+uyYrmUIgrkwU54WNtPgM+bqd6M396a1ctn7MVPZzDRFQy40CVeG0zL80ATB6Uke ae5HXk+O9eN3GfeTKMgpU/y08koeRqSRw8kW0/tjlYCjKfGDLhoqI7dUuhKMgNUCglUShi trTdOS2KQm0lofHlufr/rXvzNciohUZnpB1Am0p9wquom6n+UkTdGsHdA7cV8ZPrO3dX+Z P77OmSCnREbt9Lz1AXBeDuLI2CuHY3zGYRyI9PHysPh0KFUQJn+0TqBZjWb0Zw== Date: Sun, 11 Feb 2024 23:14:12 +0100 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20240211221412.GX6420@pb2> References: <20240211185701.9327-1-jamrial@gmail.com> <20240211185701.9327-2-jamrial@gmail.com> <20240211204117.GW6420@pb2> <441254d0-a01d-4791-b251-34708999ab48@gmail.com> MIME-Version: 1.0 In-Reply-To: <441254d0-a01d-4791-b251-34708999ab48@gmail.com> X-GND-Sasl: michael@niedermayer.cc Subject: Re: [FFmpeg-devel] [PATCH 2/4 v8] avformat/mov: add support for tile HEIF still images 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="===============6202223807386804871==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============6202223807386804871== Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="5efyMEpgkyYbKafd" Content-Disposition: inline --5efyMEpgkyYbKafd Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Feb 11, 2024 at 06:10:06PM -0300, James Almer wrote: > On 2/11/2024 6:08 PM, James Almer wrote: > > On 2/11/2024 5:41 PM, Michael Niedermayer wrote: > > > On Sun, Feb 11, 2024 at 03:56:59PM -0300, James Almer wrote: > > > > Export tiles as streams, and the grid information as a Stream > > > > Group of type > > > > TILE_GRID. > > > > This also enables exporting other stream items like thumbnails, > > > > which may be > > > > present in non tiled HEIF images too. > > > >=20 > > > > Based on a patch by Swaraj Hota > > > >=20 > > > > Signed-off-by: James Almer > > > > --- > > > > =A0 libavformat/avformat.c |=A0=A0 8 + > > > > =A0 libavformat/avformat.h |=A0=A0 6 + > > > > =A0 libavformat/dump.c=A0=A0=A0=A0 |=A0=A0 2 + > > > > =A0 libavformat/internal.h |=A0=A0 5 + > > > > =A0 libavformat/isom.h=A0=A0=A0=A0 |=A0 16 +- > > > > =A0 libavformat/mov.c=A0=A0=A0=A0=A0 | 492 ++++++++++++++++++++++++= +++++++++++++---- > > > > =A0 6 files changed, 484 insertions(+), 45 deletions(-) > > >=20 > > > git dislikes this: > > >=20 > > > git am -3 > > >=20 > > > Applying: avformat/mov: add support for tile HEIF still images > > > error: sha1 information is lacking or useless (libavformat/avformat.c= ). > > > error: could not build fake ancestor > > > Patch failed at 0001 avformat/mov: add support for tile HEIF still im= ages > > > Use 'git am --show-current-patch' to see the failed patch > > > When you have resolved this problem, run "git am --continue". > > > If you prefer to skip this patch, run "git am --skip" instead. > > > To restore the original branch and stop patching, run "git am --abort= ". > >=20 > > I can't reproduce this. Tried to apply the patches as sent to the ml and > > they still apply. >=20 > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=3D10765 shows no > issues. > I also pushed it to https://github.com/jamrial/FFmpeg/commits/heif_new/ so > you can test it. It seems this was caused by prior applied patches thx [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Old school: Use the lowest level language in which you can solve the problem conveniently. New school: Use the highest level language in which the latest supercomputer can solve the problem without the user falling asleep waiting. --5efyMEpgkyYbKafd Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEIAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCZclGrgAKCRBhHseHBAsP q06uAKCRyUi3qBwcTt4fNd5azp/0KUHCeQCggVdCg6jrsIX3uMnTHRPyeCf0b40= =o1gR -----END PGP SIGNATURE----- --5efyMEpgkyYbKafd-- --===============6202223807386804871== 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". --===============6202223807386804871==--