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 D8DF445539 for ; Fri, 3 Mar 2023 20:32:07 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A6C4D68B9FF; Fri, 3 Mar 2023 22:32:03 +0200 (EET) Received: from mail-io1-f49.google.com (mail-io1-f49.google.com [209.85.166.49]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E7F3F689D3A for ; Fri, 3 Mar 2023 22:31:57 +0200 (EET) Received: by mail-io1-f49.google.com with SMTP id y140so1473980iof.6 for ; Fri, 03 Mar 2023 12:31:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1677875516; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=2/RYh2yoHEPifTwWTKA7JdGi+uSIer9LR7Qn+q76Bjo=; b=ekYWvG307JX+s7LYVI1G/P2o89cRiTRh+x0VNdgtdfMroIp6Xg8SR4+ebwjXHsQn/t +PsqHwqgxz+B1e9D7Som48ZICt744E5qt+S+tkXAGNiIEZkqrYI/5FVcm+HY1vFThWbG dNTab4dcrCeQlhgfSqBkHcKfYGvytYFyAMR4Wc/lMW74oihYcfrzopC/02JJ6q9m6JGG 9Z9MfpPFixjdavjLStrjivvI3EcyS6+0eX9eHoURyMJwUQHPOHfsWhFIgpiOdO6s30t+ 2qR+Tg3Wr+W54Y1+FK3pAaLGvdJGGknKTMBbjmdzW5Y/k71uDse17c8JfL5JfrtUKKfY syFg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1677875516; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=2/RYh2yoHEPifTwWTKA7JdGi+uSIer9LR7Qn+q76Bjo=; b=I2fogaQzyumocGO6/nRlXnqH+fH4CgDPpdjsIjAF2L7zTwA5P10MaPkjM8MqB2JXlu ohEWU0F1pOAwDAkBmD1tnNUE9CVhwWTJo8wKI37OegwuCG8lr5bis1juQF0/XD/7+AxY 4xTx1iT5AePWNr24xVxD39mdrBUPQka7H7qsaWc17LwbiVgRJFVfRgEfCmZ1gsigMw8+ GsMqUm/e/vLD1zLUNIHqN0Fr02ffvas5xENiAp4Y8GGxyuenVeXO+rwo95mgllDYEiWb cVCXeGQd11FIosITKatlURqnGWQKcakqx1y0PyeFBo0vRp5bVCIHT/Og1oOBteHM12zB lnHA== X-Gm-Message-State: AO0yUKVWyjfeTnQUw/aaYDEM+8mSpNqcAmp4BPDjr9dj5zfywUHoqWa6 G3lMIupMbxERNBoHphNwVz3rLxWX0uwomA== X-Google-Smtp-Source: AK7set+v8+Xh7DcNU8oKSlhyB3+hO4IVNuJWoHytZ5mjl6hWfvDxbZhswhkC2fVqfIsnG7wUT7p7Eg== X-Received: by 2002:a05:6602:3418:b0:74c:de17:fa3 with SMTP id n24-20020a056602341800b0074cde170fa3mr1856322ioz.0.1677875516147; Fri, 03 Mar 2023 12:31:56 -0800 (PST) Received: from localhost.localdomain (d-75-118-216-66.oh.cpe.breezeline.net. [75.118.216.66]) by smtp.gmail.com with ESMTPSA id a14-20020a5d958e000000b00746c45ff173sm971324ioo.5.2023.03.03.12.31.55 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Mar 2023 12:31:55 -0800 (PST) From: Leo Izen To: ffmpeg-devel@ffmpeg.org Date: Fri, 3 Mar 2023 15:31:44 -0500 Message-Id: <20230303203146.377726-1-leo.izen@gmail.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/2] JPEG XL Animation Support 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 patch adds support for animated JPEG XL files in both the libjxl decoder wrapper and a separate demuxer to properly set the timebase for it. Leo Izen (2): avcodec/libjxldec: add animated decode support avformat/jpegxl_anim_dec: add animated JPEG XL demuxer MAINTAINERS | 1 + libavcodec/libjxldec.c | 103 +++++++++---- libavcodec/version.h | 2 +- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/img2dec.c | 2 +- libavformat/jpegxl_anim_dec.c | 266 ++++++++++++++++++++++++++++++++++ libavformat/jpegxl_probe.c | 19 +-- libavformat/jpegxl_probe.h | 7 +- libavformat/version.h | 2 +- 10 files changed, 365 insertions(+), 39 deletions(-) create mode 100644 libavformat/jpegxl_anim_dec.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".