ProbabilityTables.cpp 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219
  1. /*
  2. * Copyright (c) 2021, Hunter Salyer <thefalsehonesty@gmail.com>
  3. * Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #include "ProbabilityTables.h"
  8. namespace Video::VP9 {
  9. static constexpr ParetoTable constant_pareto_table = {
  10. { 3, 86, 128, 6, 86, 23, 88, 29 },
  11. { 9, 86, 129, 17, 88, 61, 94, 76 },
  12. { 15, 87, 129, 28, 89, 93, 100, 110 },
  13. { 20, 88, 130, 38, 91, 118, 106, 136 },
  14. { 26, 89, 131, 48, 92, 139, 111, 156 },
  15. { 31, 90, 131, 58, 94, 156, 117, 171 },
  16. { 37, 90, 132, 66, 95, 171, 122, 184 },
  17. { 42, 91, 132, 75, 97, 183, 127, 194 },
  18. { 47, 92, 133, 83, 98, 193, 132, 202 },
  19. { 52, 93, 133, 90, 100, 201, 137, 208 },
  20. { 57, 94, 134, 98, 101, 208, 142, 214 },
  21. { 62, 94, 135, 105, 103, 214, 146, 218 },
  22. { 66, 95, 135, 111, 104, 219, 151, 222 },
  23. { 71, 96, 136, 117, 106, 224, 155, 225 },
  24. { 76, 97, 136, 123, 107, 227, 159, 228 },
  25. { 80, 98, 137, 129, 109, 231, 162, 231 },
  26. { 84, 98, 138, 134, 110, 234, 166, 233 },
  27. { 89, 99, 138, 140, 112, 236, 170, 235 },
  28. { 93, 100, 139, 145, 113, 238, 173, 236 },
  29. { 97, 101, 140, 149, 115, 240, 176, 238 },
  30. { 101, 102, 140, 154, 116, 242, 179, 239 },
  31. { 105, 103, 141, 158, 118, 243, 182, 240 },
  32. { 109, 104, 141, 162, 119, 244, 185, 241 },
  33. { 113, 104, 142, 166, 120, 245, 187, 242 },
  34. { 116, 105, 143, 170, 122, 246, 190, 243 },
  35. { 120, 106, 143, 173, 123, 247, 192, 244 },
  36. { 123, 107, 144, 177, 125, 248, 195, 244 },
  37. { 127, 108, 145, 180, 126, 249, 197, 245 },
  38. { 130, 109, 145, 183, 128, 249, 199, 245 },
  39. { 134, 110, 146, 186, 129, 250, 201, 246 },
  40. { 137, 111, 147, 189, 131, 251, 203, 246 },
  41. { 140, 112, 147, 192, 132, 251, 205, 247 },
  42. { 143, 113, 148, 194, 133, 251, 207, 247 },
  43. { 146, 114, 149, 197, 135, 252, 208, 248 },
  44. { 149, 115, 149, 199, 136, 252, 210, 248 },
  45. { 152, 115, 150, 201, 138, 252, 211, 248 },
  46. { 155, 116, 151, 204, 139, 253, 213, 249 },
  47. { 158, 117, 151, 206, 140, 253, 214, 249 },
  48. { 161, 118, 152, 208, 142, 253, 216, 249 },
  49. { 163, 119, 153, 210, 143, 253, 217, 249 },
  50. { 166, 120, 153, 212, 144, 254, 218, 250 },
  51. { 168, 121, 154, 213, 146, 254, 220, 250 },
  52. { 171, 122, 155, 215, 147, 254, 221, 250 },
  53. { 173, 123, 155, 217, 148, 254, 222, 250 },
  54. { 176, 124, 156, 218, 150, 254, 223, 250 },
  55. { 178, 125, 157, 220, 151, 254, 224, 251 },
  56. { 180, 126, 157, 221, 152, 254, 225, 251 },
  57. { 183, 127, 158, 222, 153, 254, 226, 251 },
  58. { 185, 128, 159, 224, 155, 255, 227, 251 },
  59. { 187, 129, 160, 225, 156, 255, 228, 251 },
  60. { 189, 131, 160, 226, 157, 255, 228, 251 },
  61. { 191, 132, 161, 227, 159, 255, 229, 251 },
  62. { 193, 133, 162, 228, 160, 255, 230, 252 },
  63. { 195, 134, 163, 230, 161, 255, 231, 252 },
  64. { 197, 135, 163, 231, 162, 255, 231, 252 },
  65. { 199, 136, 164, 232, 163, 255, 232, 252 },
  66. { 201, 137, 165, 233, 165, 255, 233, 252 },
  67. { 202, 138, 166, 233, 166, 255, 233, 252 },
  68. { 204, 139, 166, 234, 167, 255, 234, 252 },
  69. { 206, 140, 167, 235, 168, 255, 235, 252 },
  70. { 207, 141, 168, 236, 169, 255, 235, 252 },
  71. { 209, 142, 169, 237, 171, 255, 236, 252 },
  72. { 210, 144, 169, 237, 172, 255, 236, 252 },
  73. { 212, 145, 170, 238, 173, 255, 237, 252 },
  74. { 214, 146, 171, 239, 174, 255, 237, 253 },
  75. { 215, 147, 172, 240, 175, 255, 238, 253 },
  76. { 216, 148, 173, 240, 176, 255, 238, 253 },
  77. { 218, 149, 173, 241, 177, 255, 239, 253 },
  78. { 219, 150, 174, 241, 179, 255, 239, 253 },
  79. { 220, 152, 175, 242, 180, 255, 240, 253 },
  80. { 222, 153, 176, 242, 181, 255, 240, 253 },
  81. { 223, 154, 177, 243, 182, 255, 240, 253 },
  82. { 224, 155, 178, 244, 183, 255, 241, 253 },
  83. { 225, 156, 178, 244, 184, 255, 241, 253 },
  84. { 226, 158, 179, 244, 185, 255, 242, 253 },
  85. { 228, 159, 180, 245, 186, 255, 242, 253 },
  86. { 229, 160, 181, 245, 187, 255, 242, 253 },
  87. { 230, 161, 182, 246, 188, 255, 243, 253 },
  88. { 231, 163, 183, 246, 189, 255, 243, 253 },
  89. { 232, 164, 184, 247, 190, 255, 243, 253 },
  90. { 233, 165, 185, 247, 191, 255, 244, 253 },
  91. { 234, 166, 185, 247, 192, 255, 244, 253 },
  92. { 235, 168, 186, 248, 193, 255, 244, 253 },
  93. { 236, 169, 187, 248, 194, 255, 244, 253 },
  94. { 236, 170, 188, 248, 195, 255, 245, 253 },
  95. { 237, 171, 189, 249, 196, 255, 245, 254 },
  96. { 238, 173, 190, 249, 197, 255, 245, 254 },
  97. { 239, 174, 191, 249, 198, 255, 245, 254 },
  98. { 240, 175, 192, 249, 199, 255, 246, 254 },
  99. { 240, 177, 193, 250, 200, 255, 246, 254 },
  100. { 241, 178, 194, 250, 201, 255, 246, 254 },
  101. { 242, 179, 195, 250, 202, 255, 246, 254 },
  102. { 242, 181, 196, 250, 203, 255, 247, 254 },
  103. { 243, 182, 197, 251, 204, 255, 247, 254 },
  104. { 244, 184, 198, 251, 205, 255, 247, 254 },
  105. { 244, 185, 199, 251, 206, 255, 247, 254 },
  106. { 245, 186, 200, 251, 207, 255, 247, 254 },
  107. { 246, 188, 201, 252, 207, 255, 248, 254 },
  108. { 246, 189, 202, 252, 208, 255, 248, 254 },
  109. { 247, 191, 203, 252, 209, 255, 248, 254 },
  110. { 247, 192, 204, 252, 210, 255, 248, 254 },
  111. { 248, 194, 205, 252, 211, 255, 248, 254 },
  112. { 248, 195, 206, 252, 212, 255, 249, 254 },
  113. { 249, 197, 207, 253, 213, 255, 249, 254 },
  114. { 249, 198, 208, 253, 214, 255, 249, 254 },
  115. { 250, 200, 210, 253, 215, 255, 249, 254 },
  116. { 250, 201, 211, 253, 215, 255, 249, 254 },
  117. { 250, 203, 212, 253, 216, 255, 249, 254 },
  118. { 251, 204, 213, 253, 217, 255, 250, 254 },
  119. { 251, 206, 214, 254, 218, 255, 250, 254 },
  120. { 252, 207, 216, 254, 219, 255, 250, 254 },
  121. { 252, 209, 217, 254, 220, 255, 250, 254 },
  122. { 252, 211, 218, 254, 221, 255, 250, 254 },
  123. { 253, 213, 219, 254, 222, 255, 250, 254 },
  124. { 253, 214, 221, 254, 223, 255, 250, 254 },
  125. { 253, 216, 222, 254, 224, 255, 251, 254 },
  126. { 253, 218, 224, 254, 225, 255, 251, 254 },
  127. { 254, 220, 225, 254, 225, 255, 251, 254 },
  128. { 254, 222, 227, 255, 226, 255, 251, 254 },
  129. { 254, 224, 228, 255, 227, 255, 251, 254 },
  130. { 254, 226, 230, 255, 228, 255, 251, 254 },
  131. { 255, 228, 231, 255, 230, 255, 251, 254 },
  132. { 255, 230, 233, 255, 231, 255, 252, 254 },
  133. { 255, 232, 235, 255, 232, 255, 252, 254 },
  134. { 255, 235, 237, 255, 233, 255, 252, 254 },
  135. { 255, 238, 240, 255, 235, 255, 252, 255 },
  136. { 255, 241, 243, 255, 236, 255, 252, 254 },
  137. { 255, 246, 247, 255, 239, 255, 253, 255 }
  138. };
  139. static constexpr KfPartitionProbs constant_kf_partition_probs = {
  140. // 8x8 -> 4x4
  141. { 158, 97, 94 }, // a/l both not split
  142. { 93, 24, 99 }, // a split, l not split
  143. { 85, 119, 44 }, // l split, a not split
  144. { 62, 59, 67 }, // a/l both split
  145. // 16x16 -> 8x8
  146. { 149, 53, 53 }, // a/l both not split
  147. { 94, 20, 48 }, // a split, l not split
  148. { 83, 53, 24 }, // l split, a not split
  149. { 52, 18, 18 }, // a/l both split
  150. // 32x32 -> 16x16
  151. { 150, 40, 39 }, // a/l both not split
  152. { 78, 12, 26 }, // a split, l not split
  153. { 67, 33, 11 }, // l split, a not split
  154. { 24, 7, 5 }, // a/l both split
  155. // 64x64 -> 32x32
  156. { 174, 35, 49 }, // a/l both not split
  157. { 68, 11, 27 }, // a split, l not split
  158. { 57, 15, 9 }, // l split, a not split
  159. { 12, 3, 3 }, // a/l both split
  160. };
  161. static constexpr KfYModeProbs constant_kf_y_mode_probs = {
  162. {
  163. // above = dc
  164. { 137, 30, 42, 148, 151, 207, 70, 52, 91 }, // left = dc
  165. { 92, 45, 102, 136, 116, 180, 74, 90, 100 }, // left = v
  166. { 73, 32, 19, 187, 222, 215, 46, 34, 100 }, // left = h
  167. { 91, 30, 32, 116, 121, 186, 93, 86, 94 }, // left = d45
  168. { 72, 35, 36, 149, 68, 206, 68, 63, 105 }, // left = d135
  169. { 73, 31, 28, 138, 57, 124, 55, 122, 151 }, // left = d117
  170. { 67, 23, 21, 140, 126, 197, 40, 37, 171 }, // left = d153
  171. { 86, 27, 28, 128, 154, 212, 45, 43, 53 }, // left = d207
  172. { 74, 32, 27, 107, 86, 160, 63, 134, 102 }, // left = d63
  173. { 59, 67, 44, 140, 161, 202, 78, 67, 119 } // left = tm
  174. },
  175. {
  176. // above = v
  177. { 63, 36, 126, 146, 123, 158, 60, 90, 96 }, // left = dc
  178. { 43, 46, 168, 134, 107, 128, 69, 142, 92 }, // left = v
  179. { 44, 29, 68, 159, 201, 177, 50, 57, 77 }, // left = h
  180. { 58, 38, 76, 114, 97, 172, 78, 133, 92 }, // left = d45
  181. { 46, 41, 76, 140, 63, 184, 69, 112, 57 }, // left = d135
  182. { 38, 32, 85, 140, 46, 112, 54, 151, 133 }, // left = d117
  183. { 39, 27, 61, 131, 110, 175, 44, 75, 136 }, // left = d153
  184. { 52, 30, 74, 113, 130, 175, 51, 64, 58 }, // left = d207
  185. { 47, 35, 80, 100, 74, 143, 64, 163, 74 }, // left = d63
  186. { 36, 61, 116, 114, 128, 162, 80, 125, 82 } // left = tm
  187. },
  188. {
  189. // above = h
  190. { 82, 26, 26, 171, 208, 204, 44, 32, 105 }, // left = dc
  191. { 55, 44, 68, 166, 179, 192, 57, 57, 108 }, // left = v
  192. { 42, 26, 11, 199, 241, 228, 23, 15, 85 }, // left = h
  193. { 68, 42, 19, 131, 160, 199, 55, 52, 83 }, // left = d45
  194. { 58, 50, 25, 139, 115, 232, 39, 52, 118 }, // left = d135
  195. { 50, 35, 33, 153, 104, 162, 64, 59, 131 }, // left = d117
  196. { 44, 24, 16, 150, 177, 202, 33, 19, 156 }, // left = d153
  197. { 55, 27, 12, 153, 203, 218, 26, 27, 49 }, // left = d207
  198. { 53, 49, 21, 110, 116, 168, 59, 80, 76 }, // left = d63
  199. { 38, 72, 19, 168, 203, 212, 50, 50, 107 } // left = tm
  200. },
  201. {
  202. // above = d45
  203. { 103, 26, 36, 129, 132, 201, 83, 80, 93 }, // left = dc
  204. { 59, 38, 83, 112, 103, 162, 98, 136, 90 }, // left = v
  205. { 62, 30, 23, 158, 200, 207, 59, 57, 50 }, // left = h
  206. { 67, 30, 29, 84, 86, 191, 102, 91, 59 }, // left = d45
  207. { 60, 32, 33, 112, 71, 220, 64, 89, 104 }, // left = d135
  208. { 53, 26, 34, 130, 56, 149, 84, 120, 103 }, // left = d117
  209. { 53, 21, 23, 133, 109, 210, 56, 77, 172 }, // left = d153
  210. { 77, 19, 29, 112, 142, 228, 55, 66, 36 }, // left = d207
  211. { 61, 29, 29, 93, 97, 165, 83, 175, 162 }, // left = d63
  212. { 47, 47, 43, 114, 137, 181, 100, 99, 95 } // left = tm
  213. },
  214. {
  215. // above = d135
  216. { 69, 23, 29, 128, 83, 199, 46, 44, 101 }, // left = dc
  217. { 53, 40, 55, 139, 69, 183, 61, 80, 110 }, // left = v
  218. { 40, 29, 19, 161, 180, 207, 43, 24, 91 }, // left = h
  219. { 60, 34, 19, 105, 61, 198, 53, 64, 89 }, // left = d45
  220. { 52, 31, 22, 158, 40, 209, 58, 62, 89 }, // left = d135
  221. { 44, 31, 29, 147, 46, 158, 56, 102, 198 }, // left = d117
  222. { 35, 19, 12, 135, 87, 209, 41, 45, 167 }, // left = d153
  223. { 55, 25, 21, 118, 95, 215, 38, 39, 66 }, // left = d207
  224. { 51, 38, 25, 113, 58, 164, 70, 93, 97 }, // left = d63
  225. { 47, 54, 34, 146, 108, 203, 72, 103, 151 } // left = tm
  226. },
  227. {
  228. // above = d117
  229. { 64, 19, 37, 156, 66, 138, 49, 95, 133 }, // left = dc
  230. { 46, 27, 80, 150, 55, 124, 55, 121, 135 }, // left = v
  231. { 36, 23, 27, 165, 149, 166, 54, 64, 118 }, // left = h
  232. { 53, 21, 36, 131, 63, 163, 60, 109, 81 }, // left = d45
  233. { 40, 26, 35, 154, 40, 185, 51, 97, 123 }, // left = d135
  234. { 35, 19, 34, 179, 19, 97, 48, 129, 124 }, // left = d117
  235. { 36, 20, 26, 136, 62, 164, 33, 77, 154 }, // left = d153
  236. { 45, 18, 32, 130, 90, 157, 40, 79, 91 }, // left = d207
  237. { 45, 26, 28, 129, 45, 129, 49, 147, 123 }, // left = d63
  238. { 38, 44, 51, 136, 74, 162, 57, 97, 121 } // left = tm
  239. },
  240. {
  241. // above = d153
  242. { 75, 17, 22, 136, 138, 185, 32, 34, 166 }, // left = dc
  243. { 56, 39, 58, 133, 117, 173, 48, 53, 187 }, // left = v
  244. { 35, 21, 12, 161, 212, 207, 20, 23, 145 }, // left = h
  245. { 56, 29, 19, 117, 109, 181, 55, 68, 112 }, // left = d45
  246. { 47, 29, 17, 153, 64, 220, 59, 51, 114 }, // left = d135
  247. { 46, 16, 24, 136, 76, 147, 41, 64, 172 }, // left = d117
  248. { 34, 17, 11, 108, 152, 187, 13, 15, 209 }, // left = d153
  249. { 51, 24, 14, 115, 133, 209, 32, 26, 104 }, // left = d207
  250. { 55, 30, 18, 122, 79, 179, 44, 88, 116 }, // left = d63
  251. { 37, 49, 25, 129, 168, 164, 41, 54, 148 } // left = tm
  252. },
  253. {
  254. // above = d207
  255. { 82, 22, 32, 127, 143, 213, 39, 41, 70 }, // left = dc
  256. { 62, 44, 61, 123, 105, 189, 48, 57, 64 }, // left = v
  257. { 47, 25, 17, 175, 222, 220, 24, 30, 86 }, // left = h
  258. { 68, 36, 17, 106, 102, 206, 59, 74, 74 }, // left = d45
  259. { 57, 39, 23, 151, 68, 216, 55, 63, 58 }, // left = d135
  260. { 49, 30, 35, 141, 70, 168, 82, 40, 115 }, // left = d117
  261. { 51, 25, 15, 136, 129, 202, 38, 35, 139 }, // left = d153
  262. { 68, 26, 16, 111, 141, 215, 29, 28, 28 }, // left = d207
  263. { 59, 39, 19, 114, 75, 180, 77, 104, 42 }, // left = d63
  264. { 40, 61, 26, 126, 152, 206, 61, 59, 93 } // left = tm
  265. },
  266. {
  267. // above = d63
  268. { 78, 23, 39, 111, 117, 170, 74, 124, 94 }, // left = dc
  269. { 48, 34, 86, 101, 92, 146, 78, 179, 134 }, // left = v
  270. { 47, 22, 24, 138, 187, 178, 68, 69, 59 }, // left = h
  271. { 56, 25, 33, 105, 112, 187, 95, 177, 129 }, // left = d45
  272. { 48, 31, 27, 114, 63, 183, 82, 116, 56 }, // left = d135
  273. { 43, 28, 37, 121, 63, 123, 61, 192, 169 }, // left = d117
  274. { 42, 17, 24, 109, 97, 177, 56, 76, 122 }, // left = d153
  275. { 58, 18, 28, 105, 139, 182, 70, 92, 63 }, // left = d207
  276. { 46, 23, 32, 74, 86, 150, 67, 183, 88 }, // left = d63
  277. { 36, 38, 48, 92, 122, 165, 88, 137, 91 } // left = tm
  278. },
  279. {
  280. // above = tm
  281. { 65, 70, 60, 155, 159, 199, 61, 60, 81 }, // left = dc
  282. { 44, 78, 115, 132, 119, 173, 71, 112, 93 }, // left = v
  283. { 39, 38, 21, 184, 227, 206, 42, 32, 64 }, // left = h
  284. { 58, 47, 36, 124, 137, 193, 80, 82, 78 }, // left = d45
  285. { 49, 50, 35, 144, 95, 205, 63, 78, 59 }, // left = d135
  286. { 41, 53, 52, 148, 71, 142, 65, 128, 51 }, // left = d117
  287. { 40, 36, 28, 143, 143, 202, 40, 55, 137 }, // left = d153
  288. { 52, 34, 29, 129, 183, 227, 42, 35, 43 }, // left = d207
  289. { 42, 44, 44, 104, 105, 164, 64, 130, 80 }, // left = d63
  290. { 43, 81, 53, 140, 169, 204, 68, 84, 72 } // left = tm
  291. }
  292. };
  293. static constexpr KfUVModeProbs constant_kf_uv_mode_prob = {
  294. { 144, 11, 54, 157, 195, 130, 46, 58, 108 }, // y = dc
  295. { 118, 15, 123, 148, 131, 101, 44, 93, 131 }, // y = v
  296. { 113, 12, 23, 188, 226, 142, 26, 32, 125 }, // y = h
  297. { 120, 11, 50, 123, 163, 135, 64, 77, 103 }, // y = d45
  298. { 113, 9, 36, 155, 111, 157, 32, 44, 161 }, // y = d135
  299. { 116, 9, 55, 176, 76, 96, 37, 61, 149 }, // y = d117
  300. { 115, 9, 28, 141, 161, 167, 21, 25, 193 }, // y = d153
  301. { 120, 12, 32, 145, 195, 142, 32, 38, 86 }, // y = d207
  302. { 116, 12, 64, 120, 140, 125, 49, 115, 121 }, // y = d63
  303. { 102, 19, 66, 162, 182, 122, 35, 59, 128 } // y = tm
  304. };
  305. static constexpr PartitionProbs default_partition_probs = {
  306. // 8x8 -> 4x4
  307. { 199, 122, 141 }, // a/l both not split
  308. { 147, 63, 159 }, // a split, l not split
  309. { 148, 133, 118 }, // l split, a not split
  310. { 121, 104, 114 }, // a/l both split
  311. // 16x16 -> 8x8
  312. { 174, 73, 87 }, // a/l both not split
  313. { 92, 41, 83 }, // a split, l not split
  314. { 82, 99, 50 }, // l split, a not split
  315. { 53, 39, 39 }, // a/l both split
  316. // 32x32 -> 16x16
  317. { 177, 58, 59 }, // a/l both not split
  318. { 68, 26, 63 }, // a split, l not split
  319. { 52, 79, 25 }, // l split, a not split
  320. { 17, 14, 12 }, // a/l both split
  321. // 64x64 -> 32x32
  322. { 222, 34, 30 }, // a/l both not split
  323. { 72, 16, 44 }, // a split, l not split
  324. { 58, 32, 12 }, // l split, a not split
  325. { 10, 7, 6 }, // a/l both split
  326. };
  327. static constexpr YModeProbs default_y_mode_probs = {
  328. { 65, 32, 18, 144, 162, 194, 41, 51, 98 }, // block_size < 8x8
  329. { 132, 68, 18, 165, 217, 196, 45, 40, 78 }, // block_size < 16x16
  330. { 173, 80, 19, 176, 240, 193, 64, 35, 46 }, // block_size < 32x32
  331. { 221, 135, 38, 194, 248, 121, 96, 85, 29 } // block_size >= 32x32
  332. };
  333. static constexpr UVModeProbs default_uv_mode_probs = {
  334. { 120, 7, 76, 176, 208, 126, 28, 54, 103 }, // y = dc
  335. { 48, 12, 154, 155, 139, 90, 34, 117, 119 }, // y = v
  336. { 67, 6, 25, 204, 243, 158, 13, 21, 96 }, // y = h
  337. { 97, 5, 44, 131, 176, 139, 48, 68, 97 }, // y = d45
  338. { 83, 5, 42, 156, 111, 152, 26, 49, 152 }, // y = d135
  339. { 80, 5, 58, 178, 74, 83, 33, 62, 145 }, // y = d117
  340. { 86, 5, 32, 154, 192, 168, 14, 22, 163 }, // y = d153
  341. { 85, 5, 32, 156, 216, 148, 19, 29, 73 }, // y = d207
  342. { 77, 7, 64, 116, 132, 122, 37, 126, 120 }, // y = d63
  343. { 101, 21, 107, 181, 192, 103, 19, 67, 125 } // y = tm
  344. };
  345. static constexpr SkipProb default_skip_prob = {
  346. 192, 128, 64
  347. };
  348. static constexpr IsInterProb default_is_inter_prob = {
  349. 9, 102, 187, 225
  350. };
  351. static constexpr CompModeProb default_comp_mode_prob = {
  352. 239, 183, 119, 96, 41
  353. };
  354. static constexpr CompRefProb default_comp_ref_prob = {
  355. 50, 126, 123, 221, 226
  356. };
  357. static constexpr SingleRefProb default_single_ref_prob = {
  358. { 33, 16 },
  359. { 77, 74 },
  360. { 142, 142 },
  361. { 172, 170 },
  362. { 238, 247 }
  363. };
  364. static constexpr MvSignProb default_mv_sign_prob = {
  365. 128, 128
  366. };
  367. static constexpr MvBitsProb default_mv_bits_prob = {
  368. { 136, 140, 148, 160, 176, 192, 224, 234, 234, 240 },
  369. { 136, 140, 148, 160, 176, 192, 224, 234, 234, 240 }
  370. };
  371. static constexpr MvClass0BitProb default_mv_class0_bit_prob = {
  372. 216, 208
  373. };
  374. static constexpr TxProbs default_tx_probs = {
  375. { { 0, 0, 0 }, { 0, 0, 0 } },
  376. { { 100, 0, 0 }, { 66, 0, 0 } },
  377. { { 20, 152, 0 }, { 15, 101, 0 } },
  378. { { 3, 136, 37 }, { 5, 52, 13 } }
  379. };
  380. static constexpr InterModeProbs default_inter_mode_probs = {
  381. { 2, 173, 34 }, // 0 = both zero mv
  382. { 7, 145, 85 }, // 1 = one zero mv + one a predicted mv
  383. { 7, 166, 63 }, // 2 = two predicted mvs
  384. { 7, 94, 66 }, // 3 = one predicted/zero and one new mv
  385. { 8, 64, 46 }, // 4 = two new mvs
  386. { 17, 81, 31 }, // 5 = one intra neighbor + x
  387. { 25, 29, 30 }, // 6 = two intra neighbors
  388. };
  389. static constexpr InterpFilterProbs default_interp_filter_probs = {
  390. { 235, 162 }, { 36, 255 }, { 34, 3 }, { 149, 144 }
  391. };
  392. static constexpr MvJointProbs default_mv_joint_probs = {
  393. 32, 64, 96
  394. };
  395. static constexpr MvClassProbs default_mv_class_probs = {
  396. { 224, 144, 192, 168, 192, 176, 192, 198, 198, 245 }, { 216, 128, 176, 160, 176, 176, 192, 198, 198, 208 }
  397. };
  398. static constexpr MvClass0FrProbs default_mv_class0_fr_probs = {
  399. { { 128, 128, 64 }, { 96, 112, 64 } }, { { 128, 128, 64 }, { 96, 112, 64 } }
  400. };
  401. static constexpr MvClass0HpProbs default_mv_class0_hp_prob = {
  402. 160, 160
  403. };
  404. static constexpr MvFrProbs default_mv_fr_probs = {
  405. { 64, 96, 64 }, { 64, 96, 64 }
  406. };
  407. static constexpr MvHpProb default_mv_hp_prob = {
  408. 128, 128
  409. };
  410. static constexpr CoefProbs default_coef_probs = {
  411. { { /* block Type 0 */
  412. { /* Intra */
  413. {
  414. /* Coeff Band 0 */
  415. { 195, 29, 183 },
  416. { 84, 49, 136 },
  417. { 8, 42, 71 },
  418. { 0, 0, 0 }, // unused
  419. { 0, 0, 0 }, // unused
  420. { 0, 0, 0 } // unused
  421. },
  422. { /* Coeff Band 1 */
  423. { 31, 107, 169 },
  424. { 35, 99, 159 },
  425. { 17, 82, 140 },
  426. { 8, 66, 114 },
  427. { 2, 44, 76 },
  428. { 1, 19, 32 } },
  429. { /* Coeff Band 2 */
  430. { 40, 132, 201 },
  431. { 29, 114, 187 },
  432. { 13, 91, 157 },
  433. { 7, 75, 127 },
  434. { 3, 58, 95 },
  435. { 1, 28, 47 } },
  436. { /* Coeff Band 3 */
  437. { 69, 142, 221 },
  438. { 42, 122, 201 },
  439. { 15, 91, 159 },
  440. { 6, 67, 121 },
  441. { 1, 42, 77 },
  442. { 1, 17, 31 } },
  443. { /* Coeff Band 4 */
  444. { 102, 148, 228 },
  445. { 67, 117, 204 },
  446. { 17, 82, 154 },
  447. { 6, 59, 114 },
  448. { 2, 39, 75 },
  449. { 1, 15, 29 } },
  450. { /* Coeff Band 5 */
  451. { 156, 57, 233 },
  452. { 119, 57, 212 },
  453. { 58, 48, 163 },
  454. { 29, 40, 124 },
  455. { 12, 30, 81 },
  456. { 3, 12, 31 } } },
  457. { /* Inter */
  458. {
  459. /* Coeff Band 0 */
  460. { 191, 107, 226 },
  461. { 124, 117, 204 },
  462. { 25, 99, 155 },
  463. { 0, 0, 0 }, // unused
  464. { 0, 0, 0 }, // unused
  465. { 0, 0, 0 } // unused
  466. },
  467. { /* Coeff Band 1 */
  468. { 29, 148, 210 },
  469. { 37, 126, 194 },
  470. { 8, 93, 157 },
  471. { 2, 68, 118 },
  472. { 1, 39, 69 },
  473. { 1, 17, 33 } },
  474. { /* Coeff Band 2 */
  475. { 41, 151, 213 },
  476. { 27, 123, 193 },
  477. { 3, 82, 144 },
  478. { 1, 58, 105 },
  479. { 1, 32, 60 },
  480. { 1, 13, 26 } },
  481. { /* Coeff Band 3 */
  482. { 59, 159, 220 },
  483. { 23, 126, 198 },
  484. { 4, 88, 151 },
  485. { 1, 66, 114 },
  486. { 1, 38, 71 },
  487. { 1, 18, 34 } },
  488. { /* Coeff Band 4 */ { 114, 136, 232 },
  489. { 51, 114, 207 },
  490. { 11, 83, 155 },
  491. { 3, 56, 105 },
  492. { 1, 33, 65 },
  493. { 1, 17, 34 } },
  494. { /* Coeff Band 5 */
  495. { 149, 65, 234 },
  496. { 121, 57, 215 },
  497. { 61, 49, 166 },
  498. { 28, 36, 114 },
  499. { 12, 25, 76 },
  500. { 3, 16, 42 } } } },
  501. { /* block Type 1 */
  502. { /* Intra */
  503. {
  504. /* Coeff Band 0 */
  505. { 214, 49, 220 },
  506. { 132, 63, 188 },
  507. { 42, 65, 137 },
  508. { 0, 0, 0 }, // unused
  509. { 0, 0, 0 }, // unused
  510. { 0, 0, 0 } // unused
  511. },
  512. { /* Coeff Band 1 */
  513. { 85, 137, 221 },
  514. { 104, 131, 216 },
  515. { 49, 111, 192 },
  516. { 21, 87, 155 },
  517. { 2, 49, 87 },
  518. { 1, 16, 28 } },
  519. { /* Coeff Band 2 */
  520. { 89, 163, 230 },
  521. { 90, 137, 220 },
  522. { 29, 100, 183 },
  523. { 10, 70, 135 },
  524. { 2, 42, 81 },
  525. { 1, 17, 33 } },
  526. { /* Coeff Band 3 */
  527. { 108, 167, 237 },
  528. { 55, 133, 222 },
  529. { 15, 97, 179 },
  530. { 4, 72, 135 },
  531. { 1, 45, 85 },
  532. { 1, 19, 38 } },
  533. { /* Coeff Band 4 */
  534. { 124, 146, 240 },
  535. { 66, 124, 224 },
  536. { 17, 88, 175 },
  537. { 4, 58, 122 },
  538. { 1, 36, 75 },
  539. { 1, 18, 37 } },
  540. { /* Coeff Band 5 */
  541. { 141, 79, 241 },
  542. { 126, 70, 227 },
  543. { 66, 58, 182 },
  544. { 30, 44, 136 },
  545. { 12, 34, 96 },
  546. { 2, 20, 47 } } },
  547. { /* Inter */
  548. {
  549. /* Coeff Band 0 */
  550. { 229, 99, 249 },
  551. { 143, 111, 235 },
  552. { 46, 109, 192 },
  553. { 0, 0, 0 }, // unused
  554. { 0, 0, 0 }, // unused
  555. { 0, 0, 0 } // unused
  556. },
  557. { /* Coeff Band 1 */
  558. { 82, 158, 236 },
  559. { 94, 146, 224 },
  560. { 25, 117, 191 },
  561. { 9, 87, 149 },
  562. { 3, 56, 99 },
  563. { 1, 33, 57 } },
  564. { /* Coeff Band 2 */
  565. { 83, 167, 237 },
  566. { 68, 145, 222 },
  567. { 10, 103, 177 },
  568. { 2, 72, 131 },
  569. { 1, 41, 79 },
  570. { 1, 20, 39 } },
  571. { /* Coeff Band 3 */
  572. { 99, 167, 239 },
  573. { 47, 141, 224 },
  574. { 10, 104, 178 },
  575. { 2, 73, 133 },
  576. { 1, 44, 85 },
  577. { 1, 22, 47 } },
  578. { /* Coeff Band 4 */ { 127, 145, 243 },
  579. { 71, 129, 228 },
  580. { 17, 93, 177 },
  581. { 3, 61, 124 },
  582. { 1, 41, 84 },
  583. { 1, 21, 52 } },
  584. { /* Coeff Band 5 */
  585. { 157, 78, 244 },
  586. { 140, 72, 231 },
  587. { 69, 58, 184 },
  588. { 31, 44, 137 },
  589. { 14, 38, 105 },
  590. { 8, 23, 61 } } } } },
  591. { { /* block Type 0 */
  592. { /* Intra */
  593. {
  594. /* Coeff Band 0 */
  595. { 125, 34, 187 },
  596. { 52, 41, 133 },
  597. { 6, 31, 56 },
  598. { 0, 0, 0 }, // unused
  599. { 0, 0, 0 }, // unused
  600. { 0, 0, 0 } // unused
  601. },
  602. { /* Coeff Band 1 */
  603. { 37, 109, 153 },
  604. { 51, 102, 147 },
  605. { 23, 87, 128 },
  606. { 8, 67, 101 },
  607. { 1, 41, 63 },
  608. { 1, 19, 29 } },
  609. { /* Coeff Band 2 */
  610. { 31, 154, 185 },
  611. { 17, 127, 175 },
  612. { 6, 96, 145 },
  613. { 2, 73, 114 },
  614. { 1, 51, 82 },
  615. { 1, 28, 45 } },
  616. { /* Coeff Band 3 */
  617. { 23, 163, 200 },
  618. { 10, 131, 185 },
  619. { 2, 93, 148 }, { 1, 67, 111 },
  620. { 1, 41, 69 },
  621. { 1, 14, 24 } },
  622. { /* Coeff Band 4 */
  623. { 29, 176, 217 },
  624. { 12, 145, 201 },
  625. { 3, 101, 156 },
  626. { 1, 69, 111 },
  627. { 1, 39, 63 },
  628. { 1, 14, 23 } },
  629. { /* Coeff Band 5 */
  630. { 57, 192, 233 },
  631. { 25, 154, 215 },
  632. { 6, 109, 167 },
  633. { 3, 78, 118 },
  634. { 1, 48, 69 },
  635. { 1, 21, 29 } } },
  636. { /* Inter */
  637. {
  638. /* Coeff Band 0 */
  639. { 202, 105, 245 },
  640. { 108, 106, 216 },
  641. { 18, 90, 144 },
  642. { 0, 0, 0 }, // unused
  643. { 0, 0, 0 }, // unused
  644. { 0, 0, 0 } // unused
  645. },
  646. { /* Coeff Band 1 */
  647. { 33, 172, 219 },
  648. { 64, 149, 206 },
  649. { 14, 117, 177 },
  650. { 5, 90, 141 },
  651. { 2, 61, 95 },
  652. { 1, 37, 57 } },
  653. { /* Coeff Band 2 */
  654. { 33, 179, 220 },
  655. { 11, 140, 198 },
  656. { 1, 89, 148 },
  657. { 1, 60, 104 },
  658. { 1, 33, 57 },
  659. { 1, 12, 21 } },
  660. { /* Coeff Band 3 */
  661. { 30, 181, 221 },
  662. { 8, 141, 198 },
  663. { 1, 87, 145 },
  664. { 1, 58, 100 }, { 1, 31, 55 },
  665. { 1, 12, 20 } },
  666. { /* Coeff Band 4 */
  667. { 32, 186, 224 },
  668. { 7, 142, 198 },
  669. { 1, 86, 143 },
  670. { 1, 58, 100 },
  671. { 1, 31, 55 },
  672. { 1, 12, 22 } },
  673. { /* Coeff Band 5 */
  674. { 57, 192, 227 },
  675. { 20, 143, 204 },
  676. { 3, 96, 154 },
  677. { 1, 68, 112 },
  678. { 1, 42, 69 },
  679. { 1, 19, 32 } } } },
  680. { /* block Type 1 */
  681. { /* Intra */
  682. {
  683. /* Coeff Band 0 */
  684. { 212, 35, 215 },
  685. { 113, 47, 169 },
  686. { 29, 48, 105 },
  687. { 0, 0, 0 }, // unused
  688. { 0, 0, 0 }, // unused
  689. { 0, 0, 0 } // unused
  690. },
  691. { /* Coeff Band 1 */
  692. { 74, 129, 203 },
  693. { 106, 120, 203 },
  694. { 49, 107, 178 },
  695. { 19, 84, 144 },
  696. { 4, 50, 84 },
  697. { 1, 15, 25 } },
  698. { /* Coeff Band 2 */
  699. { 71, 172, 217 },
  700. { 44, 141, 209 },
  701. { 15, 102, 173 },
  702. { 6, 76, 133 },
  703. { 2, 51, 89 },
  704. { 1, 24, 42 } },
  705. { /* Coeff Band 3 */
  706. { 64, 185, 231 },
  707. { 31, 148, 216 },
  708. { 8, 103, 175 }, { 3, 74, 131 },
  709. { 1, 46, 81 },
  710. { 1, 18, 30 } },
  711. { /* Coeff Band 4 */
  712. { 65, 196, 235 },
  713. { 25, 157, 221 },
  714. { 5, 105, 174 },
  715. { 1, 67, 120 },
  716. { 1, 38, 69 },
  717. { 1, 15, 30 } },
  718. { /* Coeff Band 5 */
  719. { 65, 204, 238 },
  720. { 30, 156, 224 },
  721. { 7, 107, 177 },
  722. { 2, 70, 124 },
  723. { 1, 42, 73 },
  724. { 1, 18, 34 } } },
  725. { /* Inter */
  726. {
  727. /* Coeff Band 0 */
  728. { 225, 86, 251 },
  729. { 144, 104, 235 },
  730. { 42, 99, 181 },
  731. { 0, 0, 0 }, // unused
  732. { 0, 0, 0 }, // unused
  733. { 0, 0, 0 } // unused
  734. },
  735. { /* Coeff Band 1 */
  736. { 85, 175, 239 },
  737. { 112, 165, 229 },
  738. { 29, 136, 200 },
  739. { 12, 103, 162 },
  740. { 6, 77, 123 },
  741. { 2, 53, 84 } },
  742. { /* Coeff Band 2 */
  743. { 75, 183, 239 },
  744. { 30, 155, 221 },
  745. { 3, 106, 171 },
  746. { 1, 74, 128 },
  747. { 1, 44, 76 },
  748. { 1, 17, 28 } },
  749. { /* Coeff Band 3 */
  750. { 73, 185, 240 },
  751. { 27, 159, 222 },
  752. { 2, 107, 172 },
  753. { 1, 75, 127 }, { 1, 42, 73 },
  754. { 1, 17, 29 } },
  755. { /* Coeff Band 4 */
  756. { 62, 190, 238 },
  757. { 21, 159, 222 },
  758. { 2, 107, 172 },
  759. { 1, 72, 122 },
  760. { 1, 40, 71 },
  761. { 1, 18, 32 } },
  762. { /* Coeff Band 5 */
  763. { 61, 199, 240 },
  764. { 27, 161, 226 },
  765. { 4, 113, 180 },
  766. { 1, 76, 129 },
  767. { 1, 46, 80 },
  768. { 1, 23, 41 } } } } },
  769. { { /* block Type 0 */
  770. { /* Intra */
  771. {
  772. /* Coeff Band 0 */
  773. { 7, 27, 153 },
  774. { 5, 30, 95 },
  775. { 1, 16, 30 },
  776. { 0, 0, 0 }, // unused
  777. { 0, 0, 0 }, // unused
  778. { 0, 0, 0 } // unused
  779. },
  780. { /* Coeff Band 1 */
  781. { 50, 75, 127 },
  782. { 57, 75, 124 },
  783. { 27, 67, 108 },
  784. { 10, 54, 86 },
  785. { 1, 33, 52 },
  786. { 1, 12, 18 } },
  787. { /* Coeff Band 2 */
  788. { 43, 125, 151 },
  789. { 26, 108, 148 },
  790. { 7, 83, 122 },
  791. { 2, 59, 89 },
  792. { 1, 38, 60 },
  793. { 1, 17, 27 } },
  794. { /* Coeff Band 3 */ { 23, 144, 163 },
  795. { 13, 112, 154 },
  796. { 2, 75, 117 },
  797. { 1, 50, 81 },
  798. { 1, 31, 51 },
  799. { 1, 14, 23 } },
  800. { /* Coeff Band 4 */
  801. { 18, 162, 185 },
  802. { 6, 123, 171 },
  803. { 1, 78, 125 },
  804. { 1, 51, 86 },
  805. { 1, 31, 54 },
  806. { 1, 14, 23 } },
  807. { /* Coeff Band 5 */
  808. { 15, 199, 227 },
  809. { 3, 150, 204 },
  810. { 1, 91, 146 },
  811. { 1, 55, 95 },
  812. { 1, 30, 53 },
  813. { 1, 11, 20 } } },
  814. { /* Inter */
  815. {
  816. /* Coeff Band 0 */
  817. { 19, 55, 240 },
  818. { 19, 59, 196 },
  819. { 3, 52, 105 },
  820. { 0, 0, 0 }, // unused
  821. { 0, 0, 0 }, // unused
  822. { 0, 0, 0 } // unused
  823. },
  824. { /* Coeff Band 1 */
  825. { 41, 166, 207 },
  826. { 104, 153, 199 },
  827. { 31, 123, 181 },
  828. { 14, 101, 152 },
  829. { 5, 72, 106 },
  830. { 1, 36, 52 } },
  831. { /* Coeff Band 2 */
  832. { 35, 176, 211 },
  833. { 12, 131, 190 },
  834. { 2, 88, 144 },
  835. { 1, 60, 101 },
  836. { 1, 36, 60 },
  837. { 1, 16, 28 } },
  838. { /* Coeff Band 3 */
  839. { 28, 183, 213 }, { 8, 134, 191 },
  840. { 1, 86, 142 },
  841. { 1, 56, 96 },
  842. { 1, 30, 53 },
  843. { 1, 12, 20 } },
  844. { /* Coeff Band 4 */
  845. { 20, 190, 215 },
  846. { 4, 135, 192 },
  847. { 1, 84, 139 },
  848. { 1, 53, 91 },
  849. { 1, 28, 49 },
  850. { 1, 11, 20 } },
  851. { /* Coeff Band 5 */
  852. { 13, 196, 216 },
  853. { 2, 137, 192 },
  854. { 1, 86, 143 },
  855. { 1, 57, 99 },
  856. { 1, 32, 56 },
  857. { 1, 13, 24 } } } },
  858. { /* block Type 1 */
  859. { /* Intra */
  860. {
  861. /* Coeff Band 0 */
  862. { 211, 29, 217 },
  863. { 96, 47, 156 },
  864. { 22, 43, 87 },
  865. { 0, 0, 0 }, // unused
  866. { 0, 0, 0 }, // unused
  867. { 0, 0, 0 } // unused
  868. },
  869. { /* Coeff Band 1 */
  870. { 78, 120, 193 },
  871. { 111, 116, 186 },
  872. { 46, 102, 164 },
  873. { 15, 80, 128 },
  874. { 2, 49, 76 },
  875. { 1, 18, 28 } },
  876. { /* Coeff Band 2 */
  877. { 71, 161, 203 },
  878. { 42, 132, 192 },
  879. { 10, 98, 150 },
  880. { 3, 69, 109 },
  881. { 1, 44, 70 },
  882. { 1, 18, 29 } },
  883. { /* Coeff Band 3 */ { 57, 186, 211 },
  884. { 30, 140, 196 },
  885. { 4, 93, 146 },
  886. { 1, 62, 102 },
  887. { 1, 38, 65 },
  888. { 1, 16, 27 } },
  889. { /* Coeff Band 4 */
  890. { 47, 199, 217 },
  891. { 14, 145, 196 },
  892. { 1, 88, 142 },
  893. { 1, 57, 98 },
  894. { 1, 36, 62 },
  895. { 1, 15, 26 } },
  896. { /* Coeff Band 5 */
  897. { 26, 219, 229 },
  898. { 5, 155, 207 },
  899. { 1, 94, 151 },
  900. { 1, 60, 104 },
  901. { 1, 36, 62 },
  902. { 1, 16, 28 } } },
  903. { /* Inter */
  904. {
  905. /* Coeff Band 0 */
  906. { 233, 29, 248 },
  907. { 146, 47, 220 },
  908. { 43, 52, 140 },
  909. { 0, 0, 0 }, // unused
  910. { 0, 0, 0 }, // unused
  911. { 0, 0, 0 } // unused
  912. },
  913. { /* Coeff Band 1 */
  914. { 100, 163, 232 },
  915. { 179, 161, 222 },
  916. { 63, 142, 204 },
  917. { 37, 113, 174 },
  918. { 26, 89, 137 },
  919. { 18, 68, 97 } },
  920. { /* Coeff Band 2 */
  921. { 85, 181, 230 },
  922. { 32, 146, 209 },
  923. { 7, 100, 164 },
  924. { 3, 71, 121 },
  925. { 1, 45, 77 },
  926. { 1, 18, 30 } },
  927. { /* Coeff Band 3 */
  928. { 65, 187, 230 }, { 20, 148, 207 },
  929. { 2, 97, 159 },
  930. { 1, 68, 116 },
  931. { 1, 40, 70 },
  932. { 1, 14, 29 } },
  933. { /* Coeff Band 4 */
  934. { 40, 194, 227 },
  935. { 8, 147, 204 },
  936. { 1, 94, 155 },
  937. { 1, 65, 112 },
  938. { 1, 39, 66 },
  939. { 1, 14, 26 } },
  940. { /* Coeff Band 5 */
  941. { 16, 208, 228 },
  942. { 3, 151, 207 },
  943. { 1, 98, 160 },
  944. { 1, 67, 117 },
  945. { 1, 41, 74 },
  946. { 1, 17, 31 } } } } },
  947. { { /* block Type 0 */
  948. { /* Intra */
  949. {
  950. /* Coeff Band 0 */
  951. { 17, 38, 140 },
  952. { 7, 34, 80 },
  953. { 1, 17, 29 },
  954. { 0, 0, 0 }, // unused
  955. { 0, 0, 0 }, // unused
  956. { 0, 0, 0 } // unused
  957. },
  958. { /* Coeff Band 1 */
  959. { 37, 75, 128 },
  960. { 41, 76, 128 },
  961. { 26, 66, 116 },
  962. { 12, 52, 94 },
  963. { 2, 32, 55 },
  964. { 1, 10, 16 } },
  965. { /* Coeff Band 2 */
  966. { 50, 127, 154 },
  967. { 37, 109, 152 },
  968. { 16, 82, 121 },
  969. { 5, 59, 85 }, { 1, 35, 54 },
  970. { 1, 13, 20 } },
  971. { /* Coeff Band 3 */
  972. { 40, 142, 167 },
  973. { 17, 110, 157 },
  974. { 2, 71, 112 },
  975. { 1, 44, 72 },
  976. { 1, 27, 45 },
  977. { 1, 11, 17 } },
  978. { /* Coeff Band 4 */
  979. { 30, 175, 188 },
  980. { 9, 124, 169 },
  981. { 1, 74, 116 },
  982. { 1, 48, 78 },
  983. { 1, 30, 49 },
  984. { 1, 11, 18 } },
  985. { /* Coeff Band 5 */
  986. { 10, 222, 223 },
  987. { 2, 150, 194 },
  988. { 1, 83, 128 },
  989. { 1, 48, 79 },
  990. { 1, 27, 45 },
  991. { 1, 11, 17 } } },
  992. { /* Inter */
  993. {
  994. /* Coeff Band 0 */
  995. { 36, 41, 235 },
  996. { 29, 36, 193 },
  997. { 10, 27, 111 },
  998. { 0, 0, 0 }, // unused
  999. { 0, 0, 0 }, // unused
  1000. { 0, 0, 0 } // unused
  1001. },
  1002. { /* Coeff Band 1 */
  1003. { 85, 165, 222 },
  1004. { 177, 162, 215 },
  1005. { 110, 135, 195 },
  1006. { 57, 113, 168 },
  1007. { 23, 83, 120 },
  1008. { 10, 49, 61 } },
  1009. { /* Coeff Band 2 */
  1010. { 85, 190, 223 },
  1011. { 36, 139, 200 },
  1012. { 5, 90, 146 },
  1013. { 1, 60, 103 },
  1014. { 1, 38, 65 }, { 1, 18, 30 } },
  1015. { /* Coeff Band 3 */
  1016. { 72, 202, 223 },
  1017. { 23, 141, 199 },
  1018. { 2, 86, 140 },
  1019. { 1, 56, 97 },
  1020. { 1, 36, 61 },
  1021. { 1, 16, 27 } },
  1022. { /* Coeff Band 4 */
  1023. { 55, 218, 225 },
  1024. { 13, 145, 200 },
  1025. { 1, 86, 141 },
  1026. { 1, 57, 99 },
  1027. { 1, 35, 61 },
  1028. { 1, 13, 22 } },
  1029. { /* Coeff Band 5 */
  1030. { 15, 235, 212 },
  1031. { 1, 132, 184 },
  1032. { 1, 84, 139 },
  1033. { 1, 57, 97 },
  1034. { 1, 34, 56 },
  1035. { 1, 14, 23 } } } },
  1036. { /* block Type 1 */
  1037. { /* Intra */
  1038. {
  1039. /* Coeff Band 0 */
  1040. { 181, 21, 201 },
  1041. { 61, 37, 123 },
  1042. { 10, 38, 71 },
  1043. { 0, 0, 0 }, // unused
  1044. { 0, 0, 0 }, // unused
  1045. { 0, 0, 0 } // unused
  1046. },
  1047. { /* Coeff Band 1 */
  1048. { 47, 106, 172 },
  1049. { 95, 104, 173 },
  1050. { 42, 93, 159 },
  1051. { 18, 77, 131 },
  1052. { 4, 50, 81 },
  1053. { 1, 17, 23 } },
  1054. { /* Coeff Band 2 */
  1055. { 62, 147, 199 },
  1056. { 44, 130, 189 },
  1057. { 28, 102, 154 },
  1058. { 18, 75, 115 }, { 2, 44, 65 },
  1059. { 1, 12, 19 } },
  1060. { /* Coeff Band 3 */
  1061. { 55, 153, 210 },
  1062. { 24, 130, 194 },
  1063. { 3, 93, 146 },
  1064. { 1, 61, 97 },
  1065. { 1, 31, 50 },
  1066. { 1, 10, 16 } },
  1067. { /* Coeff Band 4 */
  1068. { 49, 186, 223 },
  1069. { 17, 148, 204 },
  1070. { 1, 96, 142 },
  1071. { 1, 53, 83 },
  1072. { 1, 26, 44 },
  1073. { 1, 11, 17 } },
  1074. { /* Coeff Band 5 */
  1075. { 13, 217, 212 },
  1076. { 2, 136, 180 },
  1077. { 1, 78, 124 },
  1078. { 1, 50, 83 },
  1079. { 1, 29, 49 },
  1080. { 1, 14, 23 } } },
  1081. { /* Inter */
  1082. {
  1083. /* Coeff Band 0 */
  1084. { 197, 13, 247 },
  1085. { 82, 17, 222 },
  1086. { 25, 17, 162 },
  1087. { 0, 0, 0 }, // unused
  1088. { 0, 0, 0 }, // unused
  1089. { 0, 0, 0 } // unused
  1090. },
  1091. { /* Coeff Band 1 */
  1092. { 126, 186, 247 },
  1093. { 234, 191, 243 },
  1094. { 176, 177, 234 },
  1095. { 104, 158, 220 },
  1096. { 66, 128, 186 },
  1097. { 55, 90, 137 } },
  1098. { /* Coeff Band 2 */
  1099. { 111, 197, 242 },
  1100. { 46, 158, 219 },
  1101. { 9, 104, 171 },
  1102. { 2, 65, 125 },
  1103. { 1, 44, 80 }, { 1, 17, 91 } },
  1104. { /* Coeff Band 3 */
  1105. { 104, 208, 245 },
  1106. { 39, 168, 224 },
  1107. { 3, 109, 162 },
  1108. { 1, 79, 124 },
  1109. { 1, 50, 102 },
  1110. { 1, 43, 102 } },
  1111. { /* Coeff Band 4 */
  1112. { 84, 220, 246 },
  1113. { 31, 177, 231 },
  1114. { 2, 115, 180 },
  1115. { 1, 79, 134 },
  1116. { 1, 55, 77 },
  1117. { 1, 60, 79 } },
  1118. { /* Coeff Band 5 */
  1119. { 43, 243, 240 },
  1120. { 8, 180, 217 },
  1121. { 1, 115, 166 },
  1122. { 1, 84, 121 },
  1123. { 1, 51, 67 },
  1124. { 1, 16, 6 } } } } }
  1125. };
  1126. ParetoTable const& ProbabilityTables::pareto_table() const
  1127. {
  1128. return constant_pareto_table;
  1129. }
  1130. KfPartitionProbs const& ProbabilityTables::kf_partition_probs() const
  1131. {
  1132. return constant_kf_partition_probs;
  1133. }
  1134. KfYModeProbs const& ProbabilityTables::kf_y_mode_probs() const
  1135. {
  1136. return constant_kf_y_mode_probs;
  1137. }
  1138. KfUVModeProbs const& ProbabilityTables::kf_uv_mode_prob() const
  1139. {
  1140. return constant_kf_uv_mode_prob;
  1141. }
  1142. void ProbabilityTables::save_probs(u8 index)
  1143. {
  1144. m_saved_probability_tables[index] = m_current_probability_table;
  1145. }
  1146. void ProbabilityTables::reset_probs()
  1147. {
  1148. __builtin_memcpy(m_current_probability_table.partition_probs, default_partition_probs, sizeof(PartitionProbs));
  1149. __builtin_memcpy(m_current_probability_table.y_mode_probs, default_y_mode_probs, sizeof(YModeProbs));
  1150. __builtin_memcpy(m_current_probability_table.uv_mode_probs, default_uv_mode_probs, sizeof(UVModeProbs));
  1151. __builtin_memcpy(m_current_probability_table.skip_prob, default_skip_prob, sizeof(SkipProb));
  1152. __builtin_memcpy(m_current_probability_table.is_inter_prob, default_is_inter_prob, sizeof(IsInterProb));
  1153. __builtin_memcpy(m_current_probability_table.comp_mode_prob, default_comp_mode_prob, sizeof(CompModeProb));
  1154. __builtin_memcpy(m_current_probability_table.comp_ref_prob, default_comp_ref_prob, sizeof(CompRefProb));
  1155. __builtin_memcpy(m_current_probability_table.single_ref_prob, default_single_ref_prob, sizeof(SingleRefProb));
  1156. __builtin_memcpy(m_current_probability_table.mv_sign_prob, default_mv_sign_prob, sizeof(MvSignProb));
  1157. __builtin_memcpy(m_current_probability_table.mv_bits_prob, default_mv_bits_prob, sizeof(MvBitsProb));
  1158. __builtin_memcpy(m_current_probability_table.mv_class0_bit_prob, default_mv_class0_bit_prob, sizeof(MvClass0BitProb));
  1159. __builtin_memcpy(m_current_probability_table.tx_probs, default_tx_probs, sizeof(TxProbs));
  1160. __builtin_memcpy(m_current_probability_table.inter_mode_probs, default_inter_mode_probs, sizeof(InterModeProbs));
  1161. __builtin_memcpy(m_current_probability_table.interp_filter_probs, default_interp_filter_probs, sizeof(InterpFilterProbs));
  1162. __builtin_memcpy(m_current_probability_table.mv_joint_probs, default_mv_joint_probs, sizeof(MvJointProbs));
  1163. __builtin_memcpy(m_current_probability_table.mv_class_probs, default_mv_class_probs, sizeof(MvClassProbs));
  1164. __builtin_memcpy(m_current_probability_table.mv_class0_fr_probs, default_mv_class0_fr_probs, sizeof(MvClass0FrProbs));
  1165. __builtin_memcpy(m_current_probability_table.mv_class0_hp_prob, default_mv_class0_hp_prob, sizeof(MvClass0HpProbs));
  1166. __builtin_memcpy(m_current_probability_table.mv_fr_probs, default_mv_fr_probs, sizeof(MvFrProbs));
  1167. __builtin_memcpy(m_current_probability_table.mv_hp_prob, default_mv_hp_prob, sizeof(MvHpProb));
  1168. __builtin_memcpy(m_current_probability_table.coef_probs, default_coef_probs, sizeof(CoefProbs));
  1169. }
  1170. void ProbabilityTables::load_probs(u8 index)
  1171. {
  1172. auto old_table = m_current_probability_table;
  1173. m_current_probability_table = m_saved_probability_tables.at(index);
  1174. __builtin_memcpy(m_current_probability_table.skip_prob, old_table.skip_prob, sizeof(SkipProb));
  1175. __builtin_memcpy(m_current_probability_table.tx_probs, old_table.tx_probs, sizeof(TxProbs));
  1176. }
  1177. void ProbabilityTables::load_probs2(u8 index)
  1178. {
  1179. auto new_table = m_saved_probability_tables.at(index);
  1180. __builtin_memcpy(m_current_probability_table.skip_prob, new_table.skip_prob, sizeof(SkipProb));
  1181. __builtin_memcpy(m_current_probability_table.tx_probs, new_table.tx_probs, sizeof(TxProbs));
  1182. }
  1183. }