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

  • 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
  • avutil/opt : Clarify type of integers

    3 mai, par Marcus B Spencer
    avutil/opt: Clarify type of integers
    
    Clarify comment regarding type of integers regarding AV_OPT_TYPE_IMAGE_SIZE.
    
    Signed-off-by: Marcus B Spencer <marcus@marcusspencer.xyz>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavutil/opt.h
  • avcodec/av1dec : Change bit_depth to int

    2 mai, par Michael Niedermayer
    avcodec/av1dec: Change bit_depth to int
    
    Suggested-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavcodec/av1dec.c
  • avformat/movenc : Avoid loop for writing array

    2 mai, par Andreas Rheinhardt
    avformat/movenc: Avoid loop for writing array
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavformat/movenc.c
  • avformat/movenc : Check av_malloc()

    2 mai, par Andreas Rheinhardt
    avformat/movenc: Check av_malloc()
    
    Fixes Coverity issue #1596735.
    
    Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavformat/movenc.c