summaryrefslogtreecommitdiff
path: root/vp8/encoder/encodeframe.c
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2012-04-23 13:23:21 -0400
committerScott LaVarnway <slavarnway@google.com>2012-04-23 13:23:21 -0400
commit11876faa1171368d8921e3969151e08494a11858 (patch)
tree3d329ff2b7f8051c594e427080eaf695f8abe1ef /vp8/encoder/encodeframe.c
parent88e4a8af0fd0f9b6d3def697c484fca2f912c82f (diff)
downloadlibvpx-11876faa1171368d8921e3969151e08494a11858.tar
libvpx-11876faa1171368d8921e3969151e08494a11858.tar.gz
libvpx-11876faa1171368d8921e3969151e08494a11858.tar.bz2
libvpx-11876faa1171368d8921e3969151e08494a11858.zip
Removed mcomp_filter_type
and replaced with use_bilinear_mc_filter. Change-Id: Ie9e9f0bccca4ab7d3e23ae045aefed33536103ff
Diffstat (limited to 'vp8/encoder/encodeframe.c')
-rw-r--r--vp8/encoder/encodeframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/encodeframe.c b/vp8/encoder/encodeframe.c
index 962a719c8..1f4019772 100644
--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -695,7 +695,7 @@ void vp8_encode_frame(VP8_COMP *cpi)
}
// Functions setup for all frame types so we can use MC in AltRef
- if (cm->mcomp_filter_type == SIXTAP)
+ if(!cm->use_bilinear_mc_filter)
{
xd->subpixel_predict = vp8_sixtap_predict4x4;
xd->subpixel_predict8x4 = vp8_sixtap_predict8x4;