vp9.cpp 42 KB

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