mirror of https://git.ffmpeg.org/ffmpeg.git
swresample/resample: free existing ResampleContext on reinit
Fixes memleak. Reviewed-by: wm4 <nfxjfg@googlemail.com> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
2a8a8a2e98
commit
db7a05dab0
|
@ -310,6 +310,7 @@ static ResampleContext *resample_init(ResampleContext *c, int out_rate, int in_r
|
|||
if (!c || c->phase_count != phase_count || c->linear!=linear || c->factor != factor
|
||||
|| c->filter_length != filter_length || 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;
|
||||
|
|
Loading…
Reference in New Issue