| Index: source/libvpx/vp8/encoder/mcomp.c
|
| ===================================================================
|
| --- source/libvpx/vp8/encoder/mcomp.c (revision 195011)
|
| +++ source/libvpx/vp8/encoder/mcomp.c (working copy)
|
| @@ -18,7 +18,7 @@
|
| #include <math.h>
|
| #include "vp8/common/findnearmv.h"
|
|
|
| -#ifdef ENTROPY_STATS
|
| +#ifdef VP8_ENTROPY_STATS
|
| static int mv_ref_ct [31] [4] [2];
|
| static int mv_mode_cts [4] [2];
|
| #endif
|
| @@ -1912,7 +1912,7 @@
|
| + mv_err_cost(&this_mv, center_mv, mvcost, x->errorperbit);
|
| }
|
|
|
| -#ifdef ENTROPY_STATS
|
| +#ifdef VP8_ENTROPY_STATS
|
| void print_mode_context(void)
|
| {
|
| FILE *f = fopen("modecont.c", "w");
|
| @@ -1965,8 +1965,8 @@
|
| fclose(f);
|
| }
|
|
|
| -/* MV ref count ENTROPY_STATS stats code */
|
| -#ifdef ENTROPY_STATS
|
| +/* MV ref count VP8_ENTROPY_STATS stats code */
|
| +#ifdef VP8_ENTROPY_STATS
|
| void init_mv_ref_counts()
|
| {
|
| vpx_memset(mv_ref_ct, 0, sizeof(mv_ref_ct));
|
| @@ -2020,6 +2020,6 @@
|
| }
|
| }
|
|
|
| -#endif/* END MV ref count ENTROPY_STATS stats code */
|
| +#endif/* END MV ref count VP8_ENTROPY_STATS stats code */
|
|
|
| #endif
|
|
|