summaryrefslogtreecommitdiff
path: root/vp8/common/entropymv.c
diff options
context:
space:
mode:
authorDeb Mukherjee <debargha@google.com>2012-02-23 11:47:18 -0800
committerDeb Mukherjee <debargha@google.com>2012-02-23 11:47:18 -0800
commitfb472c5b645ddb6bcb38ccdb1e7dcc0cc3751cc7 (patch)
tree021187a25b9e821742071eec2b3609e5cf69c05b /vp8/common/entropymv.c
parent18e90d744eba2d28ad96a566565bbf5642d24b59 (diff)
downloadlibvpx-fb472c5b645ddb6bcb38ccdb1e7dcc0cc3751cc7.tar
libvpx-fb472c5b645ddb6bcb38ccdb1e7dcc0cc3751cc7.tar.gz
libvpx-fb472c5b645ddb6bcb38ccdb1e7dcc0cc3751cc7.tar.bz2
libvpx-fb472c5b645ddb6bcb38ccdb1e7dcc0cc3751cc7.zip
Clean ups and minor changes in high precision mv with 8-tap interpolation
* Removes EDGE_PIXEL_FILTER for external sanpshot * changes the default 8-tap filter based on high precision results in http://www.corp.google.com/~debargha/vp8_results/enhinterpn.html * changes the default prob tables for high-precision mv encoding to favor zeros in the last bit (i.e. quarter pel). This is only important for short clips. Change-Id: I02bb0de8679d9eec06cdbcc8160dbf073cd847a4
Diffstat (limited to 'vp8/common/entropymv.c')
-rw-r--r--vp8/common/entropymv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/common/entropymv.c b/vp8/common/entropymv.c
index 1e0690a58..4959fe92e 100644
--- a/vp8/common/entropymv.c
+++ b/vp8/common/entropymv.c
@@ -33,14 +33,14 @@ const MV_CONTEXT vp8_default_mv_context[2] =
/* row */
162, /* is short */
128, /* sign */
- 230, 215, 175, 140, 160, 180, 160, 140, 180, 214, 150, 39, 120, 156, 160, /* short tree */
+ 220, 204, 180, 192, 192, 119, 192, 192, 180, 140, 192, 192, 224, 224, 224, /* short tree */
128, 129, 132, 75, 145, 178, 206, 239, 254, 254, 254 /* long bits */
}},
{{
/* same for column */
164, /* is short */
128,
- 220, 204, 180, 170, 140, 119, 180, 235, 180, 140, 185, 230, 229, 228, 200,
+ 220, 204, 180, 192, 192, 119, 192, 192, 180, 140, 192, 192, 224, 224, 224, /* short tree */
128, 130, 130, 74, 148, 180, 203, 236, 254, 254, 254 /* long bits */
}}
};