git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/speexdec : consider differing frame sizes in remaining space check
27 juin, par Michael Niedermayer -
avfilter/vf_lut3d : fix leak if allocate_3dlut failed
27 juin, par Lidong Yanavfilter/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>
-
avcodec/vorbisenc : fix leak if av_mallocz failed
27 juin, par Lidong Yanavcodec/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>
-
avutil/hwcontext_videotoolbox : fix unused variable warning
27 juin, par Marvin Scholz -
avcodec/vvc/refs : remove early return
26 juin, par Marvin Scholzavcodec/vvc/refs: remove early return The ret value is checked later on again, so this check is redundant and would cause the frame to not be unrefd on failure as well. So remove this check and add one before av_frame_remove_side_data to ensure it is not called with an invalid frame. Fix CID 1648350 Reviewed-by: Frank Plowman <post@frankplowman.com>