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

  • doc/filters : move scale=ref_* to correct sectton

    4 mai, par Niklas Haas
    doc/filters: move scale=ref_* to correct sectton
    
    This was accidentally filed under scale_npp, instead of scale. (Why is
    this entire section basically duplicated anyway?)
    
    • [DH] doc/filters.texi
  • avcodec/dovi_rpuenc : Initialize bl_compat_id

    3 mai, par Michael Niedermayer
    avcodec/dovi_rpuenc: Initialize bl_compat_id
    
    Fixes: CID1596607 Uninitialized scalar variable
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavcodec/dovi_rpuenc.c
  • avfilter/vf_scale : fix input declaration

    3 mai, par Niklas Haas
    avfilter/vf_scale: fix input declaration
    
    This filter needs to be marked as having only one input by default, with
    AVFILTER_FLAG_DYNAMIC_INPUTS allowing the extra input to be added at
    init() time.
    
    Fixes: bb8044581366fe286e16b14515d873979133dbda
    
    • [DH] libavfilter/vf_scale.c
  • lavc/ac3dsp : R-V Zbb ac3_exponent_min

    3 mai, par Rémi Denis-Courmont
    lavc/ac3dsp: R-V Zbb ac3_exponent_min
    
    SiFive U74:
    ac3_exponent_min_reuse0_c:       10.0
    ac3_exponent_min_reuse0_rvb_b:    8.0
    ac3_exponent_min_reuse1_c:     2924.7
    ac3_exponent_min_reuse1_rvb_b: 1803.0
    ac3_exponent_min_reuse2_c:     5043.0
    ac3_exponent_min_reuse2_rvb_b: 2827.5
    ac3_exponent_min_reuse3_c:     7028.7
    ac3_exponent_min_reuse3_rvb_b: 3872.0
    ac3_exponent_min_reuse4_c:     8824.2
    ac3_exponent_min_reuse4_rvb_b: 5122.2
    ac3_exponent_min_reuse5_c:    10487.5
    ac3_exponent_min_reuse5_rvb_b: 6412.2
    
    • [DH] libavcodec/riscv/ac3dsp_init.c
    • [DH] libavcodec/riscv/ac3dsp_rvb.S
  • fftools/ffprobe : Avoid overflow when calculating DAR

    3 mai, par Derek Buitenhuis
    fftools/ffprobe: Avoid overflow when calculating DAR
    
    Both the codecpar's width and height, and the SAR num and den are
    ints, which can overflow. Cast to int64_t, which is what av_reduce
    takes.
    
    Without this, occasionally, display_aspect_ratio can be negative in
    ffprobe's -show_stream output.
    
    Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
    
    • [DH] fftools/ffprobe.c