* [FFmpeg-devel] [RFC/PATCH] web: add a news entry for 7.0
@ 2024-04-01 17:15 Anton Khirnov
2024-04-01 18:07 ` [FFmpeg-devel] [PATCH] " Anton Khirnov
0 siblings, 1 reply; 3+ messages in thread
From: Anton Khirnov @ 2024-04-01 17:15 UTC (permalink / raw)
To: ffmpeg-devel
---
src/index | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/src/index b/src/index
index 1eb5524..ba4f0e8 100644
--- a/src/index
+++ b/src/index
@@ -35,6 +35,33 @@
News
</h1>
+ <h3 id="pr7.0">April xxth, 2024, FFmpeg 7.0 "XXX"</h3>
+ <p>
+ A new major release, <a href="download.html#release_7.0">FFmpeg 7.0 "XXX"</a>,
+ is now available for download. The most noteworthy changes for most users are
+ a <a href="#vvcdec">native VVC decoder</a>, <a href="#iamf">IAMF support</a>,
+ or a <a href="#cli_threading">multi-threaded <code>ffmpeg</code> CLI tool</a>.
+ </p>
+
+ <p>
+ This release is <em>not</em> 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 <code>AVChannelLayout</code> API allowing such
+ features as custom channel ordering, or Ambisonics. Certain deprecated <code>ffmpeg</code>
+ CLI options were also removed, and a C11-compliant compiler is now required to build
+ the code.
+ </p>
+
+ <p>
+ 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 <code>git</code> repository
+ contains almost ∼2000 new commits by ∼100 authors, touching >100000 lines in
+ ∼2000 files — thanks to everyone who contributed. See the
+ <a href="https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=Changelog;hb=n7.0">Changelog</a>,
+ <a href="https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=doc/APIchanges;hb=n7.0">APIchanges</a>,
+ and the git log for more comprehensive lists of changes.
+ </p>
+
<h3 id="vvcdec">January 3rd, 2024, native VVC decoder</h3>
<p>
The <code>libavcodec</code> 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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* [FFmpeg-devel] [PATCH] web: add a news entry for 7.0
2024-04-01 17:15 [FFmpeg-devel] [RFC/PATCH] web: add a news entry for 7.0 Anton Khirnov
@ 2024-04-01 18:07 ` Anton Khirnov
2024-04-05 1:03 ` James Almer
0 siblings, 1 reply; 3+ messages in thread
From: Anton Khirnov @ 2024-04-01 18:07 UTC (permalink / raw)
To: ffmpeg-devel
---
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
</h1>
+ <h3 id="pr7.0">April xxth, 2024, FFmpeg 7.0 "XXX"</h3>
+ <p>
+ A new major release, <a href="download.html#release_7.0">FFmpeg 7.0 "XXX"</a>,
+ is now available for download. The most noteworthy changes for most users are
+ a <a href="#vvcdec">native VVC decoder</a> (currently experimental, until more
+ fuzzing is done), <a href="#iamf">IAMF support</a>, or a
+ <a href="#cli_threading">multi-threaded <code>ffmpeg</code> CLI tool</a>.
+ </p>
+
+ <p>
+ This release is <em>not</em> 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 <code>AVChannelLayout</code> API allowing such
+ features as custom channel ordering, or Ambisonics. Certain deprecated <code>ffmpeg</code>
+ CLI options were also removed, and a C11-compliant compiler is now required to build
+ the code.
+ </p>
+
+ <p>
+ 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 <code>git</code> repository
+ contains almost ∼2000 new commits by ∼100 authors, touching >100000 lines in
+ ∼2000 files — thanks to everyone who contributed. See the
+ <a href="https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=Changelog;hb=n7.0">Changelog</a>,
+ <a href="https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=doc/APIchanges;hb=n7.0">APIchanges</a>,
+ and the git log for more comprehensive lists of changes.
+ </p>
+
<h3 id="vvcdec">January 3rd, 2024, native VVC decoder</h3>
<p>
The <code>libavcodec</code> 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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH] web: add a news entry for 7.0
2024-04-01 18:07 ` [FFmpeg-devel] [PATCH] " Anton Khirnov
@ 2024-04-05 1:03 ` James Almer
0 siblings, 0 replies; 3+ messages in thread
From: James Almer @ 2024-04-05 1:03 UTC (permalink / raw)
To: ffmpeg-devel
On 4/1/2024 3:07 PM, Anton Khirnov wrote:
> ---
> 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
> </h1>
>
> + <h3 id="pr7.0">April xxth, 2024, FFmpeg 7.0 "XXX"</h3>
> + <p>
> + A new major release, <a href="download.html#release_7.0">FFmpeg 7.0 "XXX"</a>,
> + is now available for download. The most noteworthy changes for most users are
> + a <a href="#vvcdec">native VVC decoder</a> (currently experimental, until more
> + fuzzing is done), <a href="#iamf">IAMF support</a>, or a
> + <a href="#cli_threading">multi-threaded <code>ffmpeg</code> CLI tool</a>.
> + </p>
> +
> + <p>
> + This release is <em>not</em> 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 <code>AVChannelLayout</code> API allowing such
> + features as custom channel ordering, or Ambisonics. Certain deprecated <code>ffmpeg</code>
> + CLI options were also removed, and a C11-compliant compiler is now required to build
> + the code.
> + </p>
> +
> + <p>
> + 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 <code>git</code> repository
> + contains almost ∼2000 new commits by ∼100 authors, touching >100000 lines in
> + ∼2000 files — thanks to everyone who contributed. See the
> + <a href="https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=Changelog;hb=n7.0">Changelog</a>,
> + <a href="https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=doc/APIchanges;hb=n7.0">APIchanges</a>,
> + and the git log for more comprehensive lists of changes.
> + </p>
> +
> <h3 id="vvcdec">January 3rd, 2024, native VVC decoder</h3>
> <p>
> The <code>libavcodec</code> library now contains a native VVC (Versatile Video Coding)
Will apply now that 7.0 was tagged.
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-04-05 1:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-01 17:15 [FFmpeg-devel] [RFC/PATCH] web: add a news entry for 7.0 Anton Khirnov
2024-04-01 18:07 ` [FFmpeg-devel] [PATCH] " Anton Khirnov
2024-04-05 1:03 ` James Almer
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git