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/APIchanges : add missing entries for the recent changes

    2 juillet, par James Almer
    doc/APIchanges: add missing entries for the recent changes
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    
    • [DH] doc/APIchanges
  • avformat/demux : Fix segfault due to avcodec_open2 failure

    28 juin, par Pavel Koshevoy
    avformat/demux: Fix segfault due to avcodec_open2 failure
    
    Fixes 'ffprobe 1_poc.mp4' segfault introduced with
    commit 0021484d05f9b0f032fa319399de6e24eea0c04f
    
    codec_close should not assume that the codec_id did not change.
    
    • [DH] libavformat/demux.c
  • avcodec/speexdec : consider differing frame sizes in remaining space check

    27 juin, par Michael Niedermayer
    avcodec/speexdec: consider differing frame sizes in remaining space check
    
    Fixes: talk109-q5.spx
    Regression since: f6986e75be87f512f65d64ac91ba19d505a8d210
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavcodec/speexdec.c
  • avfilter/vf_lut3d : fix leak if allocate_3dlut failed

    27 juin, par Lidong Yan
    avfilter/vf_lut3d: fix leak if allocate_3dlut failed
    
    In parse_cinespace(), memory allocated in in_prelut[] and out_prelut[]
    would leak if allocate_3dlut() failed. Replace return ret with goto end
    to free memory before return error code.
    
    Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavfilter/vf_lut3d.c
  • avcodec/vorbisenc : fix leak if av_mallocz failed

    27 juin, par Lidong Yan
    avcodec/vorbisenc: fix leak if av_mallocz failed
    
    In put_main_header(), av_mallocz() allocates memory to local variable
    buffer, buffer leaks if av_mallocz() to *out failed. Add av_free(buffer)
    before return error code.
    
    Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
    
    • [DH] libavcodec/vorbisenc.c