shithub: libvpx

Download patch

ref: f010b7727a95726765f01248e8c1b1bc16c61890
parent: e735b57634b78a4be091746dba722d8afc538b35
author: Marco <marpan@google.com>
date: Tue Aug 26 06:12:43 EDT 2014

vp8 fix: deallocate denoiser->yv12_last_source

Change-Id: I7f3bc292b1b411e10586f0975143ae996ea78d1d

--- a/vp8/encoder/denoising.c
+++ b/vp8/encoder/denoising.c
@@ -430,6 +430,7 @@
         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);
 }