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 0F0B942341 for ; Tue, 12 Apr 2022 05:54:29 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id ED03F68B2DA; Tue, 12 Apr 2022 08:54:26 +0300 (EEST) Received: from mail-qk1-f172.google.com (mail-qk1-f172.google.com [209.85.222.172]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 1E4F468AFEB for ; Tue, 12 Apr 2022 08:54:21 +0300 (EEST) Received: by mail-qk1-f172.google.com with SMTP id b189so12955492qkf.11 for ; Mon, 11 Apr 2022 22:54:21 -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=Aweil5aFteznMJ7F7BvlqIHlY5sv0xx94Ar7l85wEm4=; b=gD0DLRrFMQV3wa4QMQsUJXR5+ZIkGGLFB4tWWGtpL63VcDsb/Yugaw51YXNvIfxest O+1T31RlGQakmI3rVEmgZoDB8+Zo63YIqeirlxKveKz8sppDyY5MdU/k/ixcmq0E2Wyy sF6l/oV0vl12xblAiP3B/5RuubRnbZkqGvzLPv06/mvjYa0xYfJhsj1+C0o9iwQ+5xiE 3da9fxqoUot+fkyZTcTRSbo6qbA/g7Cp8eGdix0SctcfNpnR7MGW3pFJY6GVk/FiaWls Dps4qerA8o/b78YUXsB2uuP8besp4zAhXs6qbGzhHuxqYaKsIwqyEy/mEeaq4TfJGB3r m0UQ== 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=Aweil5aFteznMJ7F7BvlqIHlY5sv0xx94Ar7l85wEm4=; b=uSAyeVL+H8sAd3bPcg5O45WPW87EFG5R3Gb+v4wuyxoosfeYlTEJTTry7M38SCLWcn utZvXIsBiWCChilVrGCdDUlW2ig5SQ5Vqy7KgFBzFThSuTpip6Le7IFO2/Jou31oJhnq ixw3wca8zMupYA3c8WVK+GL0ytWUQA144vrmED118A1BcMaeZJy29mql4Eoez3w47jph c8gwCi7AG4UFy7fuUDuMJ+KUTxBKmwgEkHq8CTTCyaZPgA6r5fsh+ciSp0p4YZoD7K1W UYoSb4Gi4erkquUo4rXmS1M+3CqkpdcEL582DtLAymKfXwpNTedCz1eOQbeR/XKYEJJi zjvA== X-Gm-Message-State: AOAM532bBZGUNUJgJaqskM/KRJT0cfh/Yjrk7v/b9ztfrj77opIIHmDZ th4gGb6UIwpTHjRYBShVu5CoETur+tA= X-Google-Smtp-Source: ABdhPJywyy7ff1jDskzZpmWSX4I6SgmIzloWy6964QO6u+I6JRUiTc/Lr5VOsr0D/n7OuLUVY7d/aQ== X-Received: by 2002:a37:aec7:0:b0:69b:f27b:8784 with SMTP id x190-20020a37aec7000000b0069bf27b8784mr2043192qke.464.1649742859670; Mon, 11 Apr 2022 22:54:19 -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 k2-20020a37ba02000000b0067dc1b0104asm19801988qkf.124.2022.04.11.22.54.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 11 Apr 2022 22:54:19 -0700 (PDT) From: Leo Izen To: ffmpeg-devel@ffmpeg.org Date: Tue, 12 Apr 2022 01:53:29 -0400 Message-Id: <20220412055333.62424-1-leo.izen@gmail.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v14 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: Changes: v14: - Make changes requested by Anton from v13 -- make encoder return refcounted packet -- use av_realloc for realloc loop -- use -1 as default instead of -0.0 - Remove unnecessary JXL_DEC_FRAME subscribe event from decoder - Update FFCodec declarations to use the new macros, rebase onto master 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 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 | 274 ++++++++++++++++++++++++++ libavcodec/libjxlenc.c | 382 +++++++++++++++++++++++++++++++++++ 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 + 19 files changed, 1254 insertions(+), 3 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".