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 9F5634A5E4 for ; Mon, 1 Apr 2024 18:07:47 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id E6C6F68CEEB; Mon, 1 Apr 2024 21:07:45 +0300 (EEST) Received: from mail1.khirnov.net (quelana.khirnov.net [94.230.150.81]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 19AD568C0CB for ; Mon, 1 Apr 2024 21:07:40 +0300 (EEST) Authentication-Results: mail1.khirnov.net; dkim=pass (2048-bit key; unprotected) header.d=khirnov.net header.i=@khirnov.net header.a=rsa-sha256 header.s=mail header.b=bkVeUe3M; dkim-atps=neutral Received: from localhost (mail1.khirnov.net [IPv6:::1]) by mail1.khirnov.net (Postfix) with ESMTP id 867FD4D5C for ; Mon, 1 Apr 2024 20:07:39 +0200 (CEST) Received: from mail1.khirnov.net ([IPv6:::1]) by localhost (mail1.khirnov.net [IPv6:::1]) (amavis, port 10024) with ESMTP id SFps0ksUJtr2 for ; Mon, 1 Apr 2024 20:07:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=khirnov.net; s=mail; t=1711994858; bh=XgqMcsOUzx/XsTDb/bG6KGdhyjvbdkepDVIfBlQeBx0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=bkVeUe3MtvzTI6C0ckTfSL76G8f7s193oNUdFJlTt+DQJBEUmqi1LXudyaDTq2aNk jAEkqxwE2zEuzEqvSp4YEO6/wiMhV9D5moSfiEU/yqiInZwgSha2FPXZSxLndIVgsM NDkDJt0Q/6n4xc+BwY17MeTwOdpR8jXhHyaN91MhWsa1S1EqyIP00bgsrs1ylWJkHs GwPvggtCHNdgLTXnTpK287SVmB1m052EBYvO+ZVTYML88kfmwCGbAUfOf8SnZ3slqB QClHR1uthYOzbCwDVHuZzGszLcqzwe3K9vqH8Egt4na+r3SUhkkNt9OO5sI5z5KhM4 drZjNKB0w5VPg== Received: from libav.khirnov.net (libav.khirnov.net [IPv6:2a00:c500:561:201::7]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "libav.khirnov.net", Issuer "smtp.khirnov.net SMTP CA" (verified OK)) by mail1.khirnov.net (Postfix) with ESMTPS id C59631C2B for ; Mon, 1 Apr 2024 20:07:38 +0200 (CEST) Received: from libav.khirnov.net (libav.khirnov.net [IPv6:::1]) by libav.khirnov.net (Postfix) with ESMTP id A043B3A03D8 for ; Mon, 1 Apr 2024 20:07:38 +0200 (CEST) From: Anton Khirnov To: ffmpeg-devel@ffmpeg.org Date: Mon, 1 Apr 2024 20:07:20 +0200 Message-ID: <20240401180737.9167-1-anton@khirnov.net> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240401171645.8875-2-anton@khirnov.net> References: <20240401171645.8875-2-anton@khirnov.net> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] web: add a news entry for 7.0 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: --- Now mentioning that vvcdec is experimental, as suggested by Martin on IRC. --- src/index | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/index b/src/index index 1eb5524..2deb6af 100644 --- a/src/index +++ b/src/index @@ -35,6 +35,34 @@ News +

April xxth, 2024, FFmpeg 7.0 "XXX"

+

+ A new major release, FFmpeg 7.0 "XXX", + is now available for download. The most noteworthy changes for most users are + a native VVC decoder (currently experimental, until more + fuzzing is done), IAMF support, or a + multi-threaded ffmpeg CLI tool. +

+ +

+ This release is not backwards compatible, removing APIs deprecated before 6.0. + The biggest change for most library callers will be the removal of the old bitmask-based + channel layout API, replaced by the AVChannelLayout API allowing such + features as custom channel ordering, or Ambisonics. Certain deprecated ffmpeg + CLI options were also removed, and a C11-compliant compiler is now required to build + the code. +

+ +

+ As usual, there is also a number of new supported formats and codecs, new filters, APIs, + and countless smaller features and bugfixes. Compared to 6.0, the git repository + contains almost ∼2000 new commits by ∼100 authors, touching >100000 lines in + ∼2000 files — thanks to everyone who contributed. See the + Changelog, + APIchanges, + and the git log for more comprehensive lists of changes. +

+

January 3rd, 2024, native VVC decoder

The libavcodec library now contains a native VVC (Versatile Video Coding) -- 2.43.0 _______________________________________________ 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".