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 5D781428C1 for ; Tue, 5 Apr 2022 16:55:38 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3EB2168B0DB; Tue, 5 Apr 2022 19:55:35 +0300 (EEST) Received: from mail-qv1-f43.google.com (mail-qv1-f43.google.com [209.85.219.43]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E41A068A43A for ; Tue, 5 Apr 2022 19:55:28 +0300 (EEST) Received: by mail-qv1-f43.google.com with SMTP id kd21so2744qvb.6 for ; Tue, 05 Apr 2022 09:55:28 -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=7Di1Au1SU7agaP3kjy5XxbEr3hrBZldYqV6Rib9akT0=; b=ITuzp7KXh4L6vXEfOIhKJfyWQI+7EwagU6D097gyS3/iKnLq5ZhQSUqpuroVdOLc6e w1baBcX4H75c+cA6nfh7UoPGNaDLCXgyv2MtJZfBdcYYGwJRHt0B/5o9K7ehtJ5ELhjV UVfpzHEbixmOqc+Ni8ezqvCGVIfOzHFO6ff6YvzZBKL6RQhPXLSeCcDO/zOyOOrDUF9q bh0IblnxQYTbDP3Rh46otpMpQG2Ca+w+SaV63jgtz69PrEi75UNqgW9XtwR2coz91hsR UszlGypa518OPuGe6Yjb1tFfdJaj/plgKy9bnv4ANko2eByzG8l+9BIuIY6+haoqowBL xyGA== 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=7Di1Au1SU7agaP3kjy5XxbEr3hrBZldYqV6Rib9akT0=; b=ERFXhE9A9imROqRqAb3ky2RXYJt5LNPsv3EMY9vw/pAjhVAszwywYcqyalcdSZLCiL brFGbVXKmzKR/4HclfcedcqoHaSwjqsavpd469HIPNe5jyk984FP2uJWs2tIRza5BwqY vjgtDewhkNNaw0MpAdS3P1wEMAjmr1yHGc/vVh5LX3YLBBF2ZUub6+8KfLRB6dYJsFwG wUSDQ2AGnP0V7we6tigYfi3xKqK6U7caZuZpkpSaO7u0GFN/o2bq+ZdNo5gjUfHlCZDz 1rNWef0NouT3qzEqds8xEeIi4R7GFdM1znZpUHp7XHcbinuAKi+8+m1qW6edDQP4W7cC QdNw== X-Gm-Message-State: AOAM531CGWecIb5DkmjnSdxTWh16w1LJ/S2TKvsv8xb980zisKhBV56w ypTSftJ4kmiKaRqaszzNdul6A9GHwqo= X-Google-Smtp-Source: ABdhPJz6RHIk7B4T3pLrMxhkLhJjvOX0M61pw5zH7AI6wWN7heTU/Ki/mxanJHsAWOWzyEQerVLr2g== X-Received: by 2002:a05:6214:4101:b0:441:47e5:c718 with SMTP id kc1-20020a056214410100b0044147e5c718mr3748164qvb.12.1649177727638; Tue, 05 Apr 2022 09:55:27 -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 bk15-20020a05620a1a0f00b0067e5bd7a9ccsm8332532qkb.50.2022.04.05.09.55.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 05 Apr 2022 09:55:27 -0700 (PDT) From: Leo Izen To: ffmpeg-devel@ffmpeg.org Date: Tue, 5 Apr 2022 12:55:00 -0400 Message-Id: <20220405165504.29261-1-leo.izen@gmail.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v13 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. Changes: v13: - Make changes requested by Anton and Andreas from v12 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 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 | 276 ++++++++++++++++++++++++++ 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, 1256 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".