ffmpeg | branch: release/2.8 | James Almer <[email protected]> | Tue Mar 21 12:03:44 2017 -0300| [31e65eb84d6d1cce2feea1147650a78dc56936c4] | committer: James Almer
swresample/resample: free existing ResampleContext on reinit Fixes memleak. Reviewed-by: wm4 <[email protected]> Reviewed-by: Michael Niedermayer <[email protected]> Signed-off-by: James Almer <[email protected]> (cherry picked from commit db7a05dab0652d4ec6d89394c9024d02f44494a7) > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=31e65eb84d6d1cce2feea1147650a78dc56936c4 --- libswresample/resample.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libswresample/resample.c b/libswresample/resample.c index 97bf9c4..02301ff 100644 --- a/libswresample/resample.c +++ b/libswresample/resample.c @@ -190,6 +190,7 @@ static ResampleContext *resample_init(ResampleContext *c, int out_rate, int in_r if (!c || c->phase_shift != phase_shift || c->linear!=linear || c->factor != factor || c->filter_length != FFMAX((int)ceil(filter_size/factor), 1) || c->format != format || c->filter_type != filter_type || c->kaiser_beta != kaiser_beta) { + resample_free(&c); c = av_mallocz(sizeof(*c)); if (!c) return NULL; _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
