summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_alloccommon.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2013-04-05 12:50:19 -0700
committerRonald S. Bultje <rbultje@google.com>2013-04-05 12:50:19 -0700
commit36c3a67c201703f02736173fc5780b867b17e56b (patch)
tree1ac28d31d8e8f6135cdcc830ae676501df9299ed /vp9/common/vp9_alloccommon.c
parent61834f732579bc0ed470ba45e504c60d92c75170 (diff)
downloadlibvpx-36c3a67c201703f02736173fc5780b867b17e56b.tar
libvpx-36c3a67c201703f02736173fc5780b867b17e56b.tar.gz
libvpx-36c3a67c201703f02736173fc5780b867b17e56b.tar.bz2
libvpx-36c3a67c201703f02736173fc5780b867b17e56b.zip
Remove full-pixel-related code.
This is a VP8-only feature (part of profile 3) that is unsupported in VP9. Change-Id: I78016eede8d9c834d44d4c517f3e8b8fc2a378b1
Diffstat (limited to 'vp9/common/vp9_alloccommon.c')
-rw-r--r--vp9/common/vp9_alloccommon.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/vp9/common/vp9_alloccommon.c b/vp9/common/vp9_alloccommon.c
index eb4d19672..48f9be1b3 100644
--- a/vp9/common/vp9_alloccommon.c
+++ b/vp9/common/vp9_alloccommon.c
@@ -157,28 +157,18 @@ void vp9_setup_version(VP9_COMMON *cm) {
cm->no_lpf = 0;
cm->filter_type = NORMAL_LOOPFILTER;
cm->use_bilinear_mc_filter = 0;
- cm->full_pixel = 0;
break;
case 1:
cm->no_lpf = 0;
cm->filter_type = SIMPLE_LOOPFILTER;
cm->use_bilinear_mc_filter = 1;
- cm->full_pixel = 0;
break;
case 2:
case 3:
cm->no_lpf = 1;
cm->filter_type = NORMAL_LOOPFILTER;
cm->use_bilinear_mc_filter = 1;
- cm->full_pixel = 0;
break;
- // Full pel only code deprecated in experimental code base
- // case 3:
- // cm->no_lpf = 1;
- // cm->filter_type = SIMPLE_LOOPFILTER;
- // cm->use_bilinear_mc_filter = 1;
- // cm->full_pixel = 1;
- // break;
}
}
void vp9_create_common(VP9_COMMON *oci) {
@@ -194,7 +184,6 @@ void vp9_create_common(VP9_COMMON *oci) {
oci->no_lpf = 0;
oci->filter_type = NORMAL_LOOPFILTER;
oci->use_bilinear_mc_filter = 0;
- oci->full_pixel = 0;
oci->clr_type = REG_YUV;
oci->clamp_type = RECON_CLAMP_REQUIRED;