drob518 1 day ago

Hm. Not a lot of technical details about the bitrate improvement of the streams of the CPU required to decode them. I’m also wondering if all the encoding and decoding was done by software reference implementations (just VLC?) or whether anything had any form of hardware assist? It reads as “We did it” without much other information as to how well it went or what AV2’s benefits are over both AV1 and other codecs and whether those benefits were realized in the demonstration or require downstream work to achieve.

  • adrian_b 1 day ago

    In TFA, there are links to the complete specification of AV2 and to the reference software implementation, which was used in the test.

    https://gitlab.com/AOMediaCodec/avm/-/tree/research-v13.0.0/...

    TFA says that the test was done on an Apple laptop and the decoding was done on the CPU, so not using any special hardware support.

    The reference AV2 implementation uses architecture-specific SIMD instructions on x86-64, Aarch64 and IBM POWER.

    So in this test it has used the ARM vector ISA (Neon), written with intrinsics in the C language, as it can be seen in the source files:

    https://gitlab.com/AOMediaCodec/avm/-/tree/research-v13.0.0/...

    • adrian_b 23 hours ago

      EDIT: When looking first at TFA, I did not notice that only the first demonstration was done on an Apple laptop using Neon instructions, but the second demonstration was done on an unnamed laptop with an x86 CPU, thus using the AVX2 vector instructions.

      The x86 demo decoded in real time an 1080p/24 fps video stream. Because for Apple the resolution is not specified, we can assume that it was lower than on the x86 laptop.

noodlesUK 1 day ago

I think it’s really cool how good the newest video codecs are, but here I am finally able to (only very recently) safely use HEVC and assume that pretty much every end user device has hardware support. It’ll be a while before AV1 reaches that level of adoption and even longer before AV2 does. See you in a few years.

  • adrian_b 1 day ago

    You, as an individual, might be able to use HEVC "safely", hoping that nobody will come after you.

    However, during the last few days there have been many news about the owners of the HEVC patents and about the owners of the older H.264 patents making great efforts to extort much more money from the users of HEVC or of H.264.

    This has made recently some big vendors of computers to disable the hardware HEVC codecs in the computers that they are selling, instead of paying increased royalties.

    At least the H.264 patents have already expired in all countries, except in less than a handful of countries, including USA, so the use of H.264 is safe wherever the patents are no longer valid (but not in USA, where the H.264 patents will remain valid for less than a couple of years).

    On the other hand, for HEVC the patents will remain valid for many years, so using it will not be safe even for those who pay royalties, as the royalties may be increased at any time, as shown by the recent history.

    Therefore it is wise to avoid HEVC (and its VVC successor) and prefer alternative codecs.

    • hirako2000 1 day ago

      To note that there is x264 to get around the remaining patent issue.

  • mort96 1 day ago

    I'm far away from being able to use HEVC on really anything other than my phone. Some patents will have to expire first.

modeless 1 day ago

Huh, I didn't know AV2 was out. What are the new features besides (I assume) incremental compression efficiency?

  • cadamsdotcom 1 day ago

    It’s in the first sentence of the article.

    Back of the class you go.

    • peterfirefly 19 hours ago

      I don't think it actually is. Could you indulge me and quote it here, please?

      • cadamsdotcom 16 hours ago

        There’s some blue text with an underline labeled “AV2 Specification”. That’s called a link. If you click that, you’ll see the date the spec was ratified and some details about it.

        • modeless 14 hours ago

          Are you suggesting that I read the whole spec and then read the whole AV1 spec and diff it in my head? Or are you referring to the only text in that link describing differences with AV1: "enhanced support for AR/VR applications, split-screen delivery of multiple programs, improved handling of screen content, and an ability to operate over a wider visual quality range"? This is not a description of technical features, it's a high level statement of aspirations. I'm asking what features they added to achieve these goals.

          I was hoping someone familiar with AV2 might be frequenting this site alongside the much larger population of smartass pedants, and they might be able to summarize the new features in a way useful to me and others.

  • KAMSPioneer 1 day ago

    > AV2 is the next-generation video coding specification from the Alliance for Open Media (AOMedia). Building on the foundation of AV1, AV2 is engineered to provide superior compression efficiency, enabling high-quality video delivery at significantly lower bitrates. It is optimized for the evolving demands of streaming, broadcasting, and real-time video conferencing.

    > AV2 provides enhanced support for AR/VR applications, split-screen delivery of multiple programs, improved handling of screen content, and an ability to operate over a wider visual quality range.

ksec 1 day ago

>Now that the AV2 specification is publicly available

Draft of AV2 spec. Not final. I think they just tagged the AVM 14 release from their research branch. But personally it feels it is no where near final / finish status.