Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
michael@0 | 3 | * |
michael@0 | 4 | * Use of this source code is governed by a BSD-style license |
michael@0 | 5 | * that can be found in the LICENSE file in the root of the source |
michael@0 | 6 | * tree. An additional intellectual property rights grant can be found |
michael@0 | 7 | * in the file PATENTS. All contributing project authors may |
michael@0 | 8 | * be found in the AUTHORS file in the root of the source tree. |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | #include "vpx_mem/vpx_mem.h" |
michael@0 | 12 | |
michael@0 | 13 | #include "vp9/common/vp9_alloccommon.h" |
michael@0 | 14 | #include "vp9/common/vp9_onyxc_int.h" |
michael@0 | 15 | #include "vp9/common/vp9_seg_common.h" |
michael@0 | 16 | |
michael@0 | 17 | const vp9_prob vp9_kf_y_mode_prob[INTRA_MODES][INTRA_MODES][INTRA_MODES - 1] = { |
michael@0 | 18 | { // above = dc |
michael@0 | 19 | { 137, 30, 42, 148, 151, 207, 70, 52, 91 }, // left = dc |
michael@0 | 20 | { 92, 45, 102, 136, 116, 180, 74, 90, 100 }, // left = v |
michael@0 | 21 | { 73, 32, 19, 187, 222, 215, 46, 34, 100 }, // left = h |
michael@0 | 22 | { 91, 30, 32, 116, 121, 186, 93, 86, 94 }, // left = d45 |
michael@0 | 23 | { 72, 35, 36, 149, 68, 206, 68, 63, 105 }, // left = d135 |
michael@0 | 24 | { 73, 31, 28, 138, 57, 124, 55, 122, 151 }, // left = d117 |
michael@0 | 25 | { 67, 23, 21, 140, 126, 197, 40, 37, 171 }, // left = d153 |
michael@0 | 26 | { 86, 27, 28, 128, 154, 212, 45, 43, 53 }, // left = d207 |
michael@0 | 27 | { 74, 32, 27, 107, 86, 160, 63, 134, 102 }, // left = d63 |
michael@0 | 28 | { 59, 67, 44, 140, 161, 202, 78, 67, 119 } // left = tm |
michael@0 | 29 | }, { // above = v |
michael@0 | 30 | { 63, 36, 126, 146, 123, 158, 60, 90, 96 }, // left = dc |
michael@0 | 31 | { 43, 46, 168, 134, 107, 128, 69, 142, 92 }, // left = v |
michael@0 | 32 | { 44, 29, 68, 159, 201, 177, 50, 57, 77 }, // left = h |
michael@0 | 33 | { 58, 38, 76, 114, 97, 172, 78, 133, 92 }, // left = d45 |
michael@0 | 34 | { 46, 41, 76, 140, 63, 184, 69, 112, 57 }, // left = d135 |
michael@0 | 35 | { 38, 32, 85, 140, 46, 112, 54, 151, 133 }, // left = d117 |
michael@0 | 36 | { 39, 27, 61, 131, 110, 175, 44, 75, 136 }, // left = d153 |
michael@0 | 37 | { 52, 30, 74, 113, 130, 175, 51, 64, 58 }, // left = d207 |
michael@0 | 38 | { 47, 35, 80, 100, 74, 143, 64, 163, 74 }, // left = d63 |
michael@0 | 39 | { 36, 61, 116, 114, 128, 162, 80, 125, 82 } // left = tm |
michael@0 | 40 | }, { // above = h |
michael@0 | 41 | { 82, 26, 26, 171, 208, 204, 44, 32, 105 }, // left = dc |
michael@0 | 42 | { 55, 44, 68, 166, 179, 192, 57, 57, 108 }, // left = v |
michael@0 | 43 | { 42, 26, 11, 199, 241, 228, 23, 15, 85 }, // left = h |
michael@0 | 44 | { 68, 42, 19, 131, 160, 199, 55, 52, 83 }, // left = d45 |
michael@0 | 45 | { 58, 50, 25, 139, 115, 232, 39, 52, 118 }, // left = d135 |
michael@0 | 46 | { 50, 35, 33, 153, 104, 162, 64, 59, 131 }, // left = d117 |
michael@0 | 47 | { 44, 24, 16, 150, 177, 202, 33, 19, 156 }, // left = d153 |
michael@0 | 48 | { 55, 27, 12, 153, 203, 218, 26, 27, 49 }, // left = d207 |
michael@0 | 49 | { 53, 49, 21, 110, 116, 168, 59, 80, 76 }, // left = d63 |
michael@0 | 50 | { 38, 72, 19, 168, 203, 212, 50, 50, 107 } // left = tm |
michael@0 | 51 | }, { // above = d45 |
michael@0 | 52 | { 103, 26, 36, 129, 132, 201, 83, 80, 93 }, // left = dc |
michael@0 | 53 | { 59, 38, 83, 112, 103, 162, 98, 136, 90 }, // left = v |
michael@0 | 54 | { 62, 30, 23, 158, 200, 207, 59, 57, 50 }, // left = h |
michael@0 | 55 | { 67, 30, 29, 84, 86, 191, 102, 91, 59 }, // left = d45 |
michael@0 | 56 | { 60, 32, 33, 112, 71, 220, 64, 89, 104 }, // left = d135 |
michael@0 | 57 | { 53, 26, 34, 130, 56, 149, 84, 120, 103 }, // left = d117 |
michael@0 | 58 | { 53, 21, 23, 133, 109, 210, 56, 77, 172 }, // left = d153 |
michael@0 | 59 | { 77, 19, 29, 112, 142, 228, 55, 66, 36 }, // left = d207 |
michael@0 | 60 | { 61, 29, 29, 93, 97, 165, 83, 175, 162 }, // left = d63 |
michael@0 | 61 | { 47, 47, 43, 114, 137, 181, 100, 99, 95 } // left = tm |
michael@0 | 62 | }, { // above = d135 |
michael@0 | 63 | { 69, 23, 29, 128, 83, 199, 46, 44, 101 }, // left = dc |
michael@0 | 64 | { 53, 40, 55, 139, 69, 183, 61, 80, 110 }, // left = v |
michael@0 | 65 | { 40, 29, 19, 161, 180, 207, 43, 24, 91 }, // left = h |
michael@0 | 66 | { 60, 34, 19, 105, 61, 198, 53, 64, 89 }, // left = d45 |
michael@0 | 67 | { 52, 31, 22, 158, 40, 209, 58, 62, 89 }, // left = d135 |
michael@0 | 68 | { 44, 31, 29, 147, 46, 158, 56, 102, 198 }, // left = d117 |
michael@0 | 69 | { 35, 19, 12, 135, 87, 209, 41, 45, 167 }, // left = d153 |
michael@0 | 70 | { 55, 25, 21, 118, 95, 215, 38, 39, 66 }, // left = d207 |
michael@0 | 71 | { 51, 38, 25, 113, 58, 164, 70, 93, 97 }, // left = d63 |
michael@0 | 72 | { 47, 54, 34, 146, 108, 203, 72, 103, 151 } // left = tm |
michael@0 | 73 | }, { // above = d117 |
michael@0 | 74 | { 64, 19, 37, 156, 66, 138, 49, 95, 133 }, // left = dc |
michael@0 | 75 | { 46, 27, 80, 150, 55, 124, 55, 121, 135 }, // left = v |
michael@0 | 76 | { 36, 23, 27, 165, 149, 166, 54, 64, 118 }, // left = h |
michael@0 | 77 | { 53, 21, 36, 131, 63, 163, 60, 109, 81 }, // left = d45 |
michael@0 | 78 | { 40, 26, 35, 154, 40, 185, 51, 97, 123 }, // left = d135 |
michael@0 | 79 | { 35, 19, 34, 179, 19, 97, 48, 129, 124 }, // left = d117 |
michael@0 | 80 | { 36, 20, 26, 136, 62, 164, 33, 77, 154 }, // left = d153 |
michael@0 | 81 | { 45, 18, 32, 130, 90, 157, 40, 79, 91 }, // left = d207 |
michael@0 | 82 | { 45, 26, 28, 129, 45, 129, 49, 147, 123 }, // left = d63 |
michael@0 | 83 | { 38, 44, 51, 136, 74, 162, 57, 97, 121 } // left = tm |
michael@0 | 84 | }, { // above = d153 |
michael@0 | 85 | { 75, 17, 22, 136, 138, 185, 32, 34, 166 }, // left = dc |
michael@0 | 86 | { 56, 39, 58, 133, 117, 173, 48, 53, 187 }, // left = v |
michael@0 | 87 | { 35, 21, 12, 161, 212, 207, 20, 23, 145 }, // left = h |
michael@0 | 88 | { 56, 29, 19, 117, 109, 181, 55, 68, 112 }, // left = d45 |
michael@0 | 89 | { 47, 29, 17, 153, 64, 220, 59, 51, 114 }, // left = d135 |
michael@0 | 90 | { 46, 16, 24, 136, 76, 147, 41, 64, 172 }, // left = d117 |
michael@0 | 91 | { 34, 17, 11, 108, 152, 187, 13, 15, 209 }, // left = d153 |
michael@0 | 92 | { 51, 24, 14, 115, 133, 209, 32, 26, 104 }, // left = d207 |
michael@0 | 93 | { 55, 30, 18, 122, 79, 179, 44, 88, 116 }, // left = d63 |
michael@0 | 94 | { 37, 49, 25, 129, 168, 164, 41, 54, 148 } // left = tm |
michael@0 | 95 | }, { // above = d207 |
michael@0 | 96 | { 82, 22, 32, 127, 143, 213, 39, 41, 70 }, // left = dc |
michael@0 | 97 | { 62, 44, 61, 123, 105, 189, 48, 57, 64 }, // left = v |
michael@0 | 98 | { 47, 25, 17, 175, 222, 220, 24, 30, 86 }, // left = h |
michael@0 | 99 | { 68, 36, 17, 106, 102, 206, 59, 74, 74 }, // left = d45 |
michael@0 | 100 | { 57, 39, 23, 151, 68, 216, 55, 63, 58 }, // left = d135 |
michael@0 | 101 | { 49, 30, 35, 141, 70, 168, 82, 40, 115 }, // left = d117 |
michael@0 | 102 | { 51, 25, 15, 136, 129, 202, 38, 35, 139 }, // left = d153 |
michael@0 | 103 | { 68, 26, 16, 111, 141, 215, 29, 28, 28 }, // left = d207 |
michael@0 | 104 | { 59, 39, 19, 114, 75, 180, 77, 104, 42 }, // left = d63 |
michael@0 | 105 | { 40, 61, 26, 126, 152, 206, 61, 59, 93 } // left = tm |
michael@0 | 106 | }, { // above = d63 |
michael@0 | 107 | { 78, 23, 39, 111, 117, 170, 74, 124, 94 }, // left = dc |
michael@0 | 108 | { 48, 34, 86, 101, 92, 146, 78, 179, 134 }, // left = v |
michael@0 | 109 | { 47, 22, 24, 138, 187, 178, 68, 69, 59 }, // left = h |
michael@0 | 110 | { 56, 25, 33, 105, 112, 187, 95, 177, 129 }, // left = d45 |
michael@0 | 111 | { 48, 31, 27, 114, 63, 183, 82, 116, 56 }, // left = d135 |
michael@0 | 112 | { 43, 28, 37, 121, 63, 123, 61, 192, 169 }, // left = d117 |
michael@0 | 113 | { 42, 17, 24, 109, 97, 177, 56, 76, 122 }, // left = d153 |
michael@0 | 114 | { 58, 18, 28, 105, 139, 182, 70, 92, 63 }, // left = d207 |
michael@0 | 115 | { 46, 23, 32, 74, 86, 150, 67, 183, 88 }, // left = d63 |
michael@0 | 116 | { 36, 38, 48, 92, 122, 165, 88, 137, 91 } // left = tm |
michael@0 | 117 | }, { // above = tm |
michael@0 | 118 | { 65, 70, 60, 155, 159, 199, 61, 60, 81 }, // left = dc |
michael@0 | 119 | { 44, 78, 115, 132, 119, 173, 71, 112, 93 }, // left = v |
michael@0 | 120 | { 39, 38, 21, 184, 227, 206, 42, 32, 64 }, // left = h |
michael@0 | 121 | { 58, 47, 36, 124, 137, 193, 80, 82, 78 }, // left = d45 |
michael@0 | 122 | { 49, 50, 35, 144, 95, 205, 63, 78, 59 }, // left = d135 |
michael@0 | 123 | { 41, 53, 52, 148, 71, 142, 65, 128, 51 }, // left = d117 |
michael@0 | 124 | { 40, 36, 28, 143, 143, 202, 40, 55, 137 }, // left = d153 |
michael@0 | 125 | { 52, 34, 29, 129, 183, 227, 42, 35, 43 }, // left = d207 |
michael@0 | 126 | { 42, 44, 44, 104, 105, 164, 64, 130, 80 }, // left = d63 |
michael@0 | 127 | { 43, 81, 53, 140, 169, 204, 68, 84, 72 } // left = tm |
michael@0 | 128 | } |
michael@0 | 129 | }; |
michael@0 | 130 | |
michael@0 | 131 | const vp9_prob vp9_kf_uv_mode_prob[INTRA_MODES][INTRA_MODES - 1] = { |
michael@0 | 132 | { 144, 11, 54, 157, 195, 130, 46, 58, 108 }, // y = dc |
michael@0 | 133 | { 118, 15, 123, 148, 131, 101, 44, 93, 131 }, // y = v |
michael@0 | 134 | { 113, 12, 23, 188, 226, 142, 26, 32, 125 }, // y = h |
michael@0 | 135 | { 120, 11, 50, 123, 163, 135, 64, 77, 103 }, // y = d45 |
michael@0 | 136 | { 113, 9, 36, 155, 111, 157, 32, 44, 161 }, // y = d135 |
michael@0 | 137 | { 116, 9, 55, 176, 76, 96, 37, 61, 149 }, // y = d117 |
michael@0 | 138 | { 115, 9, 28, 141, 161, 167, 21, 25, 193 }, // y = d153 |
michael@0 | 139 | { 120, 12, 32, 145, 195, 142, 32, 38, 86 }, // y = d207 |
michael@0 | 140 | { 116, 12, 64, 120, 140, 125, 49, 115, 121 }, // y = d63 |
michael@0 | 141 | { 102, 19, 66, 162, 182, 122, 35, 59, 128 } // y = tm |
michael@0 | 142 | }; |
michael@0 | 143 | |
michael@0 | 144 | static const vp9_prob default_if_y_probs[BLOCK_SIZE_GROUPS][INTRA_MODES - 1] = { |
michael@0 | 145 | { 65, 32, 18, 144, 162, 194, 41, 51, 98 }, // block_size < 8x8 |
michael@0 | 146 | { 132, 68, 18, 165, 217, 196, 45, 40, 78 }, // block_size < 16x16 |
michael@0 | 147 | { 173, 80, 19, 176, 240, 193, 64, 35, 46 }, // block_size < 32x32 |
michael@0 | 148 | { 221, 135, 38, 194, 248, 121, 96, 85, 29 } // block_size >= 32x32 |
michael@0 | 149 | }; |
michael@0 | 150 | |
michael@0 | 151 | static const vp9_prob default_if_uv_probs[INTRA_MODES][INTRA_MODES - 1] = { |
michael@0 | 152 | { 120, 7, 76, 176, 208, 126, 28, 54, 103 }, // y = dc |
michael@0 | 153 | { 48, 12, 154, 155, 139, 90, 34, 117, 119 }, // y = v |
michael@0 | 154 | { 67, 6, 25, 204, 243, 158, 13, 21, 96 }, // y = h |
michael@0 | 155 | { 97, 5, 44, 131, 176, 139, 48, 68, 97 }, // y = d45 |
michael@0 | 156 | { 83, 5, 42, 156, 111, 152, 26, 49, 152 }, // y = d135 |
michael@0 | 157 | { 80, 5, 58, 178, 74, 83, 33, 62, 145 }, // y = d117 |
michael@0 | 158 | { 86, 5, 32, 154, 192, 168, 14, 22, 163 }, // y = d153 |
michael@0 | 159 | { 85, 5, 32, 156, 216, 148, 19, 29, 73 }, // y = d207 |
michael@0 | 160 | { 77, 7, 64, 116, 132, 122, 37, 126, 120 }, // y = d63 |
michael@0 | 161 | { 101, 21, 107, 181, 192, 103, 19, 67, 125 } // y = tm |
michael@0 | 162 | }; |
michael@0 | 163 | |
michael@0 | 164 | const vp9_prob vp9_kf_partition_probs[PARTITION_CONTEXTS] |
michael@0 | 165 | [PARTITION_TYPES - 1] = { |
michael@0 | 166 | // 8x8 -> 4x4 |
michael@0 | 167 | { 158, 97, 94 }, // a/l both not split |
michael@0 | 168 | { 93, 24, 99 }, // a split, l not split |
michael@0 | 169 | { 85, 119, 44 }, // l split, a not split |
michael@0 | 170 | { 62, 59, 67 }, // a/l both split |
michael@0 | 171 | // 16x16 -> 8x8 |
michael@0 | 172 | { 149, 53, 53 }, // a/l both not split |
michael@0 | 173 | { 94, 20, 48 }, // a split, l not split |
michael@0 | 174 | { 83, 53, 24 }, // l split, a not split |
michael@0 | 175 | { 52, 18, 18 }, // a/l both split |
michael@0 | 176 | // 32x32 -> 16x16 |
michael@0 | 177 | { 150, 40, 39 }, // a/l both not split |
michael@0 | 178 | { 78, 12, 26 }, // a split, l not split |
michael@0 | 179 | { 67, 33, 11 }, // l split, a not split |
michael@0 | 180 | { 24, 7, 5 }, // a/l both split |
michael@0 | 181 | // 64x64 -> 32x32 |
michael@0 | 182 | { 174, 35, 49 }, // a/l both not split |
michael@0 | 183 | { 68, 11, 27 }, // a split, l not split |
michael@0 | 184 | { 57, 15, 9 }, // l split, a not split |
michael@0 | 185 | { 12, 3, 3 }, // a/l both split |
michael@0 | 186 | }; |
michael@0 | 187 | |
michael@0 | 188 | static const vp9_prob default_partition_probs[PARTITION_CONTEXTS] |
michael@0 | 189 | [PARTITION_TYPES - 1] = { |
michael@0 | 190 | // 8x8 -> 4x4 |
michael@0 | 191 | { 199, 122, 141 }, // a/l both not split |
michael@0 | 192 | { 147, 63, 159 }, // a split, l not split |
michael@0 | 193 | { 148, 133, 118 }, // l split, a not split |
michael@0 | 194 | { 121, 104, 114 }, // a/l both split |
michael@0 | 195 | // 16x16 -> 8x8 |
michael@0 | 196 | { 174, 73, 87 }, // a/l both not split |
michael@0 | 197 | { 92, 41, 83 }, // a split, l not split |
michael@0 | 198 | { 82, 99, 50 }, // l split, a not split |
michael@0 | 199 | { 53, 39, 39 }, // a/l both split |
michael@0 | 200 | // 32x32 -> 16x16 |
michael@0 | 201 | { 177, 58, 59 }, // a/l both not split |
michael@0 | 202 | { 68, 26, 63 }, // a split, l not split |
michael@0 | 203 | { 52, 79, 25 }, // l split, a not split |
michael@0 | 204 | { 17, 14, 12 }, // a/l both split |
michael@0 | 205 | // 64x64 -> 32x32 |
michael@0 | 206 | { 222, 34, 30 }, // a/l both not split |
michael@0 | 207 | { 72, 16, 44 }, // a split, l not split |
michael@0 | 208 | { 58, 32, 12 }, // l split, a not split |
michael@0 | 209 | { 10, 7, 6 }, // a/l both split |
michael@0 | 210 | }; |
michael@0 | 211 | |
michael@0 | 212 | static const vp9_prob default_inter_mode_probs[INTER_MODE_CONTEXTS] |
michael@0 | 213 | [INTER_MODES - 1] = { |
michael@0 | 214 | {2, 173, 34}, // 0 = both zero mv |
michael@0 | 215 | {7, 145, 85}, // 1 = one zero mv + one a predicted mv |
michael@0 | 216 | {7, 166, 63}, // 2 = two predicted mvs |
michael@0 | 217 | {7, 94, 66}, // 3 = one predicted/zero and one new mv |
michael@0 | 218 | {8, 64, 46}, // 4 = two new mvs |
michael@0 | 219 | {17, 81, 31}, // 5 = one intra neighbour + x |
michael@0 | 220 | {25, 29, 30}, // 6 = two intra neighbours |
michael@0 | 221 | }; |
michael@0 | 222 | |
michael@0 | 223 | /* Array indices are identical to previously-existing INTRAMODECONTEXTNODES. */ |
michael@0 | 224 | const vp9_tree_index vp9_intra_mode_tree[TREE_SIZE(INTRA_MODES)] = { |
michael@0 | 225 | -DC_PRED, 2, /* 0 = DC_NODE */ |
michael@0 | 226 | -TM_PRED, 4, /* 1 = TM_NODE */ |
michael@0 | 227 | -V_PRED, 6, /* 2 = V_NODE */ |
michael@0 | 228 | 8, 12, /* 3 = COM_NODE */ |
michael@0 | 229 | -H_PRED, 10, /* 4 = H_NODE */ |
michael@0 | 230 | -D135_PRED, -D117_PRED, /* 5 = D135_NODE */ |
michael@0 | 231 | -D45_PRED, 14, /* 6 = D45_NODE */ |
michael@0 | 232 | -D63_PRED, 16, /* 7 = D63_NODE */ |
michael@0 | 233 | -D153_PRED, -D207_PRED /* 8 = D153_NODE */ |
michael@0 | 234 | }; |
michael@0 | 235 | struct vp9_token vp9_intra_mode_encodings[INTRA_MODES]; |
michael@0 | 236 | |
michael@0 | 237 | const vp9_tree_index vp9_inter_mode_tree[TREE_SIZE(INTER_MODES)] = { |
michael@0 | 238 | -INTER_OFFSET(ZEROMV), 2, |
michael@0 | 239 | -INTER_OFFSET(NEARESTMV), 4, |
michael@0 | 240 | -INTER_OFFSET(NEARMV), -INTER_OFFSET(NEWMV) |
michael@0 | 241 | }; |
michael@0 | 242 | struct vp9_token vp9_inter_mode_encodings[INTER_MODES]; |
michael@0 | 243 | |
michael@0 | 244 | const vp9_tree_index vp9_partition_tree[TREE_SIZE(PARTITION_TYPES)] = { |
michael@0 | 245 | -PARTITION_NONE, 2, |
michael@0 | 246 | -PARTITION_HORZ, 4, |
michael@0 | 247 | -PARTITION_VERT, -PARTITION_SPLIT |
michael@0 | 248 | }; |
michael@0 | 249 | struct vp9_token vp9_partition_encodings[PARTITION_TYPES]; |
michael@0 | 250 | |
michael@0 | 251 | static const vp9_prob default_intra_inter_p[INTRA_INTER_CONTEXTS] = { |
michael@0 | 252 | 9, 102, 187, 225 |
michael@0 | 253 | }; |
michael@0 | 254 | |
michael@0 | 255 | static const vp9_prob default_comp_inter_p[COMP_INTER_CONTEXTS] = { |
michael@0 | 256 | 239, 183, 119, 96, 41 |
michael@0 | 257 | }; |
michael@0 | 258 | |
michael@0 | 259 | static const vp9_prob default_comp_ref_p[REF_CONTEXTS] = { |
michael@0 | 260 | 50, 126, 123, 221, 226 |
michael@0 | 261 | }; |
michael@0 | 262 | |
michael@0 | 263 | static const vp9_prob default_single_ref_p[REF_CONTEXTS][2] = { |
michael@0 | 264 | { 33, 16 }, |
michael@0 | 265 | { 77, 74 }, |
michael@0 | 266 | { 142, 142 }, |
michael@0 | 267 | { 172, 170 }, |
michael@0 | 268 | { 238, 247 } |
michael@0 | 269 | }; |
michael@0 | 270 | |
michael@0 | 271 | static const struct tx_probs default_tx_probs = { |
michael@0 | 272 | { { 3, 136, 37 }, |
michael@0 | 273 | { 5, 52, 13 } }, |
michael@0 | 274 | |
michael@0 | 275 | { { 20, 152 }, |
michael@0 | 276 | { 15, 101 } }, |
michael@0 | 277 | |
michael@0 | 278 | { { 100 }, |
michael@0 | 279 | { 66 } } |
michael@0 | 280 | }; |
michael@0 | 281 | |
michael@0 | 282 | void tx_counts_to_branch_counts_32x32(const unsigned int *tx_count_32x32p, |
michael@0 | 283 | unsigned int (*ct_32x32p)[2]) { |
michael@0 | 284 | ct_32x32p[0][0] = tx_count_32x32p[TX_4X4]; |
michael@0 | 285 | ct_32x32p[0][1] = tx_count_32x32p[TX_8X8] + |
michael@0 | 286 | tx_count_32x32p[TX_16X16] + |
michael@0 | 287 | tx_count_32x32p[TX_32X32]; |
michael@0 | 288 | ct_32x32p[1][0] = tx_count_32x32p[TX_8X8]; |
michael@0 | 289 | ct_32x32p[1][1] = tx_count_32x32p[TX_16X16] + |
michael@0 | 290 | tx_count_32x32p[TX_32X32]; |
michael@0 | 291 | ct_32x32p[2][0] = tx_count_32x32p[TX_16X16]; |
michael@0 | 292 | ct_32x32p[2][1] = tx_count_32x32p[TX_32X32]; |
michael@0 | 293 | } |
michael@0 | 294 | |
michael@0 | 295 | void tx_counts_to_branch_counts_16x16(const unsigned int *tx_count_16x16p, |
michael@0 | 296 | unsigned int (*ct_16x16p)[2]) { |
michael@0 | 297 | ct_16x16p[0][0] = tx_count_16x16p[TX_4X4]; |
michael@0 | 298 | ct_16x16p[0][1] = tx_count_16x16p[TX_8X8] + tx_count_16x16p[TX_16X16]; |
michael@0 | 299 | ct_16x16p[1][0] = tx_count_16x16p[TX_8X8]; |
michael@0 | 300 | ct_16x16p[1][1] = tx_count_16x16p[TX_16X16]; |
michael@0 | 301 | } |
michael@0 | 302 | |
michael@0 | 303 | void tx_counts_to_branch_counts_8x8(const unsigned int *tx_count_8x8p, |
michael@0 | 304 | unsigned int (*ct_8x8p)[2]) { |
michael@0 | 305 | ct_8x8p[0][0] = tx_count_8x8p[TX_4X4]; |
michael@0 | 306 | ct_8x8p[0][1] = tx_count_8x8p[TX_8X8]; |
michael@0 | 307 | } |
michael@0 | 308 | |
michael@0 | 309 | static const vp9_prob default_mbskip_probs[MBSKIP_CONTEXTS] = { |
michael@0 | 310 | 192, 128, 64 |
michael@0 | 311 | }; |
michael@0 | 312 | |
michael@0 | 313 | static const vp9_prob default_switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS] |
michael@0 | 314 | [SWITCHABLE_FILTERS - 1] = { |
michael@0 | 315 | { 235, 162, }, |
michael@0 | 316 | { 36, 255, }, |
michael@0 | 317 | { 34, 3, }, |
michael@0 | 318 | { 149, 144, }, |
michael@0 | 319 | }; |
michael@0 | 320 | |
michael@0 | 321 | void vp9_init_mbmode_probs(VP9_COMMON *cm) { |
michael@0 | 322 | vp9_copy(cm->fc.uv_mode_prob, default_if_uv_probs); |
michael@0 | 323 | vp9_copy(cm->fc.y_mode_prob, default_if_y_probs); |
michael@0 | 324 | vp9_copy(cm->fc.switchable_interp_prob, default_switchable_interp_prob); |
michael@0 | 325 | vp9_copy(cm->fc.partition_prob, default_partition_probs); |
michael@0 | 326 | vp9_copy(cm->fc.intra_inter_prob, default_intra_inter_p); |
michael@0 | 327 | vp9_copy(cm->fc.comp_inter_prob, default_comp_inter_p); |
michael@0 | 328 | vp9_copy(cm->fc.comp_ref_prob, default_comp_ref_p); |
michael@0 | 329 | vp9_copy(cm->fc.single_ref_prob, default_single_ref_p); |
michael@0 | 330 | cm->fc.tx_probs = default_tx_probs; |
michael@0 | 331 | vp9_copy(cm->fc.mbskip_probs, default_mbskip_probs); |
michael@0 | 332 | } |
michael@0 | 333 | |
michael@0 | 334 | const vp9_tree_index vp9_switchable_interp_tree |
michael@0 | 335 | [TREE_SIZE(SWITCHABLE_FILTERS)] = { |
michael@0 | 336 | -EIGHTTAP, 2, |
michael@0 | 337 | -EIGHTTAP_SMOOTH, -EIGHTTAP_SHARP |
michael@0 | 338 | }; |
michael@0 | 339 | struct vp9_token vp9_switchable_interp_encodings[SWITCHABLE_FILTERS]; |
michael@0 | 340 | |
michael@0 | 341 | void vp9_entropy_mode_init() { |
michael@0 | 342 | vp9_tokens_from_tree(vp9_intra_mode_encodings, vp9_intra_mode_tree); |
michael@0 | 343 | vp9_tokens_from_tree(vp9_switchable_interp_encodings, |
michael@0 | 344 | vp9_switchable_interp_tree); |
michael@0 | 345 | vp9_tokens_from_tree(vp9_partition_encodings, vp9_partition_tree); |
michael@0 | 346 | vp9_tokens_from_tree(vp9_inter_mode_encodings, vp9_inter_mode_tree); |
michael@0 | 347 | } |
michael@0 | 348 | |
michael@0 | 349 | #define COUNT_SAT 20 |
michael@0 | 350 | #define MAX_UPDATE_FACTOR 128 |
michael@0 | 351 | |
michael@0 | 352 | static int adapt_prob(vp9_prob pre_prob, const unsigned int ct[2]) { |
michael@0 | 353 | return merge_probs(pre_prob, ct, COUNT_SAT, MAX_UPDATE_FACTOR); |
michael@0 | 354 | } |
michael@0 | 355 | |
michael@0 | 356 | static void adapt_probs(const vp9_tree_index *tree, |
michael@0 | 357 | const vp9_prob *pre_probs, const unsigned int *counts, |
michael@0 | 358 | vp9_prob *probs) { |
michael@0 | 359 | tree_merge_probs(tree, pre_probs, counts, COUNT_SAT, MAX_UPDATE_FACTOR, |
michael@0 | 360 | probs); |
michael@0 | 361 | } |
michael@0 | 362 | |
michael@0 | 363 | void vp9_adapt_mode_probs(VP9_COMMON *cm) { |
michael@0 | 364 | int i, j; |
michael@0 | 365 | FRAME_CONTEXT *fc = &cm->fc; |
michael@0 | 366 | const FRAME_CONTEXT *pre_fc = &cm->frame_contexts[cm->frame_context_idx]; |
michael@0 | 367 | const FRAME_COUNTS *counts = &cm->counts; |
michael@0 | 368 | |
michael@0 | 369 | for (i = 0; i < INTRA_INTER_CONTEXTS; i++) |
michael@0 | 370 | fc->intra_inter_prob[i] = adapt_prob(pre_fc->intra_inter_prob[i], |
michael@0 | 371 | counts->intra_inter[i]); |
michael@0 | 372 | for (i = 0; i < COMP_INTER_CONTEXTS; i++) |
michael@0 | 373 | fc->comp_inter_prob[i] = adapt_prob(pre_fc->comp_inter_prob[i], |
michael@0 | 374 | counts->comp_inter[i]); |
michael@0 | 375 | for (i = 0; i < REF_CONTEXTS; i++) |
michael@0 | 376 | fc->comp_ref_prob[i] = adapt_prob(pre_fc->comp_ref_prob[i], |
michael@0 | 377 | counts->comp_ref[i]); |
michael@0 | 378 | for (i = 0; i < REF_CONTEXTS; i++) |
michael@0 | 379 | for (j = 0; j < 2; j++) |
michael@0 | 380 | fc->single_ref_prob[i][j] = adapt_prob(pre_fc->single_ref_prob[i][j], |
michael@0 | 381 | counts->single_ref[i][j]); |
michael@0 | 382 | |
michael@0 | 383 | for (i = 0; i < INTER_MODE_CONTEXTS; i++) |
michael@0 | 384 | adapt_probs(vp9_inter_mode_tree, pre_fc->inter_mode_probs[i], |
michael@0 | 385 | counts->inter_mode[i], fc->inter_mode_probs[i]); |
michael@0 | 386 | |
michael@0 | 387 | for (i = 0; i < BLOCK_SIZE_GROUPS; i++) |
michael@0 | 388 | adapt_probs(vp9_intra_mode_tree, pre_fc->y_mode_prob[i], |
michael@0 | 389 | counts->y_mode[i], fc->y_mode_prob[i]); |
michael@0 | 390 | |
michael@0 | 391 | for (i = 0; i < INTRA_MODES; ++i) |
michael@0 | 392 | adapt_probs(vp9_intra_mode_tree, pre_fc->uv_mode_prob[i], |
michael@0 | 393 | counts->uv_mode[i], fc->uv_mode_prob[i]); |
michael@0 | 394 | |
michael@0 | 395 | for (i = 0; i < PARTITION_CONTEXTS; i++) |
michael@0 | 396 | adapt_probs(vp9_partition_tree, pre_fc->partition_prob[i], |
michael@0 | 397 | counts->partition[i], fc->partition_prob[i]); |
michael@0 | 398 | |
michael@0 | 399 | if (cm->mcomp_filter_type == SWITCHABLE) { |
michael@0 | 400 | for (i = 0; i < SWITCHABLE_FILTER_CONTEXTS; i++) |
michael@0 | 401 | adapt_probs(vp9_switchable_interp_tree, pre_fc->switchable_interp_prob[i], |
michael@0 | 402 | counts->switchable_interp[i], fc->switchable_interp_prob[i]); |
michael@0 | 403 | } |
michael@0 | 404 | |
michael@0 | 405 | if (cm->tx_mode == TX_MODE_SELECT) { |
michael@0 | 406 | int j; |
michael@0 | 407 | unsigned int branch_ct_8x8p[TX_SIZES - 3][2]; |
michael@0 | 408 | unsigned int branch_ct_16x16p[TX_SIZES - 2][2]; |
michael@0 | 409 | unsigned int branch_ct_32x32p[TX_SIZES - 1][2]; |
michael@0 | 410 | |
michael@0 | 411 | for (i = 0; i < TX_SIZE_CONTEXTS; ++i) { |
michael@0 | 412 | tx_counts_to_branch_counts_8x8(counts->tx.p8x8[i], branch_ct_8x8p); |
michael@0 | 413 | for (j = 0; j < TX_SIZES - 3; ++j) |
michael@0 | 414 | fc->tx_probs.p8x8[i][j] = adapt_prob(pre_fc->tx_probs.p8x8[i][j], |
michael@0 | 415 | branch_ct_8x8p[j]); |
michael@0 | 416 | |
michael@0 | 417 | tx_counts_to_branch_counts_16x16(counts->tx.p16x16[i], branch_ct_16x16p); |
michael@0 | 418 | for (j = 0; j < TX_SIZES - 2; ++j) |
michael@0 | 419 | fc->tx_probs.p16x16[i][j] = adapt_prob(pre_fc->tx_probs.p16x16[i][j], |
michael@0 | 420 | branch_ct_16x16p[j]); |
michael@0 | 421 | |
michael@0 | 422 | tx_counts_to_branch_counts_32x32(counts->tx.p32x32[i], branch_ct_32x32p); |
michael@0 | 423 | for (j = 0; j < TX_SIZES - 1; ++j) |
michael@0 | 424 | fc->tx_probs.p32x32[i][j] = adapt_prob(pre_fc->tx_probs.p32x32[i][j], |
michael@0 | 425 | branch_ct_32x32p[j]); |
michael@0 | 426 | } |
michael@0 | 427 | } |
michael@0 | 428 | |
michael@0 | 429 | for (i = 0; i < MBSKIP_CONTEXTS; ++i) |
michael@0 | 430 | fc->mbskip_probs[i] = adapt_prob(pre_fc->mbskip_probs[i], |
michael@0 | 431 | counts->mbskip[i]); |
michael@0 | 432 | } |
michael@0 | 433 | |
michael@0 | 434 | static void set_default_lf_deltas(struct loopfilter *lf) { |
michael@0 | 435 | lf->mode_ref_delta_enabled = 1; |
michael@0 | 436 | lf->mode_ref_delta_update = 1; |
michael@0 | 437 | |
michael@0 | 438 | lf->ref_deltas[INTRA_FRAME] = 1; |
michael@0 | 439 | lf->ref_deltas[LAST_FRAME] = 0; |
michael@0 | 440 | lf->ref_deltas[GOLDEN_FRAME] = -1; |
michael@0 | 441 | lf->ref_deltas[ALTREF_FRAME] = -1; |
michael@0 | 442 | |
michael@0 | 443 | lf->mode_deltas[0] = 0; |
michael@0 | 444 | lf->mode_deltas[1] = 0; |
michael@0 | 445 | } |
michael@0 | 446 | |
michael@0 | 447 | void vp9_setup_past_independence(VP9_COMMON *cm) { |
michael@0 | 448 | // Reset the segment feature data to the default stats: |
michael@0 | 449 | // Features disabled, 0, with delta coding (Default state). |
michael@0 | 450 | struct loopfilter *const lf = &cm->lf; |
michael@0 | 451 | |
michael@0 | 452 | int i; |
michael@0 | 453 | vp9_clearall_segfeatures(&cm->seg); |
michael@0 | 454 | cm->seg.abs_delta = SEGMENT_DELTADATA; |
michael@0 | 455 | if (cm->last_frame_seg_map) |
michael@0 | 456 | vpx_memset(cm->last_frame_seg_map, 0, (cm->mi_rows * cm->mi_cols)); |
michael@0 | 457 | |
michael@0 | 458 | // Reset the mode ref deltas for loop filter |
michael@0 | 459 | vp9_zero(lf->last_ref_deltas); |
michael@0 | 460 | vp9_zero(lf->last_mode_deltas); |
michael@0 | 461 | set_default_lf_deltas(lf); |
michael@0 | 462 | |
michael@0 | 463 | // To force update of the sharpness |
michael@0 | 464 | lf->last_sharpness_level = -1; |
michael@0 | 465 | |
michael@0 | 466 | vp9_default_coef_probs(cm); |
michael@0 | 467 | vp9_init_mbmode_probs(cm); |
michael@0 | 468 | vp9_init_mv_probs(cm); |
michael@0 | 469 | vp9_copy(cm->fc.inter_mode_probs, default_inter_mode_probs); |
michael@0 | 470 | |
michael@0 | 471 | if (cm->frame_type == KEY_FRAME || |
michael@0 | 472 | cm->error_resilient_mode || cm->reset_frame_context == 3) { |
michael@0 | 473 | // Reset all frame contexts. |
michael@0 | 474 | for (i = 0; i < NUM_FRAME_CONTEXTS; ++i) |
michael@0 | 475 | cm->frame_contexts[i] = cm->fc; |
michael@0 | 476 | } else if (cm->reset_frame_context == 2) { |
michael@0 | 477 | // Reset only the frame context specified in the frame header. |
michael@0 | 478 | cm->frame_contexts[cm->frame_context_idx] = cm->fc; |
michael@0 | 479 | } |
michael@0 | 480 | |
michael@0 | 481 | vpx_memset(cm->prev_mip, 0, |
michael@0 | 482 | cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO)); |
michael@0 | 483 | vpx_memset(cm->mip, 0, |
michael@0 | 484 | cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO)); |
michael@0 | 485 | |
michael@0 | 486 | vp9_update_mode_info_border(cm, cm->mip); |
michael@0 | 487 | vp9_update_mode_info_border(cm, cm->prev_mip); |
michael@0 | 488 | |
michael@0 | 489 | vp9_zero(cm->ref_frame_sign_bias); |
michael@0 | 490 | |
michael@0 | 491 | cm->frame_context_idx = 0; |
michael@0 | 492 | } |