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"
|
2013-01-15 15:43:35 +01:00
|
|
|
#include "vp9/common/vp9_seg_common.h"
|
|
|
|
#include "vp9/common/vp9_alloccommon.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2011-08-05 01:30:27 +02:00
|
|
|
|
2013-06-03 19:39:40 +02:00
|
|
|
static const vp9_prob default_kf_uv_probs[VP9_INTRA_MODES]
|
|
|
|
[VP9_INTRA_MODES - 1] = {
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 144, 11, 54, 157, 195, 130, 46, 58, 108 } /* y = dc */,
|
|
|
|
{ 118, 15, 123, 148, 131, 101, 44, 93, 131 } /* y = v */,
|
|
|
|
{ 113, 12, 23, 188, 226, 142, 26, 32, 125 } /* y = h */,
|
|
|
|
{ 120, 11, 50, 123, 163, 135, 64, 77, 103 } /* y = d45 */,
|
|
|
|
{ 113, 9, 36, 155, 111, 157, 32, 44, 161 } /* y = d135 */,
|
|
|
|
{ 116, 9, 55, 176, 76, 96, 37, 61, 149 } /* y = d117 */,
|
|
|
|
{ 115, 9, 28, 141, 161, 167, 21, 25, 193 } /* y = d153 */,
|
|
|
|
{ 120, 12, 32, 145, 195, 142, 32, 38, 86 } /* y = d27 */,
|
|
|
|
{ 116, 12, 64, 120, 140, 125, 49, 115, 121 } /* y = d63 */,
|
|
|
|
{ 102, 19, 66, 162, 182, 122, 35, 59, 128 } /* y = tm */
|
2011-08-05 01:30:27 +02:00
|
|
|
};
|
2011-12-08 20:43:09 +01:00
|
|
|
|
2013-06-03 19:39:40 +02:00
|
|
|
static const vp9_prob default_if_y_probs[BLOCK_SIZE_GROUPS]
|
|
|
|
[VP9_INTRA_MODES - 1] = {
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 65, 32, 18, 144, 162, 194, 41, 51, 98 } /* block_size < 8x8 */,
|
|
|
|
{ 132, 68, 18, 165, 217, 196, 45, 40, 78 } /* block_size < 16x16 */,
|
|
|
|
{ 173, 80, 19, 176, 240, 193, 64, 35, 46 } /* block_size < 32x32 */,
|
|
|
|
{ 221, 135, 38, 194, 248, 121, 96, 85, 29 } /* block_size >= 32x32 */
|
2011-08-05 01:30:27 +02:00
|
|
|
};
|
|
|
|
|
2013-06-03 19:39:40 +02:00
|
|
|
static const vp9_prob default_if_uv_probs[VP9_INTRA_MODES]
|
|
|
|
[VP9_INTRA_MODES - 1] = {
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 120, 7, 76, 176, 208, 126, 28, 54, 103 } /* y = dc */,
|
|
|
|
{ 48, 12, 154, 155, 139, 90, 34, 117, 119 } /* y = v */,
|
|
|
|
{ 67, 6, 25, 204, 243, 158, 13, 21, 96 } /* y = h */,
|
|
|
|
{ 97, 5, 44, 131, 176, 139, 48, 68, 97 } /* y = d45 */,
|
|
|
|
{ 83, 5, 42, 156, 111, 152, 26, 49, 152 } /* y = d135 */,
|
|
|
|
{ 80, 5, 58, 178, 74, 83, 33, 62, 145 } /* y = d117 */,
|
|
|
|
{ 86, 5, 32, 154, 192, 168, 14, 22, 163 } /* y = d153 */,
|
|
|
|
{ 85, 5, 32, 156, 216, 148, 19, 29, 73 } /* y = d27 */,
|
|
|
|
{ 77, 7, 64, 116, 132, 122, 37, 126, 120 } /* y = d63 */,
|
|
|
|
{ 101, 21, 107, 181, 192, 103, 19, 67, 125 } /* y = tm */
|
2010-05-18 17:58:33 +02:00
|
|
|
};
|
|
|
|
|
2013-06-03 19:39:40 +02:00
|
|
|
const vp9_prob vp9_partition_probs[NUM_FRAME_TYPES][NUM_PARTITION_CONTEXTS]
|
2013-04-23 19:12:18 +02:00
|
|
|
[PARTITION_TYPES - 1] = {
|
2013-06-03 19:39:40 +02:00
|
|
|
{ /* frame_type = keyframe */
|
|
|
|
/* 8x8 -> 4x4 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 158, 97, 94 } /* a/l both not split */,
|
|
|
|
{ 93, 24, 99 } /* a split, l not split */,
|
|
|
|
{ 85, 119, 44 } /* l split, a not split */,
|
|
|
|
{ 62, 59, 67 } /* a/l both split */,
|
2013-06-03 19:39:40 +02:00
|
|
|
/* 16x16 -> 8x8 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 149, 53, 53 } /* a/l both not split */,
|
|
|
|
{ 94, 20, 48 } /* a split, l not split */,
|
|
|
|
{ 83, 53, 24 } /* l split, a not split */,
|
|
|
|
{ 52, 18, 18 } /* a/l both split */,
|
2013-06-03 19:39:40 +02:00
|
|
|
/* 32x32 -> 16x16 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 150, 40, 39 } /* a/l both not split */,
|
|
|
|
{ 78, 12, 26 } /* a split, l not split */,
|
|
|
|
{ 67, 33, 11 } /* l split, a not split */,
|
|
|
|
{ 24, 7, 5 } /* a/l both split */,
|
2013-06-03 19:39:40 +02:00
|
|
|
/* 64x64 -> 32x32 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 174, 35, 49 } /* a/l both not split */,
|
|
|
|
{ 68, 11, 27 } /* a split, l not split */,
|
|
|
|
{ 57, 15, 9 } /* l split, a not split */,
|
|
|
|
{ 12, 3, 3 } /* a/l both split */
|
2013-06-03 19:39:40 +02:00
|
|
|
}, { /* frame_type = interframe */
|
|
|
|
/* 8x8 -> 4x4 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 199, 122, 141 } /* a/l both not split */,
|
|
|
|
{ 147, 63, 159 } /* a split, l not split */,
|
|
|
|
{ 148, 133, 118 } /* l split, a not split */,
|
|
|
|
{ 121, 104, 114 } /* a/l both split */,
|
2013-06-03 19:39:40 +02:00
|
|
|
/* 16x16 -> 8x8 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 174, 73, 87 } /* a/l both not split */,
|
|
|
|
{ 92, 41, 83 } /* a split, l not split */,
|
|
|
|
{ 82, 99, 50 } /* l split, a not split */,
|
|
|
|
{ 53, 39, 39 } /* a/l both split */,
|
2013-06-03 19:39:40 +02:00
|
|
|
/* 32x32 -> 16x16 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 177, 58, 59 } /* a/l both not split */,
|
|
|
|
{ 68, 26, 63 } /* a split, l not split */,
|
|
|
|
{ 52, 79, 25 } /* l split, a not split */,
|
|
|
|
{ 17, 14, 12 } /* a/l both split */,
|
2013-06-03 19:39:40 +02:00
|
|
|
/* 64x64 -> 32x32 */
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 222, 34, 30 } /* a/l both not split */,
|
|
|
|
{ 72, 16, 44 } /* a split, l not split */,
|
|
|
|
{ 58, 32, 12 } /* l split, a not split */,
|
|
|
|
{ 10, 7, 6 } /* a/l both split */
|
2013-06-03 19:39:40 +02:00
|
|
|
}
|
2013-04-16 09:18:02 +02:00
|
|
|
};
|
|
|
|
|
2013-07-01 19:17:15 +02:00
|
|
|
static const vp9_prob default_inter_mode_probs[INTER_MODE_CONTEXTS]
|
|
|
|
[VP9_INTER_MODES - 1] = {
|
|
|
|
{2, 173, 34}, // 0 = both zero mv
|
|
|
|
{7, 145, 85}, // 1 = one zero mv + one a predicted mv
|
|
|
|
{7, 166, 63}, // 2 = two predicted mvs
|
|
|
|
{7, 94, 66}, // 3 = one predicted/zero and one new mv
|
|
|
|
{8, 64, 46}, // 4 = two new mvs
|
|
|
|
{17, 81, 31}, // 5 = one intra neighbour + x
|
|
|
|
{25, 29, 30}, // 6 = two intra neighbours
|
|
|
|
};
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
/* Array indices are identical to previously-existing INTRAMODECONTEXTNODES. */
|
2013-05-31 01:21:48 +02:00
|
|
|
const vp9_tree_index vp9_intra_mode_tree[VP9_INTRA_MODES * 2 - 2] = {
|
2013-05-25 01:13:54 +02:00
|
|
|
-DC_PRED, 2, /* 0 = DC_NODE */
|
|
|
|
-TM_PRED, 4, /* 1 = TM_NODE */
|
|
|
|
-V_PRED, 6, /* 2 = V_NODE */
|
|
|
|
8, 12, /* 3 = COM_NODE */
|
|
|
|
-H_PRED, 10, /* 4 = H_NODE */
|
|
|
|
-D135_PRED, -D117_PRED, /* 5 = D135_NODE */
|
|
|
|
-D45_PRED, 14, /* 6 = D45_NODE */
|
|
|
|
-D63_PRED, 16, /* 7 = D63_NODE */
|
|
|
|
-D153_PRED, -D27_PRED /* 8 = D153_NODE */
|
2010-05-18 17:58:33 +02:00
|
|
|
};
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_tree_index vp9_sb_mv_ref_tree[6] = {
|
2012-08-20 23:43:34 +02:00
|
|
|
-ZEROMV, 2,
|
|
|
|
-NEARESTMV, 4,
|
|
|
|
-NEARMV, -NEWMV
|
|
|
|
};
|
|
|
|
|
2013-04-16 09:18:02 +02:00
|
|
|
const vp9_tree_index vp9_partition_tree[6] = {
|
|
|
|
-PARTITION_NONE, 2,
|
|
|
|
-PARTITION_HORZ, 4,
|
|
|
|
-PARTITION_VERT, -PARTITION_SPLIT
|
|
|
|
};
|
|
|
|
|
2013-05-31 01:21:48 +02:00
|
|
|
struct vp9_token vp9_intra_mode_encodings[VP9_INTRA_MODES];
|
2013-04-11 22:01:52 +02:00
|
|
|
|
2013-06-05 20:21:44 +02:00
|
|
|
struct vp9_token vp9_sb_mv_ref_encoding_array[VP9_INTER_MODES];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-16 09:18:02 +02:00
|
|
|
struct vp9_token vp9_partition_encodings[PARTITION_TYPES];
|
|
|
|
|
2013-06-06 22:44:34 +02:00
|
|
|
static const vp9_prob default_intra_inter_p[INTRA_INTER_CONTEXTS] = {
|
2013-06-08 00:27:47 +02:00
|
|
|
9, 102, 187, 225
|
2013-06-06 22:44:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vp9_prob default_comp_inter_p[COMP_INTER_CONTEXTS] = {
|
2013-06-09 00:13:57 +02:00
|
|
|
239, 183, 119, 96, 41
|
2013-06-06 22:44:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vp9_prob default_comp_ref_p[REF_CONTEXTS] = {
|
2013-06-08 00:27:47 +02:00
|
|
|
50, 126, 123, 221, 226
|
2013-06-06 22:44:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vp9_prob default_single_ref_p[REF_CONTEXTS][2] = {
|
2013-06-08 00:27:47 +02:00
|
|
|
{ 33, 16 },
|
|
|
|
{ 77, 74 },
|
|
|
|
{ 142, 142 },
|
|
|
|
{ 172, 170 },
|
|
|
|
{ 238, 247 }
|
2013-06-06 22:44:34 +02:00
|
|
|
};
|
|
|
|
|
2013-06-08 09:09:44 +02:00
|
|
|
const vp9_prob vp9_default_tx_probs_32x32p[TX_SIZE_CONTEXTS]
|
2013-06-06 20:14:04 +02:00
|
|
|
[TX_SIZE_MAX_SB - 1] = {
|
2013-06-10 21:00:43 +02:00
|
|
|
{ 3, 136, 37, },
|
|
|
|
{ 5, 52, 13, },
|
2013-06-06 20:14:04 +02:00
|
|
|
};
|
2013-06-08 09:09:44 +02:00
|
|
|
const vp9_prob vp9_default_tx_probs_16x16p[TX_SIZE_CONTEXTS]
|
2013-06-06 20:14:04 +02:00
|
|
|
[TX_SIZE_MAX_SB - 2] = {
|
2013-06-10 21:00:43 +02:00
|
|
|
{ 20, 152, },
|
|
|
|
{ 15, 101, },
|
2013-06-06 20:14:04 +02:00
|
|
|
};
|
2013-06-08 09:09:44 +02:00
|
|
|
const vp9_prob vp9_default_tx_probs_8x8p[TX_SIZE_CONTEXTS]
|
2013-06-06 20:14:04 +02:00
|
|
|
[TX_SIZE_MAX_SB - 3] = {
|
2013-06-10 21:00:43 +02:00
|
|
|
{ 100, },
|
|
|
|
{ 66, },
|
2013-06-06 20:14:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void tx_counts_to_branch_counts_32x32(unsigned int *tx_count_32x32p,
|
|
|
|
unsigned int (*ct_32x32p)[2]) {
|
|
|
|
ct_32x32p[0][0] = tx_count_32x32p[TX_4X4];
|
|
|
|
ct_32x32p[0][1] = tx_count_32x32p[TX_8X8] +
|
|
|
|
tx_count_32x32p[TX_16X16] +
|
|
|
|
tx_count_32x32p[TX_32X32];
|
|
|
|
ct_32x32p[1][0] = tx_count_32x32p[TX_8X8];
|
|
|
|
ct_32x32p[1][1] = tx_count_32x32p[TX_16X16] +
|
|
|
|
tx_count_32x32p[TX_32X32];
|
|
|
|
ct_32x32p[2][0] = tx_count_32x32p[TX_16X16];
|
|
|
|
ct_32x32p[2][1] = tx_count_32x32p[TX_32X32];
|
|
|
|
}
|
|
|
|
|
|
|
|
void tx_counts_to_branch_counts_16x16(unsigned int *tx_count_16x16p,
|
|
|
|
unsigned int (*ct_16x16p)[2]) {
|
|
|
|
ct_16x16p[0][0] = tx_count_16x16p[TX_4X4];
|
2013-06-28 01:15:43 +02:00
|
|
|
ct_16x16p[0][1] = tx_count_16x16p[TX_8X8] + tx_count_16x16p[TX_16X16];
|
2013-06-06 20:14:04 +02:00
|
|
|
ct_16x16p[1][0] = tx_count_16x16p[TX_8X8];
|
|
|
|
ct_16x16p[1][1] = tx_count_16x16p[TX_16X16];
|
|
|
|
}
|
|
|
|
|
|
|
|
void tx_counts_to_branch_counts_8x8(unsigned int *tx_count_8x8p,
|
|
|
|
unsigned int (*ct_8x8p)[2]) {
|
2013-06-28 01:15:43 +02:00
|
|
|
ct_8x8p[0][0] = tx_count_8x8p[TX_4X4];
|
|
|
|
ct_8x8p[0][1] = tx_count_8x8p[TX_8X8];
|
2013-06-06 20:14:04 +02:00
|
|
|
}
|
2013-06-06 20:14:04 +02:00
|
|
|
|
2013-06-07 22:24:14 +02:00
|
|
|
const vp9_prob vp9_default_mbskip_probs[MBSKIP_CONTEXTS] = {
|
|
|
|
192, 128, 64
|
|
|
|
};
|
|
|
|
|
2013-06-28 01:15:43 +02:00
|
|
|
void vp9_init_mbmode_probs(VP9_COMMON *cm) {
|
|
|
|
vp9_copy(cm->fc.uv_mode_prob, default_if_uv_probs);
|
|
|
|
vp9_copy(cm->kf_uv_mode_prob, default_kf_uv_probs);
|
|
|
|
vp9_copy(cm->fc.y_mode_prob, default_if_y_probs);
|
|
|
|
vp9_copy(cm->fc.switchable_interp_prob, vp9_switchable_interp_prob);
|
|
|
|
vp9_copy(cm->fc.partition_prob, vp9_partition_probs);
|
|
|
|
vp9_copy(cm->fc.intra_inter_prob, default_intra_inter_p);
|
|
|
|
vp9_copy(cm->fc.comp_inter_prob, default_comp_inter_p);
|
|
|
|
vp9_copy(cm->fc.comp_ref_prob, default_comp_ref_p);
|
|
|
|
vp9_copy(cm->fc.single_ref_prob, default_single_ref_p);
|
|
|
|
vp9_copy(cm->fc.tx_probs_32x32p, vp9_default_tx_probs_32x32p);
|
|
|
|
vp9_copy(cm->fc.tx_probs_16x16p, vp9_default_tx_probs_16x16p);
|
|
|
|
vp9_copy(cm->fc.tx_probs_8x8p, vp9_default_tx_probs_8x8p);
|
|
|
|
vp9_copy(cm->fc.mbskip_probs, vp9_default_mbskip_probs);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_tree_index vp9_switchable_interp_tree[VP9_SWITCHABLE_FILTERS*2-2] = {
|
2012-07-18 22:43:01 +02:00
|
|
|
-0, 2,
|
|
|
|
-1, -2
|
|
|
|
};
|
2013-04-11 22:01:52 +02:00
|
|
|
struct vp9_token vp9_switchable_interp_encodings[VP9_SWITCHABLE_FILTERS];
|
2013-01-08 23:14:01 +01:00
|
|
|
const INTERPOLATIONFILTERTYPE vp9_switchable_interp[VP9_SWITCHABLE_FILTERS] = {
|
|
|
|
EIGHTTAP, EIGHTTAP_SMOOTH, EIGHTTAP_SHARP};
|
|
|
|
const int vp9_switchable_interp_map[SWITCHABLE+1] = {1, 0, 2, -1, -1};
|
2012-10-31 22:40:53 +01:00
|
|
|
const vp9_prob vp9_switchable_interp_prob [VP9_SWITCHABLE_FILTERS+1]
|
|
|
|
[VP9_SWITCHABLE_FILTERS-1] = {
|
2013-06-10 21:00:43 +02:00
|
|
|
{ 235, 162, },
|
|
|
|
{ 36, 255, },
|
|
|
|
{ 34, 3, },
|
|
|
|
{ 149, 144, },
|
2012-07-18 22:43:01 +02:00
|
|
|
};
|
2013-02-12 02:08:52 +01:00
|
|
|
|
|
|
|
// Indicates if the filter is interpolating or non-interpolating
|
2013-06-09 15:54:17 +02:00
|
|
|
const int vp9_is_interpolating_filter[SWITCHABLE + 1] = {1, 1, 1, 1, -1};
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
void vp9_entropy_mode_init() {
|
2013-05-30 18:58:53 +02:00
|
|
|
vp9_tokens_from_tree(vp9_intra_mode_encodings, vp9_intra_mode_tree);
|
2012-10-31 01:12:12 +01:00
|
|
|
vp9_tokens_from_tree(vp9_switchable_interp_encodings,
|
|
|
|
vp9_switchable_interp_tree);
|
2013-04-16 09:18:02 +02:00
|
|
|
vp9_tokens_from_tree(vp9_partition_encodings, vp9_partition_tree);
|
2012-10-31 01:12:12 +01:00
|
|
|
vp9_tokens_from_tree_offset(vp9_sb_mv_ref_encoding_array,
|
|
|
|
vp9_sb_mv_ref_tree, NEARESTMV);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2011-12-06 21:03:42 +01:00
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_init_mode_contexts(VP9_COMMON *pc) {
|
2013-06-05 00:25:16 +02:00
|
|
|
vpx_memset(pc->fc.inter_mode_counts, 0, sizeof(pc->fc.inter_mode_counts));
|
2013-07-01 19:17:15 +02:00
|
|
|
vpx_memcpy(pc->fc.inter_mode_probs, default_inter_mode_probs,
|
|
|
|
sizeof(default_inter_mode_probs));
|
2011-12-06 21:03:42 +01:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_accum_mv_refs(VP9_COMMON *pc,
|
2011-12-06 21:03:42 +01:00
|
|
|
MB_PREDICTION_MODE m,
|
2012-11-12 16:09:25 +01:00
|
|
|
const int context) {
|
2013-06-05 20:21:44 +02:00
|
|
|
unsigned int (*inter_mode_counts)[VP9_INTER_MODES - 1][2] =
|
2013-06-05 00:25:16 +02:00
|
|
|
pc->fc.inter_mode_counts;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (m == ZEROMV) {
|
2013-06-05 00:25:16 +02:00
|
|
|
++inter_mode_counts[context][0][0];
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2013-06-05 00:25:16 +02:00
|
|
|
++inter_mode_counts[context][0][1];
|
2012-07-14 00:21:29 +02:00
|
|
|
if (m == NEARESTMV) {
|
2013-06-05 00:25:16 +02:00
|
|
|
++inter_mode_counts[context][1][0];
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2013-06-05 00:25:16 +02:00
|
|
|
++inter_mode_counts[context][1][1];
|
2012-07-14 00:21:29 +02:00
|
|
|
if (m == NEARMV) {
|
2013-06-05 00:25:16 +02:00
|
|
|
++inter_mode_counts[context][2][0];
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2013-06-05 00:25:16 +02:00
|
|
|
++inter_mode_counts[context][2][1];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-12-06 21:03:42 +01:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-12-06 21:03:42 +01:00
|
|
|
}
|
|
|
|
|
2012-06-20 14:07:24 +02:00
|
|
|
#define MVREF_COUNT_SAT 20
|
2012-11-16 17:31:32 +01:00
|
|
|
#define MVREF_MAX_UPDATE_FACTOR 128
|
2013-01-15 15:43:35 +01:00
|
|
|
void vp9_adapt_mode_context(VP9_COMMON *pc) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
2013-06-05 20:21:44 +02:00
|
|
|
unsigned int (*inter_mode_counts)[VP9_INTER_MODES - 1][2] =
|
2013-06-05 00:25:16 +02:00
|
|
|
pc->fc.inter_mode_counts;
|
2013-06-05 20:21:44 +02:00
|
|
|
vp9_prob (*mode_context)[VP9_INTER_MODES - 1] = pc->fc.inter_mode_probs;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-11-12 16:09:25 +01:00
|
|
|
for (j = 0; j < INTER_MODE_CONTEXTS; j++) {
|
2013-06-05 20:21:44 +02:00
|
|
|
for (i = 0; i < VP9_INTER_MODES - 1; i++) {
|
2013-06-05 00:25:16 +02:00
|
|
|
int count = inter_mode_counts[j][i][0] + inter_mode_counts[j][i][1];
|
|
|
|
int factor;
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
count = count > MVREF_COUNT_SAT ? MVREF_COUNT_SAT : count;
|
|
|
|
factor = (MVREF_MAX_UPDATE_FACTOR * count / MVREF_COUNT_SAT);
|
2013-06-05 00:25:16 +02:00
|
|
|
mode_context[j][i] = weighted_prob(
|
|
|
|
pc->fc.pre_inter_mode_probs[j][i],
|
|
|
|
get_binary_prob(inter_mode_counts[j][i][0],
|
|
|
|
inter_mode_counts[j][i][1]),
|
|
|
|
factor);
|
2011-12-06 21:03:42 +01:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-12-06 21:03:42 +01:00
|
|
|
}
|
2012-06-20 14:07:24 +02:00
|
|
|
|
2012-07-27 20:29:46 +02:00
|
|
|
#define MODE_COUNT_SAT 20
|
2013-06-10 21:00:43 +02:00
|
|
|
#define MODE_MAX_UPDATE_FACTOR 128
|
2013-06-07 22:24:14 +02:00
|
|
|
static int update_mode_ct(vp9_prob pre_prob, vp9_prob prob,
|
2013-06-06 22:44:34 +02:00
|
|
|
unsigned int branch_ct[2]) {
|
|
|
|
int factor, count = branch_ct[0] + branch_ct[1];
|
|
|
|
count = count > MODE_COUNT_SAT ? MODE_COUNT_SAT : count;
|
|
|
|
factor = (MODE_MAX_UPDATE_FACTOR * count / MODE_COUNT_SAT);
|
|
|
|
return weighted_prob(pre_prob, prob, factor);
|
|
|
|
}
|
|
|
|
|
2013-03-10 21:39:30 +01:00
|
|
|
static void update_mode_probs(int n_modes,
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
const vp9_tree_index *tree, unsigned int *cnt,
|
2013-03-10 21:39:30 +01:00
|
|
|
vp9_prob *pre_probs, vp9_prob *dst_probs,
|
|
|
|
unsigned int tok0_offset) {
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
#define MAX_PROBS 32
|
|
|
|
vp9_prob probs[MAX_PROBS];
|
|
|
|
unsigned int branch_ct[MAX_PROBS][2];
|
2013-06-06 22:44:34 +02:00
|
|
|
int t;
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
|
|
|
|
assert(n_modes - 1 < MAX_PROBS);
|
2013-03-10 21:39:30 +01:00
|
|
|
vp9_tree_probs_from_distribution(tree, probs, branch_ct, cnt, tok0_offset);
|
2013-06-06 22:44:34 +02:00
|
|
|
for (t = 0; t < n_modes - 1; ++t)
|
|
|
|
dst_probs[t] = update_mode_ct(pre_probs[t], probs[t], branch_ct[t]);
|
|
|
|
}
|
|
|
|
|
2013-06-07 22:24:14 +02:00
|
|
|
static int update_mode_ct2(vp9_prob pre_prob, unsigned int branch_ct[2]) {
|
2013-06-06 22:44:34 +02:00
|
|
|
return update_mode_ct(pre_prob, get_binary_prob(branch_ct[0],
|
|
|
|
branch_ct[1]), branch_ct);
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// #define MODE_COUNT_TESTING
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_adapt_mode_probs(VP9_COMMON *cm) {
|
2013-06-06 22:44:34 +02:00
|
|
|
int i, j;
|
2013-04-24 00:50:56 +02:00
|
|
|
FRAME_CONTEXT *fc = &cm->fc;
|
2012-06-06 00:25:07 +02:00
|
|
|
#ifdef MODE_COUNT_TESTING
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
int t;
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
printf("static const unsigned int\nymode_counts"
|
2013-05-31 01:21:48 +02:00
|
|
|
"[VP9_INTRA_MODES] = {\n");
|
|
|
|
for (t = 0; t < VP9_INTRA_MODES; ++t)
|
2013-04-24 00:50:56 +02:00
|
|
|
printf("%d, ", fc->ymode_counts[t]);
|
2012-07-14 00:21:29 +02:00
|
|
|
printf("};\n");
|
|
|
|
printf("static const unsigned int\nuv_mode_counts"
|
2013-05-31 01:21:48 +02:00
|
|
|
"[VP9_INTRA_MODES] [VP9_INTRA_MODES] = {\n");
|
|
|
|
for (i = 0; i < VP9_INTRA_MODES; ++i) {
|
2012-07-14 00:21:29 +02:00
|
|
|
printf(" {");
|
2013-05-31 01:21:48 +02:00
|
|
|
for (t = 0; t < VP9_INTRA_MODES; ++t)
|
2013-04-24 00:50:56 +02:00
|
|
|
printf("%d, ", fc->uv_mode_counts[i][t]);
|
2012-07-14 00:21:29 +02:00
|
|
|
printf("},\n");
|
|
|
|
}
|
|
|
|
printf("};\n");
|
|
|
|
printf("static const unsigned int\nbmode_counts"
|
2012-10-09 22:19:15 +02:00
|
|
|
"[VP9_NKF_BINTRAMODES] = {\n");
|
|
|
|
for (t = 0; t < VP9_NKF_BINTRAMODES; ++t)
|
2013-04-24 00:50:56 +02:00
|
|
|
printf("%d, ", fc->bmode_counts[t]);
|
2012-07-14 00:21:29 +02:00
|
|
|
printf("};\n");
|
|
|
|
printf("static const unsigned int\ni8x8_mode_counts"
|
2012-10-31 22:40:53 +01:00
|
|
|
"[VP9_I8X8_MODES] = {\n");
|
2013-04-24 00:50:56 +02:00
|
|
|
for (t = 0; t < VP9_I8X8_MODES; ++t)
|
|
|
|
printf("%d, ", fc->i8x8_mode_counts[t]);
|
2012-07-14 00:21:29 +02:00
|
|
|
printf("};\n");
|
|
|
|
printf("static const unsigned int\nmbsplit_counts"
|
2012-10-31 22:40:53 +01:00
|
|
|
"[VP9_NUMMBSPLITS] = {\n");
|
2013-04-24 00:50:56 +02:00
|
|
|
for (t = 0; t < VP9_NUMMBSPLITS; ++t)
|
|
|
|
printf("%d, ", fc->mbsplit_counts[t]);
|
2012-07-14 00:21:29 +02:00
|
|
|
printf("};\n");
|
2012-06-06 00:25:07 +02:00
|
|
|
#endif
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
|
2013-06-06 22:44:34 +02:00
|
|
|
for (i = 0; i < INTRA_INTER_CONTEXTS; i++)
|
|
|
|
fc->intra_inter_prob[i] = update_mode_ct2(fc->pre_intra_inter_prob[i],
|
|
|
|
fc->intra_inter_count[i]);
|
|
|
|
for (i = 0; i < COMP_INTER_CONTEXTS; i++)
|
|
|
|
fc->comp_inter_prob[i] = update_mode_ct2(fc->pre_comp_inter_prob[i],
|
|
|
|
fc->comp_inter_count[i]);
|
|
|
|
for (i = 0; i < REF_CONTEXTS; i++)
|
|
|
|
fc->comp_ref_prob[i] = update_mode_ct2(fc->pre_comp_ref_prob[i],
|
|
|
|
fc->comp_ref_count[i]);
|
|
|
|
for (i = 0; i < REF_CONTEXTS; i++)
|
|
|
|
for (j = 0; j < 2; j++)
|
|
|
|
fc->single_ref_prob[i][j] = update_mode_ct2(fc->pre_single_ref_prob[i][j],
|
|
|
|
fc->single_ref_count[i][j]);
|
|
|
|
|
2013-06-03 19:39:40 +02:00
|
|
|
for (i = 0; i < BLOCK_SIZE_GROUPS; i++)
|
|
|
|
update_mode_probs(VP9_INTRA_MODES, vp9_intra_mode_tree,
|
|
|
|
fc->y_mode_counts[i], fc->pre_y_mode_prob[i],
|
|
|
|
fc->y_mode_prob[i], 0);
|
2013-04-24 00:50:56 +02:00
|
|
|
|
2013-05-31 01:21:48 +02:00
|
|
|
for (i = 0; i < VP9_INTRA_MODES; ++i)
|
|
|
|
update_mode_probs(VP9_INTRA_MODES, vp9_intra_mode_tree,
|
2013-04-24 00:50:56 +02:00
|
|
|
fc->uv_mode_counts[i], fc->pre_uv_mode_prob[i],
|
|
|
|
fc->uv_mode_prob[i], 0);
|
|
|
|
|
2013-04-23 19:12:18 +02:00
|
|
|
for (i = 0; i < NUM_PARTITION_CONTEXTS; i++)
|
2013-04-16 09:18:02 +02:00
|
|
|
update_mode_probs(PARTITION_TYPES, vp9_partition_tree,
|
2013-04-24 00:50:56 +02:00
|
|
|
fc->partition_counts[i], fc->pre_partition_prob[i],
|
2013-06-03 19:39:40 +02:00
|
|
|
fc->partition_prob[INTER_FRAME][i], 0);
|
2013-06-05 00:25:16 +02:00
|
|
|
|
|
|
|
if (cm->mcomp_filter_type == SWITCHABLE) {
|
|
|
|
for (i = 0; i <= VP9_SWITCHABLE_FILTERS; i++) {
|
|
|
|
update_mode_probs(VP9_SWITCHABLE_FILTERS, vp9_switchable_interp_tree,
|
|
|
|
fc->switchable_interp_count[i],
|
|
|
|
fc->pre_switchable_interp_prob[i],
|
|
|
|
fc->switchable_interp_prob[i], 0);
|
|
|
|
}
|
|
|
|
}
|
2013-06-06 20:14:04 +02:00
|
|
|
if (cm->txfm_mode == TX_MODE_SELECT) {
|
2013-06-06 20:14:04 +02:00
|
|
|
int j;
|
|
|
|
unsigned int branch_ct_8x8p[TX_SIZE_MAX_SB - 3][2];
|
|
|
|
unsigned int branch_ct_16x16p[TX_SIZE_MAX_SB - 2][2];
|
|
|
|
unsigned int branch_ct_32x32p[TX_SIZE_MAX_SB - 1][2];
|
2013-06-08 09:09:44 +02:00
|
|
|
for (i = 0; i < TX_SIZE_CONTEXTS; ++i) {
|
2013-06-06 20:14:04 +02:00
|
|
|
tx_counts_to_branch_counts_8x8(cm->fc.tx_count_8x8p[i],
|
|
|
|
branch_ct_8x8p);
|
|
|
|
for (j = 0; j < TX_SIZE_MAX_SB - 3; ++j) {
|
|
|
|
int factor;
|
|
|
|
int count = branch_ct_8x8p[j][0] + branch_ct_8x8p[j][1];
|
|
|
|
vp9_prob prob = get_binary_prob(branch_ct_8x8p[j][0],
|
|
|
|
branch_ct_8x8p[j][1]);
|
|
|
|
count = count > MODE_COUNT_SAT ? MODE_COUNT_SAT : count;
|
|
|
|
factor = (MODE_MAX_UPDATE_FACTOR * count / MODE_COUNT_SAT);
|
|
|
|
cm->fc.tx_probs_8x8p[i][j] = weighted_prob(
|
|
|
|
cm->fc.pre_tx_probs_8x8p[i][j], prob, factor);
|
|
|
|
}
|
|
|
|
}
|
2013-06-08 09:09:44 +02:00
|
|
|
for (i = 0; i < TX_SIZE_CONTEXTS; ++i) {
|
2013-06-06 20:14:04 +02:00
|
|
|
tx_counts_to_branch_counts_16x16(cm->fc.tx_count_16x16p[i],
|
|
|
|
branch_ct_16x16p);
|
|
|
|
for (j = 0; j < TX_SIZE_MAX_SB - 2; ++j) {
|
|
|
|
int factor;
|
|
|
|
int count = branch_ct_16x16p[j][0] + branch_ct_16x16p[j][1];
|
|
|
|
vp9_prob prob = get_binary_prob(branch_ct_16x16p[j][0],
|
|
|
|
branch_ct_16x16p[j][1]);
|
|
|
|
count = count > MODE_COUNT_SAT ? MODE_COUNT_SAT : count;
|
|
|
|
factor = (MODE_MAX_UPDATE_FACTOR * count / MODE_COUNT_SAT);
|
|
|
|
cm->fc.tx_probs_16x16p[i][j] = weighted_prob(
|
|
|
|
cm->fc.pre_tx_probs_16x16p[i][j], prob, factor);
|
|
|
|
}
|
|
|
|
}
|
2013-06-08 09:09:44 +02:00
|
|
|
for (i = 0; i < TX_SIZE_CONTEXTS; ++i) {
|
2013-06-06 20:14:04 +02:00
|
|
|
tx_counts_to_branch_counts_32x32(cm->fc.tx_count_32x32p[i],
|
|
|
|
branch_ct_32x32p);
|
|
|
|
for (j = 0; j < TX_SIZE_MAX_SB - 1; ++j) {
|
|
|
|
int factor;
|
|
|
|
int count = branch_ct_32x32p[j][0] + branch_ct_32x32p[j][1];
|
|
|
|
vp9_prob prob = get_binary_prob(branch_ct_32x32p[j][0],
|
|
|
|
branch_ct_32x32p[j][1]);
|
|
|
|
count = count > MODE_COUNT_SAT ? MODE_COUNT_SAT : count;
|
|
|
|
factor = (MODE_MAX_UPDATE_FACTOR * count / MODE_COUNT_SAT);
|
|
|
|
cm->fc.tx_probs_32x32p[i][j] = weighted_prob(
|
|
|
|
cm->fc.pre_tx_probs_32x32p[i][j], prob, factor);
|
|
|
|
}
|
2013-06-06 20:14:04 +02:00
|
|
|
}
|
|
|
|
}
|
2013-06-07 22:24:14 +02:00
|
|
|
for (i = 0; i < MBSKIP_CONTEXTS; ++i)
|
|
|
|
fc->mbskip_probs[i] = update_mode_ct2(fc->pre_mbskip_probs[i],
|
|
|
|
fc->mbskip_count[i]);
|
2012-06-06 00:25:07 +02:00
|
|
|
}
|
2013-01-15 15:43:35 +01:00
|
|
|
|
|
|
|
static void set_default_lf_deltas(MACROBLOCKD *xd) {
|
|
|
|
xd->mode_ref_lf_delta_enabled = 1;
|
|
|
|
xd->mode_ref_lf_delta_update = 1;
|
|
|
|
|
2013-04-04 18:00:53 +02:00
|
|
|
xd->ref_lf_deltas[INTRA_FRAME] = 1;
|
2013-01-15 15:43:35 +01:00
|
|
|
xd->ref_lf_deltas[LAST_FRAME] = 0;
|
2013-04-04 18:00:53 +02:00
|
|
|
xd->ref_lf_deltas[GOLDEN_FRAME] = -1;
|
|
|
|
xd->ref_lf_deltas[ALTREF_FRAME] = -1;
|
2013-01-15 15:43:35 +01:00
|
|
|
|
2013-06-07 07:55:31 +02:00
|
|
|
xd->mode_lf_deltas[0] = 0; // Zero
|
|
|
|
xd->mode_lf_deltas[1] = 0; // New mv
|
2013-01-15 15:43:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void vp9_setup_past_independence(VP9_COMMON *cm, MACROBLOCKD *xd) {
|
|
|
|
// Reset the segment feature data to the default stats:
|
|
|
|
// Features disabled, 0, with delta coding (Default state).
|
|
|
|
int i;
|
|
|
|
vp9_clearall_segfeatures(xd);
|
|
|
|
xd->mb_segment_abs_delta = SEGMENT_DELTADATA;
|
|
|
|
if (cm->last_frame_seg_map)
|
2013-04-26 20:57:17 +02:00
|
|
|
vpx_memset(cm->last_frame_seg_map, 0, (cm->mi_rows * cm->mi_cols));
|
2013-01-15 15:43:35 +01:00
|
|
|
|
2013-04-24 00:50:56 +02:00
|
|
|
// Reset the mode ref deltas for loop filter
|
2013-01-15 15:43:35 +01:00
|
|
|
vpx_memset(xd->last_ref_lf_deltas, 0, sizeof(xd->last_ref_lf_deltas));
|
|
|
|
vpx_memset(xd->last_mode_lf_deltas, 0, sizeof(xd->last_mode_lf_deltas));
|
|
|
|
set_default_lf_deltas(xd);
|
|
|
|
|
|
|
|
vp9_default_coef_probs(cm);
|
|
|
|
vp9_init_mbmode_probs(cm);
|
2013-05-30 18:58:53 +02:00
|
|
|
vpx_memcpy(cm->kf_y_mode_prob, vp9_kf_default_bmode_probs,
|
2013-05-16 17:29:33 +02:00
|
|
|
sizeof(vp9_kf_default_bmode_probs));
|
2013-01-15 15:43:35 +01:00
|
|
|
vp9_init_mv_probs(cm);
|
2013-04-24 00:50:56 +02:00
|
|
|
|
2013-01-15 15:43:35 +01:00
|
|
|
// To force update of the sharpness
|
|
|
|
cm->last_sharpness_level = -1;
|
|
|
|
|
|
|
|
vp9_init_mode_contexts(cm);
|
|
|
|
|
2013-06-09 19:10:33 +02:00
|
|
|
if ((cm->frame_type == KEY_FRAME) ||
|
|
|
|
cm->error_resilient_mode || (cm->reset_frame_context == 3)) {
|
|
|
|
// Reset all frame contexts.
|
|
|
|
for (i = 0; i < NUM_FRAME_CONTEXTS; ++i)
|
|
|
|
vpx_memcpy(&cm->frame_contexts[i], &cm->fc, sizeof(cm->fc));
|
|
|
|
} else if (cm->reset_frame_context == 2) {
|
|
|
|
// Reset only the frame context specified in the frame header.
|
|
|
|
vpx_memcpy(&cm->frame_contexts[cm->frame_context_idx], &cm->fc,
|
|
|
|
sizeof(cm->fc));
|
|
|
|
}
|
2013-01-15 15:43:35 +01:00
|
|
|
|
|
|
|
vpx_memset(cm->prev_mip, 0,
|
2013-04-26 20:57:17 +02:00
|
|
|
cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO));
|
2013-01-15 15:43:35 +01:00
|
|
|
vpx_memset(cm->mip, 0,
|
2013-04-26 20:57:17 +02:00
|
|
|
cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO));
|
2013-01-15 15:43:35 +01:00
|
|
|
|
|
|
|
vp9_update_mode_info_border(cm, cm->mip);
|
|
|
|
vp9_update_mode_info_in_image(cm, cm->mi);
|
|
|
|
|
2013-04-19 22:32:15 +02:00
|
|
|
vp9_update_mode_info_border(cm, cm->prev_mip);
|
|
|
|
vp9_update_mode_info_in_image(cm, cm->prev_mi);
|
|
|
|
|
2013-05-03 01:41:19 +02:00
|
|
|
vpx_memset(cm->ref_frame_sign_bias, 0, sizeof(cm->ref_frame_sign_bias));
|
2013-01-15 15:43:35 +01:00
|
|
|
|
|
|
|
cm->frame_context_idx = 0;
|
|
|
|
}
|