2
0

vp9_entropymode.c 20 KB

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