git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
fate/all : switch-fix mov muxer dependency to mp4 muxer dependency
30 juin, par Nicolas Gaullierfate/all: switch-fix mov muxer dependency to mp4 muxer dependency Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
fate/demux : fix multiple dependencies
30 juin, par Nicolas Gaullier -
fate/all : add missing dependencies for extradata bsf
30 juin, par Nicolas Gaullierfate/all: add missing dependencies for extradata bsf Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
avformat/rtpdec_asf : fix leak in ff_wms_parse_sdp_a_line()
29 juin, par Lidong Yanavformat/rtpdec_asf: fix leak in ff_wms_parse_sdp_a_line() In ff_wms_parse_sdp_a_line(), it allocates memory in buf, but doesn't free buf when avformat_alloc_context() failed. Add av_free(buf) before return to prevent from leak. Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
avcodec/sunrast : fix leak in sunrast_decode_frame()
29 juin, par Lidong Yanavcodec/sunrast: fix leak in sunrast_decode_frame() In sunrast_decode_frame(), we use av_malloc_array() allocates memory to ptr and ptr2. However if buf_end - buf < 1, this function returns error code without freeing this memory thus cause a leak. Add av_freep() before return. Signed-off-by: Lidong Yan <502024330056@smail.nju.edu.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>