summaryrefslogtreecommitdiff
path: root/vp8/encoder/rdopt.c
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2015-06-05 09:54:19 -0700
committerJohann <johannkoenig@google.com>2015-07-07 15:51:04 -0700
commit6a82f0d7fb9ee908c389e8d55444bbaed3d54e9c (patch)
tree5b346f932d7256defc451958f474a33cd8b51205 /vp8/encoder/rdopt.c
parent155b9416b36d9708b18f22ef2bc396fba264f513 (diff)
downloadlibvpx-6a82f0d7fb9ee908c389e8d55444bbaed3d54e9c.tar
libvpx-6a82f0d7fb9ee908c389e8d55444bbaed3d54e9c.tar.gz
libvpx-6a82f0d7fb9ee908c389e8d55444bbaed3d54e9c.tar.bz2
libvpx-6a82f0d7fb9ee908c389e8d55444bbaed3d54e9c.zip
Move sub pixel variance to vpx_dsp
Change-Id: I66bf6720c396c89aa2d1fd26d5d52bf5d5e3dff1
Diffstat (limited to 'vp8/encoder/rdopt.c')
-rw-r--r--vp8/encoder/rdopt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c
index 17194f0d4..edd6c58ec 100644
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -29,7 +29,7 @@
#include "vp8/common/quant_common.h"
#include "encodemb.h"
#include "quantize.h"
-#include "vp8/common/variance.h"
+#include "vpx_dsp/variance.h"
#include "mcomp.h"
#include "rdopt.h"
#include "vpx_mem/vpx_mem.h"
@@ -500,9 +500,9 @@ int VP8_UVSSE(MACROBLOCK *x)
if ((mv_row | mv_col) & 7)
{
- vp8_sub_pixel_variance8x8(uptr, pre_stride,
+ vpx_sub_pixel_variance8x8(uptr, pre_stride,
mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
- vp8_sub_pixel_variance8x8(vptr, pre_stride,
+ vpx_sub_pixel_variance8x8(vptr, pre_stride,
mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
sse2 += sse1;
}