summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_speed_features.h
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2014-10-20 15:00:24 -0700
committerJingning Han <jingning@google.com>2014-10-20 17:03:38 -0700
commite62ce79e1a297985b86f5dde8a88ab723b1266ba (patch)
tree87bf20a97f778cf6343a0622ce88158f34fd43f4 /vp9/encoder/vp9_speed_features.h
parent9f128b3ed9fc2f431444f7cea238a288fb0e470c (diff)
downloadlibvpx-e62ce79e1a297985b86f5dde8a88ab723b1266ba.tar
libvpx-e62ce79e1a297985b86f5dde8a88ab723b1266ba.tar.gz
libvpx-e62ce79e1a297985b86f5dde8a88ab723b1266ba.tar.bz2
libvpx-e62ce79e1a297985b86f5dde8a88ab723b1266ba.zip
Remove deprecated use_lastframe_partitioning feature
This speed feature has been deprecated in both yt and rtc coding modes. This commit removes the related operations. Change-Id: I079c79c6adafe45581af2ebf8b98faebcface1ce
Diffstat (limited to 'vp9/encoder/vp9_speed_features.h')
-rw-r--r--vp9/encoder/vp9_speed_features.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/vp9/encoder/vp9_speed_features.h b/vp9/encoder/vp9_speed_features.h
index 951b4af22..58372aca8 100644
--- a/vp9/encoder/vp9_speed_features.h
+++ b/vp9/encoder/vp9_speed_features.h
@@ -93,12 +93,6 @@ typedef enum {
} MOTION_THRESHOLD;
typedef enum {
- LAST_FRAME_PARTITION_OFF = 0,
- LAST_FRAME_PARTITION_LOW_MOTION = 1,
- LAST_FRAME_PARTITION_ALL = 2
-} LAST_FRAME_PARTITION_METHOD;
-
-typedef enum {
USE_FULL_RD = 0,
USE_LARGESTALL,
USE_TX_8X8
@@ -242,15 +236,6 @@ typedef struct SPEED_FEATURES {
// level within a frame.
int allow_skip_recode;
- // This variable allows us to reuse the last frames partition choices
- // (64x64 v 32x32 etc) for this frame. It can be set to only use the last
- // frame as a starting point in low motion scenes or always use it. If set
- // we use last partitioning_redo frequency to determine how often to redo
- // the partitioning from scratch. Adjust_partitioning_from_last_frame
- // enables us to adjust up or down one partitioning from the last frames
- // partitioning.
- LAST_FRAME_PARTITION_METHOD use_lastframe_partitioning;
-
// The threshold is to determine how slow the motino is, it is used when
// use_lastframe_partitioning is set to LAST_FRAME_PARTITION_LOW_MOTION
MOTION_THRESHOLD lf_motion_threshold;
@@ -264,8 +249,6 @@ typedef struct SPEED_FEATURES {
// precise but significantly faster than the non lp version.
int use_lp32x32fdct;
- // TODO(JBB): remove this as its no longer used.
-
// After looking at the first set of modes (set by index here), skip
// checking modes for reference frames that don't match the reference frame
// of the best so far.