summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-07-23 12:37:41 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-07-23 12:37:41 -0700
commita97d4ab123bdd6286742afe84f8c0a0366eeaf79 (patch)
tree877beda1ac8a32d455af532ed01a3545efefc777
parent8dede954c7d3cba10692dbf9744e2c3d3a94c72b (diff)
downloadlibvpx-a97d4ab123bdd6286742afe84f8c0a0366eeaf79.tar
libvpx-a97d4ab123bdd6286742afe84f8c0a0366eeaf79.tar.gz
libvpx-a97d4ab123bdd6286742afe84f8c0a0366eeaf79.tar.bz2
libvpx-a97d4ab123bdd6286742afe84f8c0a0366eeaf79.zip
Removing MODE_COUNT_TESTING from vp9_entropymode.c.
Change-Id: I5367bc1d9e660d86879d285a6f146d8a47e62464
-rw-r--r--vp9/common/vp9_entropymode.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/vp9/common/vp9_entropymode.c b/vp9/common/vp9_entropymode.c
index 3b05090ab..0e52e0987 100644
--- a/vp9/common/vp9_entropymode.c
+++ b/vp9/common/vp9_entropymode.c
@@ -427,46 +427,11 @@ static void update_mode_probs(int n_modes,
dst_probs[t] = update_ct(pre_probs[t], probs[t], branch_ct[t]);
}
-// #define MODE_COUNT_TESTING
void vp9_adapt_mode_probs(VP9_COMMON *cm) {
int i, j;
FRAME_CONTEXT *fc = &cm->fc;
FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx];
-#ifdef MODE_COUNT_TESTING
- int t;
-
- printf("static const unsigned int\nymode_counts"
- "[VP9_INTRA_MODES] = {\n");
- for (t = 0; t < VP9_INTRA_MODES; ++t)
- printf("%d, ", fc->ymode_counts[t]);
- printf("};\n");
- printf("static const unsigned int\nuv_mode_counts"
- "[VP9_INTRA_MODES] [VP9_INTRA_MODES] = {\n");
- for (i = 0; i < VP9_INTRA_MODES; ++i) {
- printf(" {");
- for (t = 0; t < VP9_INTRA_MODES; ++t)
- printf("%d, ", fc->uv_mode_counts[i][t]);
- printf("},\n");
- }
- printf("};\n");
- printf("static const unsigned int\nbmode_counts"
- "[VP9_NKF_BINTRAMODES] = {\n");
- for (t = 0; t < VP9_NKF_BINTRAMODES; ++t)
- printf("%d, ", fc->bmode_counts[t]);
- printf("};\n");
- printf("static const unsigned int\ni8x8_mode_counts"
- "[VP9_I8X8_MODES] = {\n");
- for (t = 0; t < VP9_I8X8_MODES; ++t)
- printf("%d, ", fc->i8x8_mode_counts[t]);
- printf("};\n");
- printf("static const unsigned int\nmbsplit_counts"
- "[VP9_NUMMBSPLITS] = {\n");
- for (t = 0; t < VP9_NUMMBSPLITS; ++t)
- printf("%d, ", fc->mbsplit_counts[t]);
- printf("};\n");
-#endif
-
for (i = 0; i < INTRA_INTER_CONTEXTS; i++)
fc->intra_inter_prob[i] = update_ct2(pre_fc->intra_inter_prob[i],
fc->intra_inter_count[i]);