summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_onyxc_int.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-07-17 16:50:52 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-07-17 16:50:52 -0700
commitf9f453ec8d59b69bc57763f3c4bf14527435297e (patch)
tree61896c1477f9f129daa2766f818f88f01eb7d3f8 /vp9/common/vp9_onyxc_int.h
parentfacecd80da372fa3364c51e9b34ff447ef1ae7b6 (diff)
downloadlibvpx-f9f453ec8d59b69bc57763f3c4bf14527435297e.tar
libvpx-f9f453ec8d59b69bc57763f3c4bf14527435297e.tar.gz
libvpx-f9f453ec8d59b69bc57763f3c4bf14527435297e.tar.bz2
libvpx-f9f453ec8d59b69bc57763f3c4bf14527435297e.zip
Removing kf_{y, uv}_mode_prob arrays from VP9Common.
These arrays have constant values (no any updates). Removing two corresponding memcpy calls. Making a little cleanup in vp9_entropymode.h as well: removing redundant 'extern' keyword and moving all function declarations at the end. Change-Id: Ia16b38b46aec2e2500f5df29c40a297ae241dede
Diffstat (limited to 'vp9/common/vp9_onyxc_int.h')
-rw-r--r--vp9/common/vp9_onyxc_int.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/vp9/common/vp9_onyxc_int.h b/vp9/common/vp9_onyxc_int.h
index 8d5743bf8..f473f391c 100644
--- a/vp9/common/vp9_onyxc_int.h
+++ b/vp9/common/vp9_onyxc_int.h
@@ -227,13 +227,6 @@ typedef struct VP9Common {
PARTITION_CONTEXT *above_seg_context;
PARTITION_CONTEXT left_seg_context[8];
- /* keyframe block modes are predicted by their above, left neighbors */
-
- vp9_prob kf_y_mode_prob[VP9_INTRA_MODES]
- [VP9_INTRA_MODES]
- [VP9_INTRA_MODES - 1];
- vp9_prob kf_uv_mode_prob[VP9_INTRA_MODES] [VP9_INTRA_MODES - 1];
-
// Context probabilities for reference frame prediction
int allow_comp_inter_inter;
MV_REFERENCE_FRAME comp_fixed_ref;