summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2013-07-22 14:01:43 +0100
committerPaul Wilkins <paulwilkins@google.com>2013-07-22 14:01:43 +0100
commit888375d2430f0f08974230b9f2db6681a6673d56 (patch)
tree07a8c2dd12b65d39f7eb0fd6eee55a99b30ff96b /vp9/encoder
parentee1fe2f750c94c2b87a6c95722d919eda933bca1 (diff)
downloadlibvpx-888375d2430f0f08974230b9f2db6681a6673d56.tar
libvpx-888375d2430f0f08974230b9f2db6681a6673d56.tar.gz
libvpx-888375d2430f0f08974230b9f2db6681a6673d56.tar.bz2
libvpx-888375d2430f0f08974230b9f2db6681a6673d56.zip
Fix build error.
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
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_onyx_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_onyx_if.c b/vp9/encoder/vp9_onyx_if.c
index 31df913ee..3885e3678 100644
--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -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();