shithub: libvpx

Download patch

ref: bd57508fdb945e061d4efd15bf133e398f7bf578
parent: 65234504b95b4bc9a155539c16e457223d2e6c25
parent: 84ba62d35321f90326812793ab718c2402ab4f72
author: Marco Paniconi <marpan@google.com>
date: Thu Aug 7 10:40:22 EDT 2014

Merge "vp8: for spatial resize, reallocate denoiser in vp8_allocate_comp."

--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -1277,6 +1277,16 @@
 
     vpx_free(cpi->tplist);
     CHECK_MEM_ERROR(cpi->tplist, vpx_malloc(sizeof(TOKENLIST) * cm->mb_rows));
+
+#if CONFIG_TEMPORAL_DENOISING
+    if (cpi->oxcf.noise_sensitivity > 0) {
+      vp8_denoiser_free(&cpi->denoiser);
+      vp8_denoiser_allocate(&cpi->denoiser, width, height,
+                            cm->mb_rows, cm->mb_cols,
+                            ((cpi->oxcf.noise_sensitivity == 3) ?
+                            1 : 0));
+    }
+#endif
 }
 
 
@@ -2762,19 +2772,6 @@
             cm->Height = new_height;
             vp8_alloc_compressor_data(cpi);
             scale_and_extend_source(cpi->un_scaled_source, cpi);
-#if CONFIG_TEMPORAL_DENOISING
-            // TODO(marpan): denoiser_allocate() is not called in
-            // vp8_alloc_compressor_data() (currently denoiser_allocate is
-            // only called in change_config()). Check if we can move this call
-            // of denoiser_free/allocate into vp8_alloc_compressor_data().
-            if (cpi->oxcf.noise_sensitivity > 0) {
-              vp8_denoiser_free(&cpi->denoiser);
-              vp8_denoiser_allocate(&cpi->denoiser, new_width, new_height,
-                                    cm->mb_rows, cm->mb_cols,
-                                    ((cpi->oxcf.noise_sensitivity == 3) ?
-                                    1 : 0));
-            }
-#endif
             return 1;
         }
     }