vp9.cpp 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974
  1. // Copyright 2020 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include <algorithm> // for std::copy
  5. #include <numeric>
  6. #include "common/assert.h"
  7. #include "video_core/command_classes/codecs/vp9.h"
  8. #include "video_core/gpu.h"
  9. #include "video_core/memory_manager.h"
  10. namespace Tegra::Decoder {
  11. namespace {
  12. // Default compressed header probabilities once frame context resets
  13. constexpr Vp9EntropyProbs default_probs{
  14. .y_mode_prob{
  15. 65, 32, 18, 144, 162, 194, 41, 51, 98, 132, 68, 18, 165, 217, 196, 45, 40, 78,
  16. 173, 80, 19, 176, 240, 193, 64, 35, 46, 221, 135, 38, 194, 248, 121, 96, 85, 29,
  17. },
  18. .partition_prob{
  19. 199, 122, 141, 0, 147, 63, 159, 0, 148, 133, 118, 0, 121, 104, 114, 0,
  20. 174, 73, 87, 0, 92, 41, 83, 0, 82, 99, 50, 0, 53, 39, 39, 0,
  21. 177, 58, 59, 0, 68, 26, 63, 0, 52, 79, 25, 0, 17, 14, 12, 0,
  22. 222, 34, 30, 0, 72, 16, 44, 0, 58, 32, 12, 0, 10, 7, 6, 0,
  23. },
  24. .coef_probs{
  25. 195, 29, 183, 84, 49, 136, 8, 42, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  26. 31, 107, 169, 35, 99, 159, 17, 82, 140, 8, 66, 114, 2, 44, 76, 1, 19, 32,
  27. 40, 132, 201, 29, 114, 187, 13, 91, 157, 7, 75, 127, 3, 58, 95, 1, 28, 47,
  28. 69, 142, 221, 42, 122, 201, 15, 91, 159, 6, 67, 121, 1, 42, 77, 1, 17, 31,
  29. 102, 148, 228, 67, 117, 204, 17, 82, 154, 6, 59, 114, 2, 39, 75, 1, 15, 29,
  30. 156, 57, 233, 119, 57, 212, 58, 48, 163, 29, 40, 124, 12, 30, 81, 3, 12, 31,
  31. 191, 107, 226, 124, 117, 204, 25, 99, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  32. 29, 148, 210, 37, 126, 194, 8, 93, 157, 2, 68, 118, 1, 39, 69, 1, 17, 33,
  33. 41, 151, 213, 27, 123, 193, 3, 82, 144, 1, 58, 105, 1, 32, 60, 1, 13, 26,
  34. 59, 159, 220, 23, 126, 198, 4, 88, 151, 1, 66, 114, 1, 38, 71, 1, 18, 34,
  35. 114, 136, 232, 51, 114, 207, 11, 83, 155, 3, 56, 105, 1, 33, 65, 1, 17, 34,
  36. 149, 65, 234, 121, 57, 215, 61, 49, 166, 28, 36, 114, 12, 25, 76, 3, 16, 42,
  37. 214, 49, 220, 132, 63, 188, 42, 65, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  38. 85, 137, 221, 104, 131, 216, 49, 111, 192, 21, 87, 155, 2, 49, 87, 1, 16, 28,
  39. 89, 163, 230, 90, 137, 220, 29, 100, 183, 10, 70, 135, 2, 42, 81, 1, 17, 33,
  40. 108, 167, 237, 55, 133, 222, 15, 97, 179, 4, 72, 135, 1, 45, 85, 1, 19, 38,
  41. 124, 146, 240, 66, 124, 224, 17, 88, 175, 4, 58, 122, 1, 36, 75, 1, 18, 37,
  42. 141, 79, 241, 126, 70, 227, 66, 58, 182, 30, 44, 136, 12, 34, 96, 2, 20, 47,
  43. 229, 99, 249, 143, 111, 235, 46, 109, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  44. 82, 158, 236, 94, 146, 224, 25, 117, 191, 9, 87, 149, 3, 56, 99, 1, 33, 57,
  45. 83, 167, 237, 68, 145, 222, 10, 103, 177, 2, 72, 131, 1, 41, 79, 1, 20, 39,
  46. 99, 167, 239, 47, 141, 224, 10, 104, 178, 2, 73, 133, 1, 44, 85, 1, 22, 47,
  47. 127, 145, 243, 71, 129, 228, 17, 93, 177, 3, 61, 124, 1, 41, 84, 1, 21, 52,
  48. 157, 78, 244, 140, 72, 231, 69, 58, 184, 31, 44, 137, 14, 38, 105, 8, 23, 61,
  49. 125, 34, 187, 52, 41, 133, 6, 31, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  50. 37, 109, 153, 51, 102, 147, 23, 87, 128, 8, 67, 101, 1, 41, 63, 1, 19, 29,
  51. 31, 154, 185, 17, 127, 175, 6, 96, 145, 2, 73, 114, 1, 51, 82, 1, 28, 45,
  52. 23, 163, 200, 10, 131, 185, 2, 93, 148, 1, 67, 111, 1, 41, 69, 1, 14, 24,
  53. 29, 176, 217, 12, 145, 201, 3, 101, 156, 1, 69, 111, 1, 39, 63, 1, 14, 23,
  54. 57, 192, 233, 25, 154, 215, 6, 109, 167, 3, 78, 118, 1, 48, 69, 1, 21, 29,
  55. 202, 105, 245, 108, 106, 216, 18, 90, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  56. 33, 172, 219, 64, 149, 206, 14, 117, 177, 5, 90, 141, 2, 61, 95, 1, 37, 57,
  57. 33, 179, 220, 11, 140, 198, 1, 89, 148, 1, 60, 104, 1, 33, 57, 1, 12, 21,
  58. 30, 181, 221, 8, 141, 198, 1, 87, 145, 1, 58, 100, 1, 31, 55, 1, 12, 20,
  59. 32, 186, 224, 7, 142, 198, 1, 86, 143, 1, 58, 100, 1, 31, 55, 1, 12, 22,
  60. 57, 192, 227, 20, 143, 204, 3, 96, 154, 1, 68, 112, 1, 42, 69, 1, 19, 32,
  61. 212, 35, 215, 113, 47, 169, 29, 48, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  62. 74, 129, 203, 106, 120, 203, 49, 107, 178, 19, 84, 144, 4, 50, 84, 1, 15, 25,
  63. 71, 172, 217, 44, 141, 209, 15, 102, 173, 6, 76, 133, 2, 51, 89, 1, 24, 42,
  64. 64, 185, 231, 31, 148, 216, 8, 103, 175, 3, 74, 131, 1, 46, 81, 1, 18, 30,
  65. 65, 196, 235, 25, 157, 221, 5, 105, 174, 1, 67, 120, 1, 38, 69, 1, 15, 30,
  66. 65, 204, 238, 30, 156, 224, 7, 107, 177, 2, 70, 124, 1, 42, 73, 1, 18, 34,
  67. 225, 86, 251, 144, 104, 235, 42, 99, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  68. 85, 175, 239, 112, 165, 229, 29, 136, 200, 12, 103, 162, 6, 77, 123, 2, 53, 84,
  69. 75, 183, 239, 30, 155, 221, 3, 106, 171, 1, 74, 128, 1, 44, 76, 1, 17, 28,
  70. 73, 185, 240, 27, 159, 222, 2, 107, 172, 1, 75, 127, 1, 42, 73, 1, 17, 29,
  71. 62, 190, 238, 21, 159, 222, 2, 107, 172, 1, 72, 122, 1, 40, 71, 1, 18, 32,
  72. 61, 199, 240, 27, 161, 226, 4, 113, 180, 1, 76, 129, 1, 46, 80, 1, 23, 41,
  73. 7, 27, 153, 5, 30, 95, 1, 16, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  74. 50, 75, 127, 57, 75, 124, 27, 67, 108, 10, 54, 86, 1, 33, 52, 1, 12, 18,
  75. 43, 125, 151, 26, 108, 148, 7, 83, 122, 2, 59, 89, 1, 38, 60, 1, 17, 27,
  76. 23, 144, 163, 13, 112, 154, 2, 75, 117, 1, 50, 81, 1, 31, 51, 1, 14, 23,
  77. 18, 162, 185, 6, 123, 171, 1, 78, 125, 1, 51, 86, 1, 31, 54, 1, 14, 23,
  78. 15, 199, 227, 3, 150, 204, 1, 91, 146, 1, 55, 95, 1, 30, 53, 1, 11, 20,
  79. 19, 55, 240, 19, 59, 196, 3, 52, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  80. 41, 166, 207, 104, 153, 199, 31, 123, 181, 14, 101, 152, 5, 72, 106, 1, 36, 52,
  81. 35, 176, 211, 12, 131, 190, 2, 88, 144, 1, 60, 101, 1, 36, 60, 1, 16, 28,
  82. 28, 183, 213, 8, 134, 191, 1, 86, 142, 1, 56, 96, 1, 30, 53, 1, 12, 20,
  83. 20, 190, 215, 4, 135, 192, 1, 84, 139, 1, 53, 91, 1, 28, 49, 1, 11, 20,
  84. 13, 196, 216, 2, 137, 192, 1, 86, 143, 1, 57, 99, 1, 32, 56, 1, 13, 24,
  85. 211, 29, 217, 96, 47, 156, 22, 43, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  86. 78, 120, 193, 111, 116, 186, 46, 102, 164, 15, 80, 128, 2, 49, 76, 1, 18, 28,
  87. 71, 161, 203, 42, 132, 192, 10, 98, 150, 3, 69, 109, 1, 44, 70, 1, 18, 29,
  88. 57, 186, 211, 30, 140, 196, 4, 93, 146, 1, 62, 102, 1, 38, 65, 1, 16, 27,
  89. 47, 199, 217, 14, 145, 196, 1, 88, 142, 1, 57, 98, 1, 36, 62, 1, 15, 26,
  90. 26, 219, 229, 5, 155, 207, 1, 94, 151, 1, 60, 104, 1, 36, 62, 1, 16, 28,
  91. 233, 29, 248, 146, 47, 220, 43, 52, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  92. 100, 163, 232, 179, 161, 222, 63, 142, 204, 37, 113, 174, 26, 89, 137, 18, 68, 97,
  93. 85, 181, 230, 32, 146, 209, 7, 100, 164, 3, 71, 121, 1, 45, 77, 1, 18, 30,
  94. 65, 187, 230, 20, 148, 207, 2, 97, 159, 1, 68, 116, 1, 40, 70, 1, 14, 29,
  95. 40, 194, 227, 8, 147, 204, 1, 94, 155, 1, 65, 112, 1, 39, 66, 1, 14, 26,
  96. 16, 208, 228, 3, 151, 207, 1, 98, 160, 1, 67, 117, 1, 41, 74, 1, 17, 31,
  97. 17, 38, 140, 7, 34, 80, 1, 17, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  98. 37, 75, 128, 41, 76, 128, 26, 66, 116, 12, 52, 94, 2, 32, 55, 1, 10, 16,
  99. 50, 127, 154, 37, 109, 152, 16, 82, 121, 5, 59, 85, 1, 35, 54, 1, 13, 20,
  100. 40, 142, 167, 17, 110, 157, 2, 71, 112, 1, 44, 72, 1, 27, 45, 1, 11, 17,
  101. 30, 175, 188, 9, 124, 169, 1, 74, 116, 1, 48, 78, 1, 30, 49, 1, 11, 18,
  102. 10, 222, 223, 2, 150, 194, 1, 83, 128, 1, 48, 79, 1, 27, 45, 1, 11, 17,
  103. 36, 41, 235, 29, 36, 193, 10, 27, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  104. 85, 165, 222, 177, 162, 215, 110, 135, 195, 57, 113, 168, 23, 83, 120, 10, 49, 61,
  105. 85, 190, 223, 36, 139, 200, 5, 90, 146, 1, 60, 103, 1, 38, 65, 1, 18, 30,
  106. 72, 202, 223, 23, 141, 199, 2, 86, 140, 1, 56, 97, 1, 36, 61, 1, 16, 27,
  107. 55, 218, 225, 13, 145, 200, 1, 86, 141, 1, 57, 99, 1, 35, 61, 1, 13, 22,
  108. 15, 235, 212, 1, 132, 184, 1, 84, 139, 1, 57, 97, 1, 34, 56, 1, 14, 23,
  109. 181, 21, 201, 61, 37, 123, 10, 38, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  110. 47, 106, 172, 95, 104, 173, 42, 93, 159, 18, 77, 131, 4, 50, 81, 1, 17, 23,
  111. 62, 147, 199, 44, 130, 189, 28, 102, 154, 18, 75, 115, 2, 44, 65, 1, 12, 19,
  112. 55, 153, 210, 24, 130, 194, 3, 93, 146, 1, 61, 97, 1, 31, 50, 1, 10, 16,
  113. 49, 186, 223, 17, 148, 204, 1, 96, 142, 1, 53, 83, 1, 26, 44, 1, 11, 17,
  114. 13, 217, 212, 2, 136, 180, 1, 78, 124, 1, 50, 83, 1, 29, 49, 1, 14, 23,
  115. 197, 13, 247, 82, 17, 222, 25, 17, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  116. 126, 186, 247, 234, 191, 243, 176, 177, 234, 104, 158, 220, 66, 128, 186, 55, 90, 137,
  117. 111, 197, 242, 46, 158, 219, 9, 104, 171, 2, 65, 125, 1, 44, 80, 1, 17, 91,
  118. 104, 208, 245, 39, 168, 224, 3, 109, 162, 1, 79, 124, 1, 50, 102, 1, 43, 102,
  119. 84, 220, 246, 31, 177, 231, 2, 115, 180, 1, 79, 134, 1, 55, 77, 1, 60, 79,
  120. 43, 243, 240, 8, 180, 217, 1, 115, 166, 1, 84, 121, 1, 51, 67, 1, 16, 6,
  121. },
  122. .switchable_interp_prob{235, 162, 36, 255, 34, 3, 149, 144},
  123. .inter_mode_prob{
  124. 2, 173, 34, 0, 7, 145, 85, 0, 7, 166, 63, 0, 7, 94,
  125. 66, 0, 8, 64, 46, 0, 17, 81, 31, 0, 25, 29, 30, 0,
  126. },
  127. .intra_inter_prob{9, 102, 187, 225},
  128. .comp_inter_prob{9, 102, 187, 225, 0},
  129. .single_ref_prob{33, 16, 77, 74, 142, 142, 172, 170, 238, 247},
  130. .comp_ref_prob{50, 126, 123, 221, 226},
  131. .tx_32x32_prob{3, 136, 37, 5, 52, 13},
  132. .tx_16x16_prob{20, 152, 15, 101},
  133. .tx_8x8_prob{100, 66},
  134. .skip_probs{192, 128, 64},
  135. .joints{32, 64, 96},
  136. .sign{128, 128},
  137. .classes{
  138. 224, 144, 192, 168, 192, 176, 192, 198, 198, 245,
  139. 216, 128, 176, 160, 176, 176, 192, 198, 198, 208,
  140. },
  141. .class_0{216, 208},
  142. .prob_bits{
  143. 136, 140, 148, 160, 176, 192, 224, 234, 234, 240,
  144. 136, 140, 148, 160, 176, 192, 224, 234, 234, 240,
  145. },
  146. .class_0_fr{128, 128, 64, 96, 112, 64, 128, 128, 64, 96, 112, 64},
  147. .fr{64, 96, 64, 64, 96, 64},
  148. .class_0_hp{160, 160},
  149. .high_precision{128, 128},
  150. };
  151. constexpr std::array<s32, 256> norm_lut{
  152. 0, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  153. 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  154. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  155. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  156. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  157. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  158. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  159. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  160. };
  161. constexpr std::array<s32, 254> map_lut{
  162. 20, 21, 22, 23, 24, 25, 0, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
  163. 1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 2, 50, 51, 52, 53, 54,
  164. 55, 56, 57, 58, 59, 60, 61, 3, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
  165. 73, 4, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 5, 86, 87, 88, 89,
  166. 90, 91, 92, 93, 94, 95, 96, 97, 6, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
  167. 108, 109, 7, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 8, 122, 123, 124,
  168. 125, 126, 127, 128, 129, 130, 131, 132, 133, 9, 134, 135, 136, 137, 138, 139, 140, 141, 142,
  169. 143, 144, 145, 10, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 11, 158, 159,
  170. 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 12, 170, 171, 172, 173, 174, 175, 176, 177,
  171. 178, 179, 180, 181, 13, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 14, 194,
  172. 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 15, 206, 207, 208, 209, 210, 211, 212,
  173. 213, 214, 215, 216, 217, 16, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 17,
  174. 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 18, 242, 243, 244, 245, 246, 247,
  175. 248, 249, 250, 251, 252, 253, 19,
  176. };
  177. // 6.2.14 Tile size calculation
  178. [[nodiscard]] s32 CalcMinLog2TileCols(s32 frame_width) {
  179. const s32 sb64_cols = (frame_width + 63) / 64;
  180. s32 min_log2 = 0;
  181. while ((64 << min_log2) < sb64_cols) {
  182. min_log2++;
  183. }
  184. return min_log2;
  185. }
  186. [[nodiscard]] s32 CalcMaxLog2TileCols(s32 frame_width) {
  187. const s32 sb64_cols = (frame_width + 63) / 64;
  188. s32 max_log2 = 1;
  189. while ((sb64_cols >> max_log2) >= 4) {
  190. max_log2++;
  191. }
  192. return max_log2 - 1;
  193. }
  194. // Recenters probability. Based on section 6.3.6 of VP9 Specification
  195. [[nodiscard]] s32 RecenterNonNeg(s32 new_prob, s32 old_prob) {
  196. if (new_prob > old_prob * 2) {
  197. return new_prob;
  198. }
  199. if (new_prob >= old_prob) {
  200. return (new_prob - old_prob) * 2;
  201. }
  202. return (old_prob - new_prob) * 2 - 1;
  203. }
  204. // Adjusts old_prob depending on new_prob. Based on section 6.3.5 of VP9 Specification
  205. [[nodiscard]] s32 RemapProbability(s32 new_prob, s32 old_prob) {
  206. new_prob--;
  207. old_prob--;
  208. std::size_t index{};
  209. if (old_prob * 2 <= 0xff) {
  210. index = static_cast<std::size_t>(std::max(0, RecenterNonNeg(new_prob, old_prob) - 1));
  211. } else {
  212. index = static_cast<std::size_t>(
  213. std::max(0, RecenterNonNeg(0xff - 1 - new_prob, 0xff - 1 - old_prob) - 1));
  214. }
  215. return map_lut[index];
  216. }
  217. } // Anonymous namespace
  218. VP9::VP9(GPU& gpu_) : gpu{gpu_} {}
  219. VP9::~VP9() = default;
  220. void VP9::WriteProbabilityUpdate(VpxRangeEncoder& writer, u8 new_prob, u8 old_prob) {
  221. const bool update = new_prob != old_prob;
  222. writer.Write(update, diff_update_probability);
  223. if (update) {
  224. WriteProbabilityDelta(writer, new_prob, old_prob);
  225. }
  226. }
  227. template <typename T, std::size_t N>
  228. void VP9::WriteProbabilityUpdate(VpxRangeEncoder& writer, const std::array<T, N>& new_prob,
  229. const std::array<T, N>& old_prob) {
  230. for (std::size_t offset = 0; offset < new_prob.size(); ++offset) {
  231. WriteProbabilityUpdate(writer, new_prob[offset], old_prob[offset]);
  232. }
  233. }
  234. template <typename T, std::size_t N>
  235. void VP9::WriteProbabilityUpdateAligned4(VpxRangeEncoder& writer, const std::array<T, N>& new_prob,
  236. const std::array<T, N>& old_prob) {
  237. for (std::size_t offset = 0; offset < new_prob.size(); offset += 4) {
  238. WriteProbabilityUpdate(writer, new_prob[offset + 0], old_prob[offset + 0]);
  239. WriteProbabilityUpdate(writer, new_prob[offset + 1], old_prob[offset + 1]);
  240. WriteProbabilityUpdate(writer, new_prob[offset + 2], old_prob[offset + 2]);
  241. }
  242. }
  243. void VP9::WriteProbabilityDelta(VpxRangeEncoder& writer, u8 new_prob, u8 old_prob) {
  244. const int delta = RemapProbability(new_prob, old_prob);
  245. EncodeTermSubExp(writer, delta);
  246. }
  247. void VP9::EncodeTermSubExp(VpxRangeEncoder& writer, s32 value) {
  248. if (WriteLessThan(writer, value, 16)) {
  249. writer.Write(value, 4);
  250. } else if (WriteLessThan(writer, value, 32)) {
  251. writer.Write(value - 16, 4);
  252. } else if (WriteLessThan(writer, value, 64)) {
  253. writer.Write(value - 32, 5);
  254. } else {
  255. value -= 64;
  256. constexpr s32 size = 8;
  257. const s32 mask = (1 << size) - 191;
  258. const s32 delta = value - mask;
  259. if (delta < 0) {
  260. writer.Write(value, size - 1);
  261. } else {
  262. writer.Write(delta / 2 + mask, size - 1);
  263. writer.Write(delta & 1, 1);
  264. }
  265. }
  266. }
  267. bool VP9::WriteLessThan(VpxRangeEncoder& writer, s32 value, s32 test) {
  268. const bool is_lt = value < test;
  269. writer.Write(!is_lt);
  270. return is_lt;
  271. }
  272. void VP9::WriteCoefProbabilityUpdate(VpxRangeEncoder& writer, s32 tx_mode,
  273. const std::array<u8, 1728>& new_prob,
  274. const std::array<u8, 1728>& old_prob) {
  275. constexpr u32 block_bytes = 2 * 2 * 6 * 6 * 3;
  276. const auto needs_update = [&](u32 base_index) {
  277. return !std::equal(new_prob.begin() + base_index,
  278. new_prob.begin() + base_index + block_bytes,
  279. old_prob.begin() + base_index);
  280. };
  281. for (u32 block_index = 0; block_index < 4; block_index++) {
  282. const u32 base_index = block_index * block_bytes;
  283. const bool update = needs_update(base_index);
  284. writer.Write(update);
  285. if (update) {
  286. u32 index = base_index;
  287. for (s32 i = 0; i < 2; i++) {
  288. for (s32 j = 0; j < 2; j++) {
  289. for (s32 k = 0; k < 6; k++) {
  290. for (s32 l = 0; l < 6; l++) {
  291. if (k != 0 || l < 3) {
  292. WriteProbabilityUpdate(writer, new_prob[index + 0],
  293. old_prob[index + 0]);
  294. WriteProbabilityUpdate(writer, new_prob[index + 1],
  295. old_prob[index + 1]);
  296. WriteProbabilityUpdate(writer, new_prob[index + 2],
  297. old_prob[index + 2]);
  298. }
  299. index += 3;
  300. }
  301. }
  302. }
  303. }
  304. }
  305. if (block_index == static_cast<u32>(tx_mode)) {
  306. break;
  307. }
  308. }
  309. }
  310. void VP9::WriteMvProbabilityUpdate(VpxRangeEncoder& writer, u8 new_prob, u8 old_prob) {
  311. const bool update = new_prob != old_prob;
  312. writer.Write(update, diff_update_probability);
  313. if (update) {
  314. writer.Write(new_prob >> 1, 7);
  315. }
  316. }
  317. Vp9PictureInfo VP9::GetVp9PictureInfo(const NvdecCommon::NvdecRegisters& state) {
  318. PictureInfo picture_info;
  319. gpu.MemoryManager().ReadBlock(state.picture_info_offset, &picture_info, sizeof(PictureInfo));
  320. Vp9PictureInfo vp9_info = picture_info.Convert();
  321. InsertEntropy(state.vp9_entropy_probs_offset, vp9_info.entropy);
  322. // surface_luma_offset[0:3] contains the address of the reference frame offsets in the following
  323. // order: last, golden, altref, current. It may be worthwhile to track the updates done here
  324. // to avoid buffering frame data needed for reference frame updating in the header composition.
  325. std::copy(state.surface_luma_offset.begin(), state.surface_luma_offset.begin() + 4,
  326. vp9_info.frame_offsets.begin());
  327. return vp9_info;
  328. }
  329. void VP9::InsertEntropy(u64 offset, Vp9EntropyProbs& dst) {
  330. EntropyProbs entropy;
  331. gpu.MemoryManager().ReadBlock(offset, &entropy, sizeof(EntropyProbs));
  332. entropy.Convert(dst);
  333. }
  334. Vp9FrameContainer VP9::GetCurrentFrame(const NvdecCommon::NvdecRegisters& state) {
  335. Vp9FrameContainer current_frame{};
  336. {
  337. gpu.SyncGuestHost();
  338. current_frame.info = GetVp9PictureInfo(state);
  339. current_frame.bit_stream.resize(current_frame.info.bitstream_size);
  340. gpu.MemoryManager().ReadBlock(state.frame_bitstream_offset, current_frame.bit_stream.data(),
  341. current_frame.info.bitstream_size);
  342. }
  343. // Buffer two frames, saving the last show frame info
  344. if (!next_next_frame.bit_stream.empty()) {
  345. Vp9FrameContainer temp{
  346. .info = current_frame.info,
  347. .bit_stream = std::move(current_frame.bit_stream),
  348. };
  349. next_next_frame.info.show_frame = current_frame.info.last_frame_shown;
  350. current_frame.info = next_next_frame.info;
  351. current_frame.bit_stream = std::move(next_next_frame.bit_stream);
  352. next_next_frame = std::move(temp);
  353. if (!next_frame.bit_stream.empty()) {
  354. Vp9FrameContainer temp2{
  355. .info = current_frame.info,
  356. .bit_stream = std::move(current_frame.bit_stream),
  357. };
  358. next_frame.info.show_frame = current_frame.info.last_frame_shown;
  359. current_frame.info = next_frame.info;
  360. current_frame.bit_stream = std::move(next_frame.bit_stream);
  361. next_frame = std::move(temp2);
  362. } else {
  363. next_frame.info = current_frame.info;
  364. next_frame.bit_stream = std::move(current_frame.bit_stream);
  365. }
  366. } else {
  367. next_next_frame.info = current_frame.info;
  368. next_next_frame.bit_stream = std::move(current_frame.bit_stream);
  369. }
  370. return current_frame;
  371. }
  372. std::vector<u8> VP9::ComposeCompressedHeader() {
  373. VpxRangeEncoder writer{};
  374. const bool update_probs = current_frame_info.show_frame && !current_frame_info.is_key_frame;
  375. if (!current_frame_info.lossless) {
  376. if (static_cast<u32>(current_frame_info.transform_mode) >= 3) {
  377. writer.Write(3, 2);
  378. writer.Write(current_frame_info.transform_mode == 4);
  379. } else {
  380. writer.Write(current_frame_info.transform_mode, 2);
  381. }
  382. }
  383. if (current_frame_info.transform_mode == 4) {
  384. // tx_mode_probs() in the spec
  385. WriteProbabilityUpdate(writer, current_frame_info.entropy.tx_8x8_prob,
  386. prev_frame_probs.tx_8x8_prob);
  387. WriteProbabilityUpdate(writer, current_frame_info.entropy.tx_16x16_prob,
  388. prev_frame_probs.tx_16x16_prob);
  389. WriteProbabilityUpdate(writer, current_frame_info.entropy.tx_32x32_prob,
  390. prev_frame_probs.tx_32x32_prob);
  391. if (update_probs) {
  392. prev_frame_probs.tx_8x8_prob = current_frame_info.entropy.tx_8x8_prob;
  393. prev_frame_probs.tx_16x16_prob = current_frame_info.entropy.tx_16x16_prob;
  394. prev_frame_probs.tx_32x32_prob = current_frame_info.entropy.tx_32x32_prob;
  395. }
  396. }
  397. // read_coef_probs() in the spec
  398. WriteCoefProbabilityUpdate(writer, current_frame_info.transform_mode,
  399. current_frame_info.entropy.coef_probs, prev_frame_probs.coef_probs);
  400. // read_skip_probs() in the spec
  401. WriteProbabilityUpdate(writer, current_frame_info.entropy.skip_probs,
  402. prev_frame_probs.skip_probs);
  403. if (update_probs) {
  404. prev_frame_probs.coef_probs = current_frame_info.entropy.coef_probs;
  405. prev_frame_probs.skip_probs = current_frame_info.entropy.skip_probs;
  406. }
  407. if (!current_frame_info.intra_only) {
  408. // read_inter_probs() in the spec
  409. WriteProbabilityUpdateAligned4(writer, current_frame_info.entropy.inter_mode_prob,
  410. prev_frame_probs.inter_mode_prob);
  411. if (current_frame_info.interp_filter == 4) {
  412. // read_interp_filter_probs() in the spec
  413. WriteProbabilityUpdate(writer, current_frame_info.entropy.switchable_interp_prob,
  414. prev_frame_probs.switchable_interp_prob);
  415. if (update_probs) {
  416. prev_frame_probs.switchable_interp_prob =
  417. current_frame_info.entropy.switchable_interp_prob;
  418. }
  419. }
  420. // read_is_inter_probs() in the spec
  421. WriteProbabilityUpdate(writer, current_frame_info.entropy.intra_inter_prob,
  422. prev_frame_probs.intra_inter_prob);
  423. // frame_reference_mode() in the spec
  424. if ((current_frame_info.ref_frame_sign_bias[1] & 1) !=
  425. (current_frame_info.ref_frame_sign_bias[2] & 1) ||
  426. (current_frame_info.ref_frame_sign_bias[1] & 1) !=
  427. (current_frame_info.ref_frame_sign_bias[3] & 1)) {
  428. if (current_frame_info.reference_mode >= 1) {
  429. writer.Write(1, 1);
  430. writer.Write(current_frame_info.reference_mode == 2);
  431. } else {
  432. writer.Write(0, 1);
  433. }
  434. }
  435. // frame_reference_mode_probs() in the spec
  436. if (current_frame_info.reference_mode == 2) {
  437. WriteProbabilityUpdate(writer, current_frame_info.entropy.comp_inter_prob,
  438. prev_frame_probs.comp_inter_prob);
  439. if (update_probs) {
  440. prev_frame_probs.comp_inter_prob = current_frame_info.entropy.comp_inter_prob;
  441. }
  442. }
  443. if (current_frame_info.reference_mode != 1) {
  444. WriteProbabilityUpdate(writer, current_frame_info.entropy.single_ref_prob,
  445. prev_frame_probs.single_ref_prob);
  446. if (update_probs) {
  447. prev_frame_probs.single_ref_prob = current_frame_info.entropy.single_ref_prob;
  448. }
  449. }
  450. if (current_frame_info.reference_mode != 0) {
  451. WriteProbabilityUpdate(writer, current_frame_info.entropy.comp_ref_prob,
  452. prev_frame_probs.comp_ref_prob);
  453. if (update_probs) {
  454. prev_frame_probs.comp_ref_prob = current_frame_info.entropy.comp_ref_prob;
  455. }
  456. }
  457. // read_y_mode_probs
  458. for (std::size_t index = 0; index < current_frame_info.entropy.y_mode_prob.size();
  459. ++index) {
  460. WriteProbabilityUpdate(writer, current_frame_info.entropy.y_mode_prob[index],
  461. prev_frame_probs.y_mode_prob[index]);
  462. }
  463. // read_partition_probs
  464. WriteProbabilityUpdateAligned4(writer, current_frame_info.entropy.partition_prob,
  465. prev_frame_probs.partition_prob);
  466. // mv_probs
  467. for (s32 i = 0; i < 3; i++) {
  468. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.joints[i],
  469. prev_frame_probs.joints[i]);
  470. }
  471. if (update_probs) {
  472. prev_frame_probs.inter_mode_prob = current_frame_info.entropy.inter_mode_prob;
  473. prev_frame_probs.intra_inter_prob = current_frame_info.entropy.intra_inter_prob;
  474. prev_frame_probs.y_mode_prob = current_frame_info.entropy.y_mode_prob;
  475. prev_frame_probs.partition_prob = current_frame_info.entropy.partition_prob;
  476. prev_frame_probs.joints = current_frame_info.entropy.joints;
  477. }
  478. for (s32 i = 0; i < 2; i++) {
  479. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.sign[i],
  480. prev_frame_probs.sign[i]);
  481. for (s32 j = 0; j < 10; j++) {
  482. const int index = i * 10 + j;
  483. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.classes[index],
  484. prev_frame_probs.classes[index]);
  485. }
  486. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.class_0[i],
  487. prev_frame_probs.class_0[i]);
  488. for (s32 j = 0; j < 10; j++) {
  489. const int index = i * 10 + j;
  490. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.prob_bits[index],
  491. prev_frame_probs.prob_bits[index]);
  492. }
  493. }
  494. for (s32 i = 0; i < 2; i++) {
  495. for (s32 j = 0; j < 2; j++) {
  496. for (s32 k = 0; k < 3; k++) {
  497. const int index = i * 2 * 3 + j * 3 + k;
  498. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.class_0_fr[index],
  499. prev_frame_probs.class_0_fr[index]);
  500. }
  501. }
  502. for (s32 j = 0; j < 3; j++) {
  503. const int index = i * 3 + j;
  504. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.fr[index],
  505. prev_frame_probs.fr[index]);
  506. }
  507. }
  508. if (current_frame_info.allow_high_precision_mv) {
  509. for (s32 index = 0; index < 2; index++) {
  510. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.class_0_hp[index],
  511. prev_frame_probs.class_0_hp[index]);
  512. WriteMvProbabilityUpdate(writer, current_frame_info.entropy.high_precision[index],
  513. prev_frame_probs.high_precision[index]);
  514. }
  515. }
  516. // save previous probs
  517. if (update_probs) {
  518. prev_frame_probs.sign = current_frame_info.entropy.sign;
  519. prev_frame_probs.classes = current_frame_info.entropy.classes;
  520. prev_frame_probs.class_0 = current_frame_info.entropy.class_0;
  521. prev_frame_probs.prob_bits = current_frame_info.entropy.prob_bits;
  522. prev_frame_probs.class_0_fr = current_frame_info.entropy.class_0_fr;
  523. prev_frame_probs.fr = current_frame_info.entropy.fr;
  524. prev_frame_probs.class_0_hp = current_frame_info.entropy.class_0_hp;
  525. prev_frame_probs.high_precision = current_frame_info.entropy.high_precision;
  526. }
  527. }
  528. writer.End();
  529. return writer.GetBuffer();
  530. }
  531. VpxBitStreamWriter VP9::ComposeUncompressedHeader() {
  532. VpxBitStreamWriter uncomp_writer{};
  533. uncomp_writer.WriteU(2, 2); // Frame marker.
  534. uncomp_writer.WriteU(0, 2); // Profile.
  535. uncomp_writer.WriteBit(false); // Show existing frame.
  536. uncomp_writer.WriteBit(!current_frame_info.is_key_frame); // is key frame?
  537. uncomp_writer.WriteBit(current_frame_info.show_frame); // show frame?
  538. uncomp_writer.WriteBit(current_frame_info.error_resilient_mode); // error reslience
  539. if (current_frame_info.is_key_frame) {
  540. uncomp_writer.WriteU(frame_sync_code, 24);
  541. uncomp_writer.WriteU(0, 3); // Color space.
  542. uncomp_writer.WriteU(0, 1); // Color range.
  543. uncomp_writer.WriteU(current_frame_info.frame_size.width - 1, 16);
  544. uncomp_writer.WriteU(current_frame_info.frame_size.height - 1, 16);
  545. uncomp_writer.WriteBit(false); // Render and frame size different.
  546. // Reset context
  547. prev_frame_probs = default_probs;
  548. swap_ref_indices = false;
  549. loop_filter_ref_deltas.fill(0);
  550. loop_filter_mode_deltas.fill(0);
  551. // allow frames offsets to stabilize before checking for golden frames
  552. grace_period = 4;
  553. // On key frames, all frame slots are set to the current frame,
  554. // so the value of the selected slot doesn't really matter.
  555. frame_ctxs.fill({current_frame_number, false, default_probs});
  556. // intra only, meaning the frame can be recreated with no other references
  557. current_frame_info.intra_only = true;
  558. } else {
  559. if (!current_frame_info.show_frame) {
  560. uncomp_writer.WriteBit(current_frame_info.intra_only);
  561. } else {
  562. current_frame_info.intra_only = false;
  563. }
  564. if (!current_frame_info.error_resilient_mode) {
  565. uncomp_writer.WriteU(0, 2); // Reset frame context.
  566. }
  567. const auto& curr_offsets = current_frame_info.frame_offsets;
  568. const auto& next_offsets = next_frame.info.frame_offsets;
  569. const bool ref_frames_different = curr_offsets[1] != curr_offsets[2];
  570. const bool next_references_swap =
  571. (next_offsets[1] == curr_offsets[2]) || (next_offsets[2] == curr_offsets[1]);
  572. const bool needs_ref_swap = ref_frames_different && next_references_swap;
  573. if (needs_ref_swap) {
  574. swap_ref_indices = !swap_ref_indices;
  575. }
  576. union {
  577. u32 raw;
  578. BitField<0, 1, u32> refresh_last;
  579. BitField<1, 2, u32> refresh_golden;
  580. BitField<2, 1, u32> refresh_alt;
  581. } refresh_frame_flags;
  582. refresh_frame_flags.raw = 0;
  583. for (u32 index = 0; index < 3; ++index) {
  584. // Refresh indices that use the current frame as an index
  585. if (curr_offsets[3] == next_offsets[index]) {
  586. refresh_frame_flags.raw |= 1u << index;
  587. }
  588. }
  589. if (swap_ref_indices) {
  590. const u32 temp = refresh_frame_flags.refresh_golden;
  591. refresh_frame_flags.refresh_golden.Assign(refresh_frame_flags.refresh_alt.Value());
  592. refresh_frame_flags.refresh_alt.Assign(temp);
  593. }
  594. if (current_frame_info.intra_only) {
  595. uncomp_writer.WriteU(frame_sync_code, 24);
  596. uncomp_writer.WriteU(refresh_frame_flags.raw, 8);
  597. uncomp_writer.WriteU(current_frame_info.frame_size.width - 1, 16);
  598. uncomp_writer.WriteU(current_frame_info.frame_size.height - 1, 16);
  599. uncomp_writer.WriteBit(false); // Render and frame size different.
  600. } else {
  601. const bool swap_indices = needs_ref_swap ^ swap_ref_indices;
  602. const auto ref_frame_index = swap_indices ? std::array{0, 2, 1} : std::array{0, 1, 2};
  603. uncomp_writer.WriteU(refresh_frame_flags.raw, 8);
  604. for (size_t index = 1; index < 4; index++) {
  605. uncomp_writer.WriteU(ref_frame_index[index - 1], 3);
  606. uncomp_writer.WriteU(current_frame_info.ref_frame_sign_bias[index], 1);
  607. }
  608. uncomp_writer.WriteBit(true); // Frame size with refs.
  609. uncomp_writer.WriteBit(false); // Render and frame size different.
  610. uncomp_writer.WriteBit(current_frame_info.allow_high_precision_mv);
  611. uncomp_writer.WriteBit(current_frame_info.interp_filter == 4);
  612. if (current_frame_info.interp_filter != 4) {
  613. uncomp_writer.WriteU(current_frame_info.interp_filter, 2);
  614. }
  615. }
  616. }
  617. if (!current_frame_info.error_resilient_mode) {
  618. uncomp_writer.WriteBit(true); // Refresh frame context. where do i get this info from?
  619. uncomp_writer.WriteBit(true); // Frame parallel decoding mode.
  620. }
  621. int frame_ctx_idx = 0;
  622. if (!current_frame_info.show_frame) {
  623. frame_ctx_idx = 1;
  624. }
  625. uncomp_writer.WriteU(frame_ctx_idx, 2); // Frame context index.
  626. prev_frame_probs =
  627. frame_ctxs[frame_ctx_idx].probs; // reference probabilities for compressed header
  628. frame_ctxs[frame_ctx_idx] = {current_frame_number, false, current_frame_info.entropy};
  629. uncomp_writer.WriteU(current_frame_info.first_level, 6);
  630. uncomp_writer.WriteU(current_frame_info.sharpness_level, 3);
  631. uncomp_writer.WriteBit(current_frame_info.mode_ref_delta_enabled);
  632. if (current_frame_info.mode_ref_delta_enabled) {
  633. // check if ref deltas are different, update accordingly
  634. std::array<bool, 4> update_loop_filter_ref_deltas;
  635. std::array<bool, 2> update_loop_filter_mode_deltas;
  636. bool loop_filter_delta_update = false;
  637. for (std::size_t index = 0; index < current_frame_info.ref_deltas.size(); index++) {
  638. const s8 old_deltas = loop_filter_ref_deltas[index];
  639. const s8 new_deltas = current_frame_info.ref_deltas[index];
  640. const bool differing_delta = old_deltas != new_deltas;
  641. update_loop_filter_ref_deltas[index] = differing_delta;
  642. loop_filter_delta_update |= differing_delta;
  643. }
  644. for (std::size_t index = 0; index < current_frame_info.mode_deltas.size(); index++) {
  645. const s8 old_deltas = loop_filter_mode_deltas[index];
  646. const s8 new_deltas = current_frame_info.mode_deltas[index];
  647. const bool differing_delta = old_deltas != new_deltas;
  648. update_loop_filter_mode_deltas[index] = differing_delta;
  649. loop_filter_delta_update |= differing_delta;
  650. }
  651. uncomp_writer.WriteBit(loop_filter_delta_update);
  652. if (loop_filter_delta_update) {
  653. for (std::size_t index = 0; index < current_frame_info.ref_deltas.size(); index++) {
  654. uncomp_writer.WriteBit(update_loop_filter_ref_deltas[index]);
  655. if (update_loop_filter_ref_deltas[index]) {
  656. uncomp_writer.WriteS(current_frame_info.ref_deltas[index], 6);
  657. }
  658. }
  659. for (std::size_t index = 0; index < current_frame_info.mode_deltas.size(); index++) {
  660. uncomp_writer.WriteBit(update_loop_filter_mode_deltas[index]);
  661. if (update_loop_filter_mode_deltas[index]) {
  662. uncomp_writer.WriteS(current_frame_info.mode_deltas[index], 6);
  663. }
  664. }
  665. // save new deltas
  666. loop_filter_ref_deltas = current_frame_info.ref_deltas;
  667. loop_filter_mode_deltas = current_frame_info.mode_deltas;
  668. }
  669. }
  670. uncomp_writer.WriteU(current_frame_info.base_q_index, 8);
  671. uncomp_writer.WriteDeltaQ(current_frame_info.y_dc_delta_q);
  672. uncomp_writer.WriteDeltaQ(current_frame_info.uv_dc_delta_q);
  673. uncomp_writer.WriteDeltaQ(current_frame_info.uv_ac_delta_q);
  674. uncomp_writer.WriteBit(false); // Segmentation enabled (TODO).
  675. const s32 min_tile_cols_log2 = CalcMinLog2TileCols(current_frame_info.frame_size.width);
  676. const s32 max_tile_cols_log2 = CalcMaxLog2TileCols(current_frame_info.frame_size.width);
  677. const s32 tile_cols_log2_diff = current_frame_info.log2_tile_cols - min_tile_cols_log2;
  678. const s32 tile_cols_log2_inc_mask = (1 << tile_cols_log2_diff) - 1;
  679. // If it's less than the maximum, we need to add an extra 0 on the bitstream
  680. // to indicate that it should stop reading.
  681. if (current_frame_info.log2_tile_cols < max_tile_cols_log2) {
  682. uncomp_writer.WriteU(tile_cols_log2_inc_mask << 1, tile_cols_log2_diff + 1);
  683. } else {
  684. uncomp_writer.WriteU(tile_cols_log2_inc_mask, tile_cols_log2_diff);
  685. }
  686. const bool tile_rows_log2_is_nonzero = current_frame_info.log2_tile_rows != 0;
  687. uncomp_writer.WriteBit(tile_rows_log2_is_nonzero);
  688. if (tile_rows_log2_is_nonzero) {
  689. uncomp_writer.WriteBit(current_frame_info.log2_tile_rows > 1);
  690. }
  691. return uncomp_writer;
  692. }
  693. const std::vector<u8>& VP9::ComposeFrameHeader(const NvdecCommon::NvdecRegisters& state) {
  694. std::vector<u8> bitstream;
  695. {
  696. Vp9FrameContainer curr_frame = GetCurrentFrame(state);
  697. current_frame_info = curr_frame.info;
  698. bitstream = std::move(curr_frame.bit_stream);
  699. }
  700. // The uncompressed header routine sets PrevProb parameters needed for the compressed header
  701. auto uncomp_writer = ComposeUncompressedHeader();
  702. std::vector<u8> compressed_header = ComposeCompressedHeader();
  703. uncomp_writer.WriteU(static_cast<s32>(compressed_header.size()), 16);
  704. uncomp_writer.Flush();
  705. std::vector<u8> uncompressed_header = uncomp_writer.GetByteArray();
  706. // Write headers and frame to buffer
  707. frame.resize(uncompressed_header.size() + compressed_header.size() + bitstream.size());
  708. std::copy(uncompressed_header.begin(), uncompressed_header.end(), frame.begin());
  709. std::copy(compressed_header.begin(), compressed_header.end(),
  710. frame.begin() + uncompressed_header.size());
  711. std::copy(bitstream.begin(), bitstream.end(),
  712. frame.begin() + uncompressed_header.size() + compressed_header.size());
  713. // keep track of frame number
  714. current_frame_number++;
  715. grace_period--;
  716. // don't display hidden frames
  717. hidden = !current_frame_info.show_frame;
  718. return frame;
  719. }
  720. VpxRangeEncoder::VpxRangeEncoder() {
  721. Write(false);
  722. }
  723. VpxRangeEncoder::~VpxRangeEncoder() = default;
  724. void VpxRangeEncoder::Write(s32 value, s32 value_size) {
  725. for (s32 bit = value_size - 1; bit >= 0; bit--) {
  726. Write(((value >> bit) & 1) != 0);
  727. }
  728. }
  729. void VpxRangeEncoder::Write(bool bit) {
  730. Write(bit, half_probability);
  731. }
  732. void VpxRangeEncoder::Write(bool bit, s32 probability) {
  733. u32 local_range = range;
  734. const u32 split = 1 + (((local_range - 1) * static_cast<u32>(probability)) >> 8);
  735. local_range = split;
  736. if (bit) {
  737. low_value += split;
  738. local_range = range - split;
  739. }
  740. s32 shift = norm_lut[local_range];
  741. local_range <<= shift;
  742. count += shift;
  743. if (count >= 0) {
  744. const s32 offset = shift - count;
  745. if (((low_value << (offset - 1)) >> 31) != 0) {
  746. const s32 current_pos = static_cast<s32>(base_stream.GetPosition());
  747. base_stream.Seek(-1, Common::SeekOrigin::FromCurrentPos);
  748. while (PeekByte() == 0xff) {
  749. base_stream.WriteByte(0);
  750. base_stream.Seek(-2, Common::SeekOrigin::FromCurrentPos);
  751. }
  752. base_stream.WriteByte(static_cast<u8>((PeekByte() + 1)));
  753. base_stream.Seek(current_pos, Common::SeekOrigin::SetOrigin);
  754. }
  755. base_stream.WriteByte(static_cast<u8>((low_value >> (24 - offset))));
  756. low_value <<= offset;
  757. shift = count;
  758. low_value &= 0xffffff;
  759. count -= 8;
  760. }
  761. low_value <<= shift;
  762. range = local_range;
  763. }
  764. void VpxRangeEncoder::End() {
  765. for (std::size_t index = 0; index < 32; ++index) {
  766. Write(false);
  767. }
  768. }
  769. u8 VpxRangeEncoder::PeekByte() {
  770. const u8 value = base_stream.ReadByte();
  771. base_stream.Seek(-1, Common::SeekOrigin::FromCurrentPos);
  772. return value;
  773. }
  774. VpxBitStreamWriter::VpxBitStreamWriter() = default;
  775. VpxBitStreamWriter::~VpxBitStreamWriter() = default;
  776. void VpxBitStreamWriter::WriteU(u32 value, u32 value_size) {
  777. WriteBits(value, value_size);
  778. }
  779. void VpxBitStreamWriter::WriteS(s32 value, u32 value_size) {
  780. const bool sign = value < 0;
  781. if (sign) {
  782. value = -value;
  783. }
  784. WriteBits(static_cast<u32>(value << 1) | (sign ? 1 : 0), value_size + 1);
  785. }
  786. void VpxBitStreamWriter::WriteDeltaQ(u32 value) {
  787. const bool delta_coded = value != 0;
  788. WriteBit(delta_coded);
  789. if (delta_coded) {
  790. WriteBits(value, 4);
  791. }
  792. }
  793. void VpxBitStreamWriter::WriteBits(u32 value, u32 bit_count) {
  794. s32 value_pos = 0;
  795. s32 remaining = bit_count;
  796. while (remaining > 0) {
  797. s32 copy_size = remaining;
  798. const s32 free = GetFreeBufferBits();
  799. if (copy_size > free) {
  800. copy_size = free;
  801. }
  802. const s32 mask = (1 << copy_size) - 1;
  803. const s32 src_shift = (bit_count - value_pos) - copy_size;
  804. const s32 dst_shift = (buffer_size - buffer_pos) - copy_size;
  805. buffer |= ((value >> src_shift) & mask) << dst_shift;
  806. value_pos += copy_size;
  807. buffer_pos += copy_size;
  808. remaining -= copy_size;
  809. }
  810. }
  811. void VpxBitStreamWriter::WriteBit(bool state) {
  812. WriteBits(state ? 1 : 0, 1);
  813. }
  814. s32 VpxBitStreamWriter::GetFreeBufferBits() {
  815. if (buffer_pos == buffer_size) {
  816. Flush();
  817. }
  818. return buffer_size - buffer_pos;
  819. }
  820. void VpxBitStreamWriter::Flush() {
  821. if (buffer_pos == 0) {
  822. return;
  823. }
  824. byte_array.push_back(static_cast<u8>(buffer));
  825. buffer = 0;
  826. buffer_pos = 0;
  827. }
  828. std::vector<u8>& VpxBitStreamWriter::GetByteArray() {
  829. return byte_array;
  830. }
  831. const std::vector<u8>& VpxBitStreamWriter::GetByteArray() const {
  832. return byte_array;
  833. }
  834. } // namespace Tegra::Decoder