summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2013-03-18 15:28:51 -0700
committerRonald S. Bultje <rbultje@google.com>2013-03-18 15:39:04 -0700
commit65d22825e29f29a71d86dcbe8dc7f5ae55727557 (patch)
tree0372eae0b3da79f3ec9c63856443d097ecc79226 /vp8/encoder/onyx_if.c
parentb99dce688152c714fe0bf8d6a49ba62cd7eabdf4 (diff)
downloadlibvpx-65d22825e29f29a71d86dcbe8dc7f5ae55727557.tar
libvpx-65d22825e29f29a71d86dcbe8dc7f5ae55727557.tar.gz
libvpx-65d22825e29f29a71d86dcbe8dc7f5ae55727557.tar.bz2
libvpx-65d22825e29f29a71d86dcbe8dc7f5ae55727557.zip
ENTROPY_STATS -> VP8_ENTROPY_STATS in vp8/.
Change-Id: I0027483e47900de84394de47c3273cc8292e6119
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 92f981857..124b1cb35 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -111,7 +111,7 @@ extern int skip_false_count;
#endif
-#ifdef ENTROPY_STATS
+#ifdef VP8_ENTROPY_STATS
extern int intra_mode_stats[10][10][10];
#endif
@@ -1806,7 +1806,7 @@ struct VP8_COMP* vp8_create_compressor(VP8_CONFIG *oxcf)
else
cpi->cyclic_refresh_map = (signed char *) NULL;
-#ifdef ENTROPY_STATS
+#ifdef VP8_ENTROPY_STATS
init_context_counters();
#endif
@@ -1924,7 +1924,7 @@ struct VP8_COMP* vp8_create_compressor(VP8_CONFIG *oxcf)
cpi->mb.rd_thresh_mult[i] = 128;
}
-#ifdef ENTROPY_STATS
+#ifdef VP8_ENTROPY_STATS
init_mv_ref_counts();
#endif
@@ -2061,7 +2061,7 @@ void vp8_remove_compressor(VP8_COMP **ptr)
#endif
-#ifdef ENTROPY_STATS
+#ifdef VP8_ENTROPY_STATS
print_context_counters();
print_tree_update_probs();
print_mode_context();
@@ -2243,7 +2243,7 @@ void vp8_remove_compressor(VP8_COMP **ptr)
}
#endif
-#ifdef ENTROPY_STATS
+#ifdef VP8_ENTROPY_STATS
{
int i, j, k;
FILE *fmode = fopen("modecontext.c", "w");