From: Marco Date: Tue, 26 Aug 2014 17:12:43 +0000 (-0700) Subject: vp8 fix: deallocate denoiser->yv12_last_source X-Git-Tag: v1.4.0~913^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f010b7727a95726765f01248e8c1b1bc16c61890;p=libvpx vp8 fix: deallocate denoiser->yv12_last_source Change-Id: I7f3bc292b1b411e10586f0975143ae996ea78d1d --- diff --git a/vp8/encoder/denoising.c b/vp8/encoder/denoising.c index 4621d13e2..2da0d8c0e 100644 --- a/vp8/encoder/denoising.c +++ b/vp8/encoder/denoising.c @@ -430,6 +430,7 @@ void vp8_denoiser_free(VP8_DENOISER *denoiser) vp8_yv12_de_alloc_frame_buffer(&denoiser->yv12_running_avg[i]); } vp8_yv12_de_alloc_frame_buffer(&denoiser->yv12_mc_running_avg); + vp8_yv12_de_alloc_frame_buffer(&denoiser->yv12_last_source); vpx_free(denoiser->denoise_state); }