summaryrefslogtreecommitdiff
path: root/vp8/common
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2012-02-16 17:02:17 +0000
committerPaul Wilkins <paulwilkins@google.com>2012-02-16 17:21:20 +0000
commit79d330d7d5f948f66c38fc7a7bddb24134189ba8 (patch)
tree6a704626e8f37e2389949dd2512e26a44fffea58 /vp8/common
parent8b71f3e0593a5163368412c4976238c6b174a344 (diff)
downloadlibvpx-79d330d7d5f948f66c38fc7a7bddb24134189ba8.tar
libvpx-79d330d7d5f948f66c38fc7a7bddb24134189ba8.tar.gz
libvpx-79d330d7d5f948f66c38fc7a7bddb24134189ba8.tar.bz2
libvpx-79d330d7d5f948f66c38fc7a7bddb24134189ba8.zip
Code simplification
Removal of the pickinter.c and .h files and calls to this code. Removal of some code relating to real time and one pass settings though there is more to be done in this regard. However, vp8_set_speed_features() now only supports modes 0 and 1 and speeds up to 3 so rd should always be set. Change-Id: I62c0c1b6154ab499785baef310536080e87bc4d8
Diffstat (limited to 'vp8/common')
-rw-r--r--vp8/common/alloccommon.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/vp8/common/alloccommon.c b/vp8/common/alloccommon.c
index 37e99fbd6..0f5c48d91 100644
--- a/vp8/common/alloccommon.c
+++ b/vp8/common/alloccommon.c
@@ -186,17 +186,19 @@ void vp8_setup_version(VP8_COMMON *cm)
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;
- case 3:
- cm->no_lpf = 1;
- cm->filter_type = SIMPLE_LOOPFILTER;
- cm->use_bilinear_mc_filter = 1;
- cm->full_pixel = 1;
- 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 vp8_create_common(VP8_COMMON *oci)