git.videolan.org Git - ffmpeg.git/rss log

FFmpeg git repo

http://git.videolan.org/?p=ffmpeg.git;a=summary

Les articles publiés sur le site

  • lavc/vvc : Skip enhancement layer NAL units

    18 avril, par Frank Plowman
    lavc/vvc: Skip enhancement layer NAL units
    
    The native VVC decoder does not yet support quality/spatial/multiview
    scalability.  Bitstreams requiring this feature could cause crashes.
    Patch fixes this by skipping NAL units which are not in the base layer,
    warning the user while doing so.
    
    Signed-off-by: Frank Plowman <post@frankplowman.com>
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavcodec/vvc/dec.c
  • avutil/frame : remove comment about avcodec_get_frame_class()

    18 avril, par Andrew Sayers
    avutil/frame: remove comment about avcodec_get_frame_class()
    
    The function was deprecated a while back and deleted last year.
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavutil/frame.h
  • avcodec/ac3 : Remove unused fixed-point ARMv7 DSP

    18 avril, par Geoff Hill
    avcodec/ac3: Remove unused fixed-point ARMv7 DSP
    
    This diff removes 4 unused ARMv7 NEON fixed-point DSP functions.
    
    The function were originally moved here by 4958f35a2 (Dec 2013).
    
    After 9e05421db (Jan 2021), as part of the refactor of the AC3
    DSP to consistently use 32-bit sample format in the encoder, these
    functions were removed from the DSP function table, but the ARMv7
    implementations were kept.
    
    Signed-off-by: Geoff Hill <geoff@geoffhill.org>
    
    • [DH] libavcodec/arm/ac3dsp_neon.S
  • avcodec/x86/vvc/vvcdsp_init : fix linking error when configuring with —disable-ssse3...

    17 avril, par Wu Jianhua
    avcodec/x86/vvc/vvcdsp_init: fix linking error when configuring with --disable-ssse3 --disable-optimizations options
    
    Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
    
    • [DH] libavcodec/x86/vvc/vvcdsp_init.c
  • avcodec/x86/vvc/vvcdsp_init : add avg prototypes

    17 avril, par Wu Jianhua
    avcodec/x86/vvc/vvcdsp_init: add avg prototypes
    
    When we used the --disable-ssse3 --disable-optimizations options,
    the compiler would not skip the MC_LINKS like the compilation that
    enabled the optimization, so it would fail to find the function
    prototypes. Hence, this commit uses the same way to add prototypes
    for the functions as HEVC DSP.
    
    And, when prototypes are added for the functions, we cannot add the static qualifier.
    Therefore, the ff_vvc prefix is needed to avoid the naming conflict.
    
    Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
    
    • [DH] libavcodec/x86/vvc/vvcdsp_init.c