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 F3F034086E for ; Sat, 2 Apr 2022 20:12:50 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id EC0AE68B1D4; Sat, 2 Apr 2022 23:12:47 +0300 (EEST) Received: from mail-qv1-f47.google.com (mail-qv1-f47.google.com [209.85.219.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4EC6468A70F for ; Sat, 2 Apr 2022 23:12:41 +0300 (EEST) Received: by mail-qv1-f47.google.com with SMTP id a5so4590602qvx.1 for ; Sat, 02 Apr 2022 13:12:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=mrEAkxnZfjupTKM4ZlgR+gOTizSHLwS1crwa3IvLd/Q=; b=HZKqWf3CY066J/eIW+qKBNJxFpPfLkNl80O3xDHYMMpiM8+sANBlzP1VFqfsSRISjb sZOwjY/bpBKdOf9LRMQ4wNX0aSvZClHGDG8ScUiGucUpgOxzawDX49L2QjHeUhg5BC2h mffPmKfmn8cXVcDk6X7VkzCkJMtepUk7h4PJaXfSXlsgjFZm0BylZnLeyoGYlFx/5AXU OjtYEIEBnryvzCTeowUnAPRKvAJWqIAIJIzcrv1nbABGutwRcm6ycjQKGzN7Yxy6dIyu dY/loDO2yiVYLdMYBdcMr8WaGTweg40uPKBhPLm9/Qewo2WKgCZpytdWPNIDitsqK7vL BraA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=mrEAkxnZfjupTKM4ZlgR+gOTizSHLwS1crwa3IvLd/Q=; b=TWuQ0VjVv1J6diq0I4X5HFU4sOjAOLHuYEuTr3RDBhGzI7w4eN4JM6rhC9r922QImE FWWEhozt6tNMk82CRC1CYicypVv96fTmKAmQNmEydEL5OD8zrlyhN4h8Tz1O2DtyFFaq jR27baQTrWbg1pMNyUnzpCGnVBWqrALegY7GVLu1eVTK19RWKWGLU7b6MY0WlU7CaJUm uh7ifbhwRg5SChu6esgDhTrBStdHm/8HXqGDFoHmQWzAOlRnkM7Mw6QZWYFHDC/drNsr G4RF5v7TqQmULDYblh0Pzs2i8Tz5pqJ7MvJPGR42HD8wA956DB34ocGwMTRivoq9jb/X z+0A== X-Gm-Message-State: AOAM533K//SrrFC4Why2yqObB5mmEuZKs7E6Utwj1wADnb+h94CE7PRI g7CzznUNUAr8K6L8KoetpygzlQXnlDg= X-Google-Smtp-Source: ABdhPJw0S8jz5OH0RrqyhgfdfngByyzJHlnA4Cb/MX//DGxT+oIgaBMqD27rnvhKri23et4BpOf1yQ== X-Received: by 2002:ad4:5b89:0:b0:441:6e09:dbeb with SMTP id 9-20020ad45b89000000b004416e09dbebmr42845865qvp.53.1648930359735; Sat, 02 Apr 2022 13:12:39 -0700 (PDT) Received: from gauss.local (c-68-41-54-207.hsd1.mi.comcast.net. [68.41.54.207]) by smtp.gmail.com with ESMTPSA id h14-20020a05622a170e00b002e1a65754d8sm4743937qtk.91.2022.04.02.13.12.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 02 Apr 2022 13:12:39 -0700 (PDT) From: Leo Izen To: ffmpeg-devel@ffmpeg.org Date: Sat, 2 Apr 2022 16:12:06 -0400 Message-Id: <20220402201210.86308-1-leo.izen@gmail.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v12 0/4] Jpeg XL Patch Set 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: Leo Izen 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 patchset adds the Jpeg XL Image format as well as a decoder and encoder for it based on the external reference implementation library, libjxl. Lynne said she plans to add a proper parser in the near future, to provide features this (removed) one did not, e.g. finding frame boundaries and box concatenation. Changes: v12: - Remove the parser in order to avoid avpriv in the ABI - Add a lightweight version of it to avformat to help the prober - Remove the FATE test for the parser which no longer exists v11: - Fix regression I introduced in v10 with skipping boxes v10: - Make changes requested by Andreas Reinhardt from v9 v9: - v8 with a typo fix v8: - v7, but with stylistic changes as requested by Lynne and others on IRC v7: - Fully implement the parser and test it against the conformance samples Leo Izen (4): avcodec/jpegxl: add Jpeg XL image codec avcodec/libjxl: add Jpeg XL decoding via libjxl avcodec/libjxl: add Jpeg XL encoding via libjxl avformat/image2: add Jpeg XL as image2 format MAINTAINERS | 3 + configure | 6 + doc/general_contents.texi | 7 + libavcodec/Makefile | 2 + libavcodec/allcodecs.c | 2 + libavcodec/codec_desc.c | 9 + libavcodec/codec_id.h | 1 + libavcodec/libjxl.c | 70 +++++++ libavcodec/libjxl.h | 48 +++++ libavcodec/libjxldec.c | 301 ++++++++++++++++++++++++++++ libavcodec/libjxlenc.c | 379 +++++++++++++++++++++++++++++++++++ libavcodec/version.h | 2 +- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/img2.c | 1 + libavformat/img2dec.c | 18 ++ libavformat/img2enc.c | 6 +- libavformat/jpegxl_probe.c | 393 +++++++++++++++++++++++++++++++++++++ libavformat/jpegxl_probe.h | 32 +++ libavformat/mov.c | 1 + libavformat/version.h | 4 +- 21 files changed, 1281 insertions(+), 6 deletions(-) create mode 100644 libavcodec/libjxl.c create mode 100644 libavcodec/libjxl.h create mode 100644 libavcodec/libjxldec.c create mode 100644 libavcodec/libjxlenc.c create mode 100644 libavformat/jpegxl_probe.c create mode 100644 libavformat/jpegxl_probe.h -- 2.35.1 _______________________________________________ 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".