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/aac/aacdec : remove double colon

    23 avril, par James Almer
    avcodec/aac/aacdec: remove double colon
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavcodec/aac/aacdec.h
  • av1dec : Fix RefFrameSignBias calculation

    22 avril, par Mark Thompson
    av1dec: Fix RefFrameSignBias calculation
    
    • [DH] libavcodec/av1dec.c
  • configure : fix rpuenc typos

    22 avril, par Haihao Xiang
    configure: fix rpuenc typos
    
    Otherwise there are link errors:
    LD      ffprobe_g
    /usr/bin/ld: libavcodec/libavcodec.so: undefined reference to
    `ff_dovi_rpu_generate'
    /usr/bin/ld: libavcodec/libavcodec.so: undefined reference to
    `ff_dovi_configure'
    collect2: error: ld returned 1 exit status
    
    Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
    Reviewed-by: Jan Ekström <jeebjp@gmail.com>
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] configure
  • avcodec/av1dec : Make av1_frame_replace() out of av1_frame_ref()

    19 avril, par Andreas Rheinhardt
    avcodec/av1dec: Make av1_frame_replace() out of av1_frame_ref()
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/av1dec.c
  • avcodec/av1dec : Use ProgressFrames

    19 avril, par Andreas Rheinhardt
    avcodec/av1dec: Use ProgressFrames
    
    AV1 can put a frame into multiple reference slots;
    up until now, this involved creating a new reference
    to the underlying AVFrame; therefore av1_frame_ref()
    could fail.
    This commit changes this by using the ProgressFrame API
    to share the underlying AVFrames.
    
    (Hint: vaapi_av1_surface_id() checked whether the AV1Frames
    contained in the AV1DecContext were NULL or not (of course
    they were not); this has been changed to actually check for
    whether said AV1Frame is blank or not.)
    
    Reviewed-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/av1dec.c
    • [DH] libavcodec/av1dec.h
    • [DH] libavcodec/dxva2_av1.c
    • [DH] libavcodec/nvdec_av1.c
    • [DH] libavcodec/vaapi_av1.c
    • [DH] libavcodec/vdpau_av1.c
    • [DH] libavcodec/vulkan_av1.c