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

  • avcodec/av1dec : bit_depth cannot be another values than 8,10,12

    1er mai, par Michael Niedermayer
    avcodec/av1dec: bit_depth cannot be another values than 8,10,12
    
    Fixes: CID1544265 Logically dead code
    
    Sponsored-by: Sovereign Tech Fund
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavcodec/av1dec.c
  • lavc/ac3dsp : R-V V min_exponents

    1er mai, par Rémi Denis-Courmont
    lavc/ac3dsp: R-V V min_exponents
    
    T-Head C908:
    ac3_exponent_min_reuse0_c:         7.5
    ac3_exponent_min_reuse0_rvv_i32:   7.5
    ac3_exponent_min_reuse1_c:      1820.7
    ac3_exponent_min_reuse1_rvv_i32: 102.5
    ac3_exponent_min_reuse2_c:      3088.5
    ac3_exponent_min_reuse2_rvv_i32: 138.7
    ac3_exponent_min_reuse3_c:      5073.7
    ac3_exponent_min_reuse3_rvv_i32: 174.7
    ac3_exponent_min_reuse4_c:      4624.2
    ac3_exponent_min_reuse4_rvv_i32: 204.2
    ac3_exponent_min_reuse5_c:      5138.7
    ac3_exponent_min_reuse5_rvv_i32: 238.0
    
    • [DH] libavcodec/riscv/ac3dsp_init.c
    • [DH] libavcodec/riscv/ac3dsp_rvv.S
  • avformat/mov : don't use stream duration to calculate bitrate with fragmented input

    1er mai, par James Almer
    avformat/mov: don't use stream duration to calculate bitrate with fragmented input
    
    sc->data_size may contain the size of a single fragment after probing, and
    using it alongside the duration of the entire stream to calculate bitrate
    will result in a bogus small value.
    
    Before:
      Duration: 00:00:05.00, start: 0.000000, bitrate: 586 kb/s
      Stream #0:0[0x1](und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(progressive), 640x360 [SAR 1:1 DAR 16:9], 112 kb/s, 60 fps, 60 tbr, 15360 tbn (default)
    
    After:
      Duration: 00:00:05.00, start: 0.000000, bitrate: 586 kb/s
      Stream #0:0[0x1](und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(progressive), 640x360 [SAR 1:1 DAR 16:9], 561 kb/s, 60 fps, 60 tbr, 15360 tbn (default)
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavformat/mov.c
  • avcodec/dovi_rpuenc : avoid division by zero

    30 avril, par Niklas Haas
    avcodec/dovi_rpuenc: avoid division by zero
    
    Fixes: https://trac.ffmpeg.org/ticket/10985
    
    • [DH] libavcodec/dovi_rpuenc.c
  • avcodec/x86/vp3dsp_init : Set correct function pointer, fix crash

    30 avril, par Andreas Rheinhardt
    avcodec/x86/vp3dsp_init: Set correct function pointer, fix crash
    
    Regression since fd172185580c1ccdcfb90bbfdb59fa806fad3117;
    triggered by vp4/KTkvw8dg1J8.avi in the FATE suite, but not
    when running fate as this code is not used when the bitexact
    flag is set.
    
    Bisecting done by ami_stuff, patch from user Mika Fischer
    in ticket #10027 (which this commit fixes).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/x86/vp3dsp_init.c