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 351AA482A7 for ; Thu, 21 Dec 2023 08:01:32 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9586068D0DB; Thu, 21 Dec 2023 10:01:29 +0200 (EET) Received: from shout02.mail.de (shout02.mail.de [62.201.172.25]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6F7B468C996 for ; Thu, 21 Dec 2023 10:01:23 +0200 (EET) Received: from postfix02.mail.de (postfix02.bt.mail.de [10.0.121.126]) by shout02.mail.de (Postfix) with ESMTP id C7F47240DD5 for ; Thu, 21 Dec 2023 09:01:22 +0100 (CET) Received: from smtp01.mail.de (smtp02.bt.mail.de [10.0.121.212]) by postfix02.mail.de (Postfix) with ESMTP id AD6F4A03C4 for ; Thu, 21 Dec 2023 09:01:22 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp01.mail.de (Postfix) with ESMTPSA id 7892C240A78 for ; Thu, 21 Dec 2023 09:01:22 +0100 (CET) Message-ID: <74d0a22c-a335-4030-a6c8-d4c5b7bf6e38@mail.de> Date: Thu, 21 Dec 2023 09:01:21 +0100 MIME-Version: 1.0 Content-Language: en-US To: ffmpeg-devel@ffmpeg.org References: <20231215195917.91300-1-thilo.borgmann@mail.de> In-Reply-To: <20231215195917.91300-1-thilo.borgmann@mail.de> X-purgate: clean X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate-type: clean X-purgate-Ad: Categorized by eleven eXpurgate (R) http://www.eleven.de X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate: clean X-purgate-size: 1954 X-purgate-ID: 154282::1703145682-2095B878-154E4D34/0/0 Subject: Re: [FFmpeg-devel] [PATCH v8 0/5] webp: add support for animated WebP decoding 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: , From: Thilo Borgmann via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Thilo Borgmann Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Am 15.12.23 um 20:59 schrieb Thilo Borgmann via ffmpeg-devel: > Still images fixed, includes FATE tests, VP8 decoder decoupled so there are no more data races, fixed more asserts, fixed ffprobe regression, removed unnecessary parser changes, put the whole animated sequence into one packet. > > Patch 3/5 is still there for making changes in lavc/webp reviewable but shall be stashed when pushing. > > -Thilo > > > Josef Zlomek (2): > libavcodec/webp: add support for animated WebP decoding > libavformat/webp: add WebP demuxer > > Thilo Borgmann (3): > avcodec/webp: remove unused definitions > avcodec/webp: make init_canvas_frame static > fate: add test for animated WebP > > Changelog | 2 + > doc/demuxers.texi | 28 + > libavcodec/codec_desc.c | 3 +- > libavcodec/version.h | 2 +- > libavcodec/webp.c | 748 ++++++++++++++++++-- > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/version.h | 2 +- > libavformat/webpdec.c | 383 ++++++++++ > tests/fate/image.mak | 3 + > tests/ref/fate/exif-image-webp | 8 +- > tests/ref/fate/webp-anim | 22 + > tests/ref/fate/webp-rgb-lena-lossless | 2 +- > tests/ref/fate/webp-rgb-lena-lossless-rgb24 | 2 +- > tests/ref/fate/webp-rgb-lossless | 2 +- > tests/ref/fate/webp-rgb-lossy-q80 | 2 +- > tests/ref/fate/webp-rgba-lossless | 2 +- > tests/ref/fate/webp-rgba-lossy-q80 | 2 +- > 18 files changed, 1141 insertions(+), 74 deletions(-) > create mode 100644 libavformat/webpdec.c > create mode 100644 tests/ref/fate/webp-anim Ping. -Thilo _______________________________________________ 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".