2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
|
|
|
#include "vp9/common/vp9_entropymv.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-10 21:00:43 +02:00
|
|
|
#define MV_COUNT_SAT 20
|
|
|
|
#define MV_MAX_UPDATE_FACTOR 128
|
2012-07-26 22:42:07 +02:00
|
|
|
|
2012-09-06 18:07:42 +02:00
|
|
|
/* Integer pel reference mv threshold for use of high-precision 1/8 mv */
|
2013-07-25 23:13:44 +02:00
|
|
|
#define COMPANDED_MVREF_THRESH 8
|
2012-09-06 18:07:42 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_tree_index vp9_mv_joint_tree[2 * MV_JOINTS - 2] = {
|
2012-07-26 22:42:07 +02:00
|
|
|
-MV_JOINT_ZERO, 2,
|
|
|
|
-MV_JOINT_HNZVZ, 4,
|
|
|
|
-MV_JOINT_HZVNZ, -MV_JOINT_HNZVNZ
|
|
|
|
};
|
2013-04-11 22:01:52 +02:00
|
|
|
struct vp9_token vp9_mv_joint_encodings[MV_JOINTS];
|
2012-07-26 22:42:07 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_tree_index vp9_mv_class_tree[2 * MV_CLASSES - 2] = {
|
2012-07-26 22:42:07 +02:00
|
|
|
-MV_CLASS_0, 2,
|
|
|
|
-MV_CLASS_1, 4,
|
|
|
|
6, 8,
|
|
|
|
-MV_CLASS_2, -MV_CLASS_3,
|
|
|
|
10, 12,
|
|
|
|
-MV_CLASS_4, -MV_CLASS_5,
|
2013-03-12 05:51:00 +01:00
|
|
|
-MV_CLASS_6, 14,
|
|
|
|
16, 18,
|
|
|
|
-MV_CLASS_7, -MV_CLASS_8,
|
|
|
|
-MV_CLASS_9, -MV_CLASS_10,
|
2012-07-26 22:42:07 +02:00
|
|
|
};
|
2013-04-11 22:01:52 +02:00
|
|
|
struct vp9_token vp9_mv_class_encodings[MV_CLASSES];
|
2012-07-26 22:42:07 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_tree_index vp9_mv_class0_tree [2 * CLASS0_SIZE - 2] = {
|
2012-07-26 22:42:07 +02:00
|
|
|
-0, -1,
|
|
|
|
};
|
2013-04-11 22:01:52 +02:00
|
|
|
struct vp9_token vp9_mv_class0_encodings[CLASS0_SIZE];
|
2012-07-26 22:42:07 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_tree_index vp9_mv_fp_tree [2 * 4 - 2] = {
|
2012-07-26 22:42:07 +02:00
|
|
|
-0, 2,
|
|
|
|
-1, 4,
|
|
|
|
-2, -3
|
|
|
|
};
|
2013-04-11 22:01:52 +02:00
|
|
|
struct vp9_token vp9_mv_fp_encodings[4];
|
2012-07-26 22:42:07 +02:00
|
|
|
|
2013-07-11 02:44:45 +02:00
|
|
|
static const nmv_context default_nmv_context = {
|
2012-07-26 22:42:07 +02:00
|
|
|
{32, 64, 96},
|
|
|
|
{
|
|
|
|
{ /* vert component */
|
2013-03-12 05:51:00 +01:00
|
|
|
128, /* sign */
|
|
|
|
{224, 144, 192, 168, 192, 176, 192, 198, 198, 245}, /* class */
|
|
|
|
{216}, /* class0 */
|
|
|
|
{136, 140, 148, 160, 176, 192, 224, 234, 234, 240}, /* bits */
|
|
|
|
{{128, 128, 64}, {96, 112, 64}}, /* class0_fp */
|
|
|
|
{64, 96, 64}, /* fp */
|
|
|
|
160, /* class0_hp bit */
|
|
|
|
128, /* hp */
|
2012-07-26 22:42:07 +02:00
|
|
|
},
|
|
|
|
{ /* hor component */
|
2013-03-12 05:51:00 +01:00
|
|
|
128, /* sign */
|
|
|
|
{216, 128, 176, 160, 176, 176, 192, 198, 198, 208}, /* class */
|
|
|
|
{208}, /* class0 */
|
|
|
|
{136, 140, 148, 160, 176, 192, 224, 234, 234, 240}, /* bits */
|
|
|
|
{{128, 128, 64}, {96, 112, 64}}, /* class0_fp */
|
|
|
|
{64, 96, 64}, /* fp */
|
|
|
|
160, /* class0_hp bit */
|
|
|
|
128, /* hp */
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
#define mv_class_base(c) ((c) ? (CLASS0_SIZE << (c + 2)) : 0)
|
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
MV_CLASS_TYPE vp9_get_mv_class(int z, int *offset) {
|
2013-07-10 23:27:20 +02:00
|
|
|
MV_CLASS_TYPE c = MV_CLASS_0;
|
2012-07-26 22:42:07 +02:00
|
|
|
if (z < CLASS0_SIZE * 8) c = MV_CLASS_0;
|
|
|
|
else if (z < CLASS0_SIZE * 16) c = MV_CLASS_1;
|
|
|
|
else if (z < CLASS0_SIZE * 32) c = MV_CLASS_2;
|
|
|
|
else if (z < CLASS0_SIZE * 64) c = MV_CLASS_3;
|
|
|
|
else if (z < CLASS0_SIZE * 128) c = MV_CLASS_4;
|
|
|
|
else if (z < CLASS0_SIZE * 256) c = MV_CLASS_5;
|
|
|
|
else if (z < CLASS0_SIZE * 512) c = MV_CLASS_6;
|
|
|
|
else if (z < CLASS0_SIZE * 1024) c = MV_CLASS_7;
|
2013-03-06 21:02:15 +01:00
|
|
|
else if (z < CLASS0_SIZE * 2048) c = MV_CLASS_8;
|
|
|
|
else if (z < CLASS0_SIZE * 4096) c = MV_CLASS_9;
|
2013-03-12 05:51:00 +01:00
|
|
|
else if (z < CLASS0_SIZE * 8192) c = MV_CLASS_10;
|
2012-07-26 22:42:07 +02:00
|
|
|
else assert(0);
|
|
|
|
if (offset)
|
|
|
|
*offset = z - mv_class_base(c);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2013-06-19 03:28:10 +02:00
|
|
|
int vp9_use_mv_hp(const MV *ref) {
|
2013-03-27 22:22:30 +01:00
|
|
|
return (abs(ref->row) >> 3) < COMPANDED_MVREF_THRESH &&
|
|
|
|
(abs(ref->col) >> 3) < COMPANDED_MVREF_THRESH;
|
2012-09-06 18:07:42 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
int vp9_get_mv_mag(MV_CLASS_TYPE c, int offset) {
|
2012-07-26 22:42:07 +02:00
|
|
|
return mv_class_base(c) + offset;
|
|
|
|
}
|
|
|
|
|
2013-06-19 03:28:10 +02:00
|
|
|
static void inc_mv_component(int v, nmv_component_counts *comp_counts,
|
|
|
|
int incr, int usehp) {
|
2012-07-26 22:42:07 +02:00
|
|
|
int s, z, c, o, d, e, f;
|
2013-04-02 03:23:04 +02:00
|
|
|
if (!incr)
|
|
|
|
return;
|
2012-07-26 22:42:07 +02:00
|
|
|
assert (v != 0); /* should not be zero */
|
|
|
|
s = v < 0;
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->sign[s] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
z = (s ? -v : v) - 1; /* magnitude - 1 */
|
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
c = vp9_get_mv_class(z, &o);
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->classes[c] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
|
|
|
|
d = (o >> 3); /* int mv data */
|
|
|
|
f = (o >> 1) & 3; /* fractional pel mv data */
|
|
|
|
e = (o & 1); /* high precision mv data */
|
|
|
|
if (c == MV_CLASS_0) {
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->class0[d] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
} else {
|
2013-04-02 03:23:04 +02:00
|
|
|
int i;
|
|
|
|
int b = c + CLASS0_BITS - 1; // number of bits
|
2012-07-26 22:42:07 +02:00
|
|
|
for (i = 0; i < b; ++i)
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->bits[i][((d >> i) & 1)] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Code the fractional pel bits */
|
|
|
|
if (c == MV_CLASS_0) {
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->class0_fp[d][f] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
} else {
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->fp[f] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Code the high precision bit */
|
|
|
|
if (usehp) {
|
|
|
|
if (c == MV_CLASS_0) {
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->class0_hp[e] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
} else {
|
2013-06-19 03:28:10 +02:00
|
|
|
comp_counts->hp[e] += incr;
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void counts_to_context(nmv_component_counts *mvcomp, int usehp) {
|
|
|
|
int v;
|
|
|
|
vpx_memset(mvcomp->sign, 0, sizeof(nmv_component_counts) - sizeof(mvcomp->mvcount));
|
|
|
|
for (v = 1; v <= MV_MAX; v++) {
|
2013-06-19 03:28:10 +02:00
|
|
|
inc_mv_component(-v, mvcomp, mvcomp->mvcount[MV_MAX - v], usehp);
|
|
|
|
inc_mv_component( v, mvcomp, mvcomp->mvcount[MV_MAX + v], usehp);
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-25 00:03:00 +02:00
|
|
|
void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) {
|
2013-04-17 20:21:28 +02:00
|
|
|
const MV_JOINT_TYPE j = vp9_get_mv_joint(mv);
|
2013-07-25 00:03:00 +02:00
|
|
|
++counts->joints[j];
|
|
|
|
|
2013-04-17 20:21:28 +02:00
|
|
|
if (mv_joint_vertical(j))
|
2013-07-25 00:03:00 +02:00
|
|
|
++counts->comps[0].mvcount[MV_MAX + mv->row];
|
2013-04-02 03:23:04 +02:00
|
|
|
|
2013-04-17 20:21:28 +02:00
|
|
|
if (mv_joint_horizontal(j))
|
2013-07-25 00:03:00 +02:00
|
|
|
++counts->comps[1].mvcount[MV_MAX + mv->col];
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
|
2013-07-25 23:13:44 +02:00
|
|
|
static vp9_prob adapt_prob(vp9_prob prep, const unsigned int ct[2]) {
|
|
|
|
return merge_probs2(prep, ct, MV_COUNT_SAT, MV_MAX_UPDATE_FACTOR);
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
|
2013-03-27 22:22:30 +01:00
|
|
|
void vp9_counts_process(nmv_context_counts *nmv_count, int usehp) {
|
|
|
|
counts_to_context(&nmv_count->comps[0], usehp);
|
|
|
|
counts_to_context(&nmv_count->comps[1], usehp);
|
2012-11-09 19:52:08 +01:00
|
|
|
}
|
|
|
|
|
2013-03-11 17:34:05 +01:00
|
|
|
static unsigned int adapt_probs(unsigned int i,
|
|
|
|
vp9_tree tree,
|
|
|
|
vp9_prob this_probs[],
|
|
|
|
const vp9_prob last_probs[],
|
|
|
|
const unsigned int num_events[]) {
|
|
|
|
|
2013-07-25 02:44:04 +02:00
|
|
|
|
|
|
|
const unsigned int left = tree[i] <= 0
|
2013-03-27 22:22:30 +01:00
|
|
|
? num_events[-tree[i]]
|
|
|
|
: adapt_probs(tree[i], tree, this_probs, last_probs, num_events);
|
|
|
|
|
2013-07-25 02:44:04 +02:00
|
|
|
const unsigned int right = tree[i + 1] <= 0
|
2013-03-27 22:22:30 +01:00
|
|
|
? num_events[-tree[i + 1]]
|
|
|
|
: adapt_probs(tree[i + 1], tree, this_probs, last_probs, num_events);
|
2013-07-25 02:44:04 +02:00
|
|
|
const unsigned int ct[2] = { left, right };
|
2013-07-25 23:13:44 +02:00
|
|
|
this_probs[i >> 1] = adapt_prob(last_probs[i >> 1], ct);
|
2013-03-11 17:34:05 +01:00
|
|
|
return left + right;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-02 20:21:16 +02:00
|
|
|
void vp9_adapt_mv_probs(VP9_COMMON *cm, int allow_hp) {
|
2013-03-11 17:34:05 +01:00
|
|
|
int i, j;
|
|
|
|
|
2013-07-20 02:33:10 +02:00
|
|
|
FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx];
|
|
|
|
|
2013-07-17 19:25:09 +02:00
|
|
|
nmv_context *ctx = &cm->fc.nmvc;
|
2013-07-20 02:33:10 +02:00
|
|
|
nmv_context *pre_ctx = &pre_fc->nmvc;
|
2013-07-24 02:02:08 +02:00
|
|
|
nmv_context_counts *cts = &cm->counts.mv;
|
2013-07-17 19:25:09 +02:00
|
|
|
|
2013-08-02 20:21:16 +02:00
|
|
|
vp9_counts_process(cts, allow_hp);
|
2013-07-17 19:25:09 +02:00
|
|
|
|
|
|
|
adapt_probs(0, vp9_mv_joint_tree, ctx->joints, pre_ctx->joints, cts->joints);
|
2013-03-11 17:34:05 +01:00
|
|
|
|
2012-07-26 22:42:07 +02:00
|
|
|
for (i = 0; i < 2; ++i) {
|
2013-07-25 23:13:44 +02:00
|
|
|
ctx->comps[i].sign = adapt_prob(pre_ctx->comps[i].sign, cts->comps[i].sign);
|
2013-07-17 19:25:09 +02:00
|
|
|
adapt_probs(0, vp9_mv_class_tree, ctx->comps[i].classes,
|
|
|
|
pre_ctx->comps[i].classes, cts->comps[i].classes);
|
|
|
|
adapt_probs(0, vp9_mv_class0_tree, ctx->comps[i].class0,
|
|
|
|
pre_ctx->comps[i].class0, cts->comps[i].class0);
|
|
|
|
|
|
|
|
for (j = 0; j < MV_OFFSET_BITS; ++j)
|
2013-07-25 23:13:44 +02:00
|
|
|
ctx->comps[i].bits[j] = adapt_prob(pre_ctx->comps[i].bits[j],
|
|
|
|
cts->comps[i].bits[j]);
|
2013-07-17 19:25:09 +02:00
|
|
|
|
|
|
|
for (j = 0; j < CLASS0_SIZE; ++j)
|
|
|
|
adapt_probs(0, vp9_mv_fp_tree, ctx->comps[i].class0_fp[j],
|
|
|
|
pre_ctx->comps[i].class0_fp[j], cts->comps[i].class0_fp[j]);
|
|
|
|
|
|
|
|
adapt_probs(0, vp9_mv_fp_tree, ctx->comps[i].fp, pre_ctx->comps[i].fp,
|
|
|
|
cts->comps[i].fp);
|
|
|
|
|
2013-08-02 20:21:16 +02:00
|
|
|
if (allow_hp) {
|
2013-07-25 23:13:44 +02:00
|
|
|
ctx->comps[i].class0_hp = adapt_prob(pre_ctx->comps[i].class0_hp,
|
|
|
|
cts->comps[i].class0_hp);
|
|
|
|
ctx->comps[i].hp = adapt_prob(pre_ctx->comps[i].hp, cts->comps[i].hp);
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
void vp9_entropy_mv_init() {
|
2012-10-31 01:12:12 +01:00
|
|
|
vp9_tokens_from_tree(vp9_mv_joint_encodings, vp9_mv_joint_tree);
|
|
|
|
vp9_tokens_from_tree(vp9_mv_class_encodings, vp9_mv_class_tree);
|
|
|
|
vp9_tokens_from_tree(vp9_mv_class0_encodings, vp9_mv_class0_tree);
|
|
|
|
vp9_tokens_from_tree(vp9_mv_fp_encodings, vp9_mv_fp_tree);
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_init_mv_probs(VP9_COMMON *cm) {
|
2013-07-11 02:44:45 +02:00
|
|
|
cm->fc.nmvc = default_nmv_context;
|
2012-07-26 22:42:07 +02:00
|
|
|
}
|