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 5697E4914E for ; Sat, 3 Aug 2024 00:56:24 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0827D68D7A0; Sat, 3 Aug 2024 03:56:22 +0300 (EEST) Received: from mta-snd-e07.mail.nifty.com (mta-snd-e07.mail.nifty.com [106.153.226.39]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 99AE768D60B for ; Sat, 3 Aug 2024 03:56:13 +0300 (EEST) Received: from localhost.localdomain by mta-snd-e07.mail.nifty.com with ESMTP id <20240803005608839.SFWO.76216.localhost.localdomain@nifty.com>; Sat, 3 Aug 2024 09:56:08 +0900 From: TADANO Tokumei To: ffmpeg-devel@ffmpeg.org Date: Sat, 3 Aug 2024 09:56:00 +0900 Message-Id: <20240803005601.44246-1-aimingoff@pc.nifty.jp> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pc.nifty.jp; s=default-1th84yt82rvi; t=1722646569; bh=p0UfWNu5x41pe39xvWVNaFMTaPVrm9nws+lP1JTM9Z0=; h=From:To:Cc:Subject:Date; b=sECQWHhvKjELhVGgruu8MgvyBBbJ+CmgBV2ikJjTT7I9YeaAClx7CpNQ6J3/o+aPaV83g8SQ ogXbGQ83+NrpjRSmJOw59p5Tbx0mWOw012z2Y7dtoIUI5TIAY2b5W7haI6MKrhoYHmMY7jJnDV W6iPN3eXVvraVKZjfoXYeTxrm14iGigUcDP2R22hrrf/u0agphaV4ggo2Ub9CeHfIGNpgxKZRA oWTbcgwrxGyYw8pB3EsS3N98dYBzAewcr4p6gS/OtuiH+xk+4lwwfz7oanCvkuIKcbaourlTIx jf/wWyImm8zBzj0h7lMYgANVa+7z49dlUs+6DwkX/scFK+1w== Subject: [FFmpeg-devel] [PATCH v4 0/1] lavfi/vf_gopromax_opencl: add GoPor Max 360 video filter 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 Cc: TADANO Tokumei 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: This is updated patch of: https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=3943 I contacted to Ronan LE MEILLAT and agreed with him to submit new patch. Abstruct of GoPro Max .360 video file format is described in: https://gopro.com/news/max-tech-specs-stitching-resolution The specification is little bit buggy. The format is based on EAC (Equi-Angular Cubemap), and there are overlapped pixels at boundaries of front and rear cams. Probably, the desinger intended to add 2 x 32 (= total 64) ovelapped pixels. But actual format has 2 x 64 pixels overlapped area. Thus the width will be 2 x 32 pixels shorter than standard EAC format after blending overlapped area. This filter blends overlapped area, stretches the width of the cube, and combine two streams into single stream with standard format. v3: modifies `configure` file to add dependency on opencl. v4: fix small difference from v360 filter in xyz_to_eac() TADANO Tokumei (1): lavfi/vf_gopromax_opencl: add GoPro Max 360 video filter configure | 1 + doc/filters.texi | 78 +++++++ libavfilter/Makefile | 2 + libavfilter/allfilters.c | 1 + libavfilter/opencl/gopromax.cl | 282 +++++++++++++++++++++++++ libavfilter/opencl_source.h | 1 + libavfilter/vf_gopromax_opencl.c | 351 +++++++++++++++++++++++++++++++ 7 files changed, 716 insertions(+) create mode 100644 libavfilter/opencl/gopromax.cl create mode 100644 libavfilter/vf_gopromax_opencl.c -- 2.39.2 _______________________________________________ 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".