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 126A4461DF for ; Thu, 8 Jun 2023 14:20:40 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1D2BE68B896; Thu, 8 Jun 2023 17:20:37 +0300 (EEST) Received: from shout01.mail.de (shout01.mail.de [62.201.172.24]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4F80F68B896 for ; Thu, 8 Jun 2023 17:20:31 +0300 (EEST) Received: from postfix02.mail.de (postfix02.bt.mail.de [10.0.121.126]) by shout01.mail.de (Postfix) with ESMTP id D392DA0369 for ; Thu, 8 Jun 2023 16:20:30 +0200 (CEST) Received: from smtp01.mail.de (smtp01.bt.mail.de [10.0.121.211]) by postfix02.mail.de (Postfix) with ESMTP id BBD52A03C4 for ; Thu, 8 Jun 2023 16:20:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mail.de; s=mailde202009; t=1686234030; bh=bBCVBPAr0uHJPK8m15o7Da/z/2iwFBGCCOGRMCTLLHE=; h=From:To:Subject:Date:Message-Id:From:To:CC:Subject:Reply-To; b=39EZwf59Y+VULMqrx2IygA5ovs53npD0BpwgbLiJYyydMGBmzeDOMjsm9Fihzuzb/ TIQc5bNzqmgA09lmdctvEtj2vxxU41A1v/6WEiT1r0NSnrl/9DyaPIRCiRupxI07x+ ZZam4uLF1hQTNLDR3Liq2iVMo3cXDAaNxa3uxWjSH7oJkLqAbYCTsUPF9vgW4YPlS2 H4EvQUpEKBfYxRsComVQw341ZLaNvCFZ6MS6rae68+BZfaJpZEBXt1Cb6+CF4pzT9g jJljVlI+P2L2+BjMBZMvwvcufGSYVVQrYcVe1stAb4HFaIEBKB2kBnc4Q701xHSdSE I2KP5uOy2n1Bw== Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by smtp01.mail.de (Postfix) with ESMTPSA id 838F0100462 for ; Thu, 8 Jun 2023 16:20:30 +0200 (CEST) From: Thilo Borgmann To: ffmpeg-devel@ffmpeg.org Date: Thu, 8 Jun 2023 16:20:25 +0200 Message-Id: <20230608142029.16564-1-thilo.borgmann@mail.de> MIME-Version: 1.0 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: 984 X-purgate-ID: 154282::1686234030-077FA7B6-6C4D33CD/0/0 Subject: [FFmpeg-devel] [PATCH v1 0/4] 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: , Reply-To: FFmpeg development discussions and patches 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: Follow-up to [1], the decoder only. In [1] we found a hanging sample. In frame-threading, this led to an infinite wait, damaged frames otherwise. So warn acordingly and do best-effort in single-thread mode. Also split into more patches to make reviewing easier. [1] http://ffmpeg.org/pipermail/ffmpeg-devel/2023-April/308965.html Josef Zlomek (1): libavcodec/webp: add support for animated WebP decoding Thilo Borgmann (3): avcodec/webp: move definitions into header avcodec/webp_parser: parse each frame into one packet avcodec/webp: make init_canvas_frame static Changelog | 1 + libavcodec/codec_desc.c | 3 +- libavcodec/version.h | 2 +- libavcodec/webp.c | 724 +++++++++++++++++++++++++++++++++++---- libavcodec/webp.h | 55 +++ libavcodec/webp_parser.c | 132 ++++--- 6 files changed, 800 insertions(+), 117 deletions(-) create mode 100644 libavcodec/webp.h -- 2.37.1 (Apple Git-137.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".