]> granicus.if.org Git - libvpx/commitdiff
Fix build error.
authorPaul Wilkins <paulwilkins@google.com>
Mon, 22 Jul 2013 13:01:43 +0000 (14:01 +0100)
committerPaul Wilkins <paulwilkins@google.com>
Mon, 22 Jul 2013 13:01:43 +0000 (14:01 +0100)
When CONFIG_POSTPROC is set there was a now
invalid reference to cm->filter_level.

Changed to cpi->mb.e_mbd.lf.filter_level in line with
change Iaf5fb71c33719cdfa1b991f671caf071be9ea035

Change-Id: If746e60044903f7ba8d0d346225b3d015226c7d0

vp9/encoder/vp9_onyx_if.c

index 31df913eef7cfae19c1d6c2e0298c7ce51c5f476..3885e3678c04ce17177cf651a6951d5626c80ab5 100644 (file)
@@ -3881,7 +3881,7 @@ int vp9_get_compressed_data(VP9_PTR ptr, unsigned int *frame_flags,
           double weight = 0;
 #if CONFIG_POSTPROC
           vp9_deblock(cm->frame_to_show, &cm->post_proc_buffer,
-                      cm->filter_level * 10 / 6);
+                      cpi->mb.e_mbd.lf.filter_level * 10 / 6);
 #endif
           vp9_clear_system_state();