You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

653 lines
22KB

  1. /*
  2. * VC-1 and WMV3 decoder
  3. * copyright (c) 2006 Konstantin Shishkov
  4. * (c) 2005 anonymous, Alex Beregszaszi, Michael Niedermayer
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file vc1data.h
  24. * VC-1 tables.
  25. */
  26. #ifndef VC1DATA_H
  27. #define VC1DATA_H
  28. #if 0 //original bfraction from vc9data.h, not conforming to standard
  29. /* Denominator used for vc1_bfraction_lut */
  30. #define B_FRACTION_DEN 840
  31. /* bfraction is fractional, we scale to the GCD 3*5*7*8 = 840 */
  32. const int16_t vc1_bfraction_lut[23] = {
  33. 420 /*1/2*/, 280 /*1/3*/, 560 /*2/3*/, 210 /*1/4*/,
  34. 630 /*3/4*/, 168 /*1/5*/, 336 /*2/5*/,
  35. 504 /*3/5*/, 672 /*4/5*/, 140 /*1/6*/, 700 /*5/6*/,
  36. 120 /*1/7*/, 240 /*2/7*/, 360 /*3/7*/, 480 /*4/7*/,
  37. 600 /*5/7*/, 720 /*6/7*/, 105 /*1/8*/, 315 /*3/8*/,
  38. 525 /*5/8*/, 735 /*7/8*/,
  39. -1 /*inv.*/, 0 /*BI fm*/
  40. };
  41. #else
  42. /* Denominator used for vc1_bfraction_lut */
  43. #define B_FRACTION_DEN 256
  44. /* pre-computed scales for all bfractions and base=256 */
  45. static const int16_t vc1_bfraction_lut[23] = {
  46. 128 /*1/2*/, 85 /*1/3*/, 170 /*2/3*/, 64 /*1/4*/,
  47. 192 /*3/4*/, 51 /*1/5*/, 102 /*2/5*/,
  48. 153 /*3/5*/, 204 /*4/5*/, 43 /*1/6*/, 215 /*5/6*/,
  49. 37 /*1/7*/, 74 /*2/7*/, 111 /*3/7*/, 148 /*4/7*/,
  50. 185 /*5/7*/, 222 /*6/7*/, 32 /*1/8*/, 96 /*3/8*/,
  51. 160 /*5/8*/, 224 /*7/8*/,
  52. -1 /*inv.*/, 0 /*BI fm*/
  53. };
  54. #endif
  55. static const uint8_t vc1_bfraction_bits[23] = {
  56. 3, 3, 3, 3,
  57. 3, 3, 3,
  58. 7, 7, 7, 7,
  59. 7, 7, 7, 7,
  60. 7, 7, 7, 7,
  61. 7, 7,
  62. 7, 7
  63. };
  64. static const uint8_t vc1_bfraction_codes[23] = {
  65. 0, 1, 2, 3,
  66. 4, 5, 6,
  67. 112, 113, 114, 115,
  68. 116, 117, 118, 119,
  69. 120, 121, 122, 123,
  70. 124, 125,
  71. 126, 127
  72. };
  73. //Same as H.264
  74. static const AVRational vc1_pixel_aspect[16]={
  75. {0, 1},
  76. {1, 1},
  77. {12, 11},
  78. {10, 11},
  79. {16, 11},
  80. {40, 33},
  81. {24, 11},
  82. {20, 11},
  83. {32, 11},
  84. {80, 33},
  85. {18, 11},
  86. {15, 11},
  87. {64, 33},
  88. {160, 99},
  89. {0, 1},
  90. {0, 1}
  91. };
  92. /* BitPlane IMODE - such a small table... */
  93. static const uint8_t vc1_imode_codes[7] = {
  94. 0, 2, 1, 3, 1, 2, 3
  95. };
  96. static const uint8_t vc1_imode_bits[7] = {
  97. 4, 2, 3, 2, 4, 3, 3
  98. };
  99. /* Normal-2 imode */
  100. static const uint8_t vc1_norm2_codes[4] = {
  101. 0, 4, 5, 3
  102. };
  103. static const uint8_t vc1_norm2_bits[4] = {
  104. 1, 3, 3, 2
  105. };
  106. static const uint16_t vc1_norm6_codes[64] = {
  107. 0x001, 0x002, 0x003, 0x000, 0x004, 0x001, 0x002, 0x047, 0x005, 0x003, 0x004, 0x04B, 0x005, 0x04D, 0x04E, 0x30E,
  108. 0x006, 0x006, 0x007, 0x053, 0x008, 0x055, 0x056, 0x30D, 0x009, 0x059, 0x05A, 0x30C, 0x05C, 0x30B, 0x30A, 0x037,
  109. 0x007, 0x00A, 0x00B, 0x043, 0x00C, 0x045, 0x046, 0x309, 0x00D, 0x049, 0x04A, 0x308, 0x04C, 0x307, 0x306, 0x036,
  110. 0x00E, 0x051, 0x052, 0x305, 0x054, 0x304, 0x303, 0x035, 0x058, 0x302, 0x301, 0x034, 0x300, 0x033, 0x032, 0x007,
  111. };
  112. static const uint8_t vc1_norm6_bits[64] = {
  113. 1, 4, 4, 8, 4, 8, 8, 10, 4, 8, 8, 10, 8, 10, 10, 13,
  114. 4, 8, 8, 10, 8, 10, 10, 13, 8, 10, 10, 13, 10, 13, 13, 9,
  115. 4, 8, 8, 10, 8, 10, 10, 13, 8, 10, 10, 13, 10, 13, 13, 9,
  116. 8, 10, 10, 13, 10, 13, 13, 9, 10, 13, 13, 9, 13, 9, 9, 6,
  117. };
  118. /* Normal-6 imode */
  119. static const uint8_t vc1_norm6_spec[64][5] = {
  120. { 0, 1, 1 },
  121. { 1, 2, 4 },
  122. { 2, 3, 4 },
  123. { 3, 0, 8 },
  124. { 4, 4, 4 },
  125. { 5, 1, 8 },
  126. { 6, 2, 8 },
  127. { 7, 2, 5, 7, 5 },
  128. { 8, 5, 4 },
  129. { 9, 3, 8 },
  130. {10, 4, 8 },
  131. {11, 2, 5, 11, 5 },
  132. {12, 5, 8 },
  133. {13, 2, 5, 13, 5 },
  134. {14, 2, 5, 14, 5 },
  135. {15, 3, 5, 14, 8 },
  136. {16, 6, 4 },
  137. {17, 6, 8 },
  138. {18, 7, 8 },
  139. {19, 2, 5, 19, 5 },
  140. {20, 8, 8 },
  141. {21, 2, 5, 21, 5 },
  142. {22, 2, 5, 22, 5 },
  143. {23, 3, 5, 13, 8 },
  144. {24, 9, 8 },
  145. {25, 2, 5, 25, 5 },
  146. {26, 2, 5, 26, 5 },
  147. {27, 3, 5, 12, 8 },
  148. {28, 2, 5, 28, 5 },
  149. {29, 3, 5, 11, 8 },
  150. {30, 3, 5, 10, 8 },
  151. {31, 3, 5, 7, 4 },
  152. {32, 7, 4 },
  153. {33, 10, 8 },
  154. {34, 11, 8 },
  155. {35, 2, 5, 3, 5 },
  156. {36, 12, 8 },
  157. {37, 2, 5, 5, 5 },
  158. {38, 2, 5, 6, 5 },
  159. {39, 3, 5, 9, 8 },
  160. {40, 13, 8 },
  161. {41, 2, 5, 9, 5 },
  162. {42, 2, 5, 10, 5 },
  163. {43, 3, 5, 8, 8 },
  164. {44, 2, 5, 12, 5 },
  165. {45, 3, 5, 7, 8 },
  166. {46, 3, 5, 6, 8 },
  167. {47, 3, 5, 6, 4 },
  168. {48, 14, 8 },
  169. {49, 2, 5, 17, 5 },
  170. {50, 2, 5, 18, 5 },
  171. {51, 3, 5, 5, 8 },
  172. {52, 2, 5, 20, 5 },
  173. {53, 3, 5, 4, 8 },
  174. {54, 3, 5, 3, 8 },
  175. {55, 3, 5, 5, 4 },
  176. {56, 2, 5, 24, 5 },
  177. {57, 3, 5, 2, 8 },
  178. {58, 3, 5, 1, 8 },
  179. {59, 3, 5, 4, 4 },
  180. {60, 3, 5, 0, 8 },
  181. {61, 3, 5, 3, 4 },
  182. {62, 3, 5, 2, 4 },
  183. {63, 3, 5, 1, 1 },
  184. };
  185. /* 4MV Block pattern VLC tables */
  186. static const uint8_t vc1_4mv_block_pattern_codes[4][16] = {
  187. { 14, 58, 59, 25, 12, 26, 15, 15, 13, 24, 27, 0, 28, 1, 2, 2},
  188. { 8, 18, 19, 4, 20, 5, 30, 11, 21, 31, 6, 12, 7, 13, 14, 0},
  189. { 15, 6, 7, 2, 8, 3, 28, 9, 10, 29, 4, 11, 5, 12, 13, 0},
  190. { 0, 11, 12, 4, 13, 5, 30, 16, 14, 31, 6, 17, 7, 18, 19, 10}
  191. };
  192. static const uint8_t vc1_4mv_block_pattern_bits[4][16] = {
  193. { 5, 6, 6, 5, 5, 5, 5, 4, 5, 5, 5, 3, 5, 3, 3, 2},
  194. { 4, 5, 5, 4, 5, 4, 5, 4, 5, 5, 4, 4, 4, 4, 4, 2},
  195. { 4, 4, 4, 4, 4, 4, 5, 4, 4, 5, 4, 4, 4, 4, 4, 3},
  196. { 2, 4, 4, 4, 4, 4, 5, 5, 4, 5, 4, 5, 4, 5, 5, 4}
  197. };
  198. const uint8_t wmv3_dc_scale_table[32]={
  199. 0, 2, 4, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21
  200. };
  201. /* P-Picture CBPCY VLC tables */
  202. #if 1 // Looks like original tables are not conforming to standard at all. Are they used for old WMV?
  203. static const uint16_t vc1_cbpcy_p_codes[4][64] = {
  204. {
  205. 0, 6, 15, 13, 13, 11, 3, 13, 5, 8, 49, 10, 12, 114, 102, 119,
  206. 1, 54, 96, 8, 10, 111, 5, 15, 12, 10, 2, 12, 13, 115, 53, 63,
  207. 1, 7, 1, 7, 14, 12, 4, 14, 1, 9, 97, 11, 7, 58, 52, 62,
  208. 4, 103, 1, 9, 11, 56, 101, 118, 4, 110, 100, 30, 2, 5, 4, 3
  209. },
  210. {
  211. 0, 9, 1, 18, 5, 14, 237, 26, 3, 121, 3, 22, 13, 16, 6, 30,
  212. 2, 10, 1, 20, 12, 241, 5, 28, 16, 12, 3, 24, 28, 124, 239, 247,
  213. 1, 240, 1, 19, 18, 15, 4, 27, 1, 122, 2, 23, 1, 17, 7, 31,
  214. 1, 11, 2, 21, 19, 246, 238, 29, 17, 13, 236, 25, 58, 63, 8, 125
  215. },
  216. {
  217. 0, 201, 25, 231, 5, 221, 1, 3, 2, 414, 2, 241, 16, 225, 195, 492,
  218. 2, 412, 1, 240, 7, 224, 98, 245, 1, 220, 96, 5, 9, 230, 101, 247,
  219. 1, 102, 1, 415, 24, 3, 2, 244, 3, 54, 3, 484, 17, 114, 200, 493,
  220. 3, 413, 1, 4, 13, 113, 99, 485, 4, 111, 194, 243, 5, 29, 26, 31
  221. },
  222. {
  223. 0, 28, 12, 44, 3, 36, 20, 52, 2, 32, 16, 48, 8, 40, 24, 28,
  224. 1, 30, 14, 46, 6, 38, 22, 54, 3, 34, 18, 50, 10, 42, 26, 30,
  225. 1, 29, 13, 45, 5, 37, 21, 53, 2, 33, 17, 49, 9, 41, 25, 29,
  226. 1, 31, 15, 47, 7, 39, 23, 55, 4, 35, 19, 51, 11, 43, 27, 31
  227. }
  228. };
  229. static const uint8_t vc1_cbpcy_p_bits[4][64] = {
  230. {
  231. 13, 13, 7, 13, 7, 13, 13, 12, 6, 13, 7, 12, 6, 8, 8, 8,
  232. 5, 7, 8, 12, 6, 8, 13, 12, 7, 13, 13, 12, 6, 8, 7, 7,
  233. 6, 13, 8, 12, 7, 13, 13, 12, 7, 13, 8, 12, 5, 7, 7, 7,
  234. 6, 8, 13, 12, 6, 7, 8, 8, 5, 8, 8, 6, 3, 3, 3, 2
  235. },
  236. {
  237. 14, 13, 8, 13, 3, 13, 8, 13, 3, 7, 8, 13, 4, 13, 13, 13,
  238. 3, 13, 13, 13, 4, 8, 13, 13, 5, 13, 13, 13, 5, 7, 8, 8,
  239. 3, 8, 14, 13, 5, 13, 13, 13, 4, 7, 13, 13, 6, 13, 13, 13,
  240. 5, 13, 8, 13, 5, 8, 8, 13, 5, 13, 8, 13, 6, 6, 13, 7
  241. },
  242. {
  243. 13, 8, 6, 8, 4, 8, 13, 12, 4, 9, 8, 8, 5, 8, 8, 9,
  244. 5, 9, 10, 8, 4, 8, 7, 8, 6, 8, 7, 13, 4, 8, 7, 8,
  245. 5, 7, 8, 9, 6, 13, 13, 8, 4, 6, 8, 9, 5, 7, 8, 9,
  246. 5, 9, 9, 13, 5, 7, 7, 9, 4, 7, 8, 8, 3, 5, 5, 5
  247. },
  248. {
  249. 9, 9, 9, 9, 2, 9, 9, 9, 2, 9, 9, 9, 9, 9, 9, 8,
  250. 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8,
  251. 2, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8,
  252. 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8
  253. }
  254. };
  255. #else
  256. static const uint16_t vc1_cbpcy_p_codes[4][64] = {
  257. {
  258. 0, 1, 1, 4, 5, 1, 12, 4, 13, 14, 10, 11, 12, 7, 13, 2,
  259. 15, 1, 96, 1, 49, 97, 2, 100, 3, 4, 5, 101, 102, 52, 53, 4,
  260. 6, 7, 54, 103, 8, 9, 10, 110, 11, 12, 111, 56, 114, 58, 115, 5,
  261. 13, 7, 8, 9, 10, 11, 12, 30, 13, 14, 15, 118, 119, 62, 63, 3
  262. },
  263. {
  264. 0, 1, 2, 1, 3, 1, 16, 17, 5, 18, 12, 19, 13, 1, 28, 58,
  265. 1, 1, 1, 2, 3, 2, 3, 236, 237, 4, 5, 238, 6, 7, 239, 8,
  266. 9, 240, 10, 11, 121, 122, 12, 13, 14, 15, 241, 246, 16, 17, 124, 63,
  267. 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 247, 125
  268. },
  269. {
  270. 0, 1, 2, 3, 2, 3, 1, 4, 5, 24, 7, 13, 16, 17, 9, 5,
  271. 25, 1, 1, 1, 2, 3, 96, 194, 1, 2, 98, 99, 195, 200, 101, 26,
  272. 201, 102, 412, 413, 414, 54, 220, 111, 221, 3, 224, 113, 225, 114, 230, 29,
  273. 231, 415, 240, 4, 241, 484, 5, 243, 3, 244, 245, 485, 492, 493, 247, 31
  274. },
  275. {
  276. 0, 1, 1, 1, 2, 2, 3, 4, 3, 5, 6, 7, 8, 9, 10, 11,
  277. 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
  278. 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
  279. 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 28, 29, 30, 31
  280. }
  281. };
  282. static const uint8_t vc1_cbpcy_p_bits[4][64] = {
  283. {
  284. 13, 6, 5, 6, 6, 7, 7, 5, 7, 7, 6, 6, 6, 5, 6, 3,
  285. 7, 8, 8, 13, 7, 8, 13, 8, 13, 13, 13, 8, 8, 7, 7, 3,
  286. 13, 13, 7, 8, 13, 13, 13, 8, 13, 13, 8, 7, 8, 7, 8, 3,
  287. 13, 12, 12, 12, 12, 12, 12, 6, 12, 12, 12, 8, 8, 7, 7, 2
  288. },
  289. {
  290. 14, 3, 3, 5, 3, 4, 5, 5, 3, 5, 4, 5, 4, 6, 5, 6,
  291. 8, 14, 13, 8, 8, 13, 13, 8, 8, 13, 13, 8, 13, 13, 8, 13,
  292. 13, 8, 13, 13, 7, 7, 13, 13, 13, 13, 8, 8, 13, 13, 7, 6,
  293. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 8, 7
  294. },
  295. {
  296. 13, 5, 5, 5, 4, 4, 6, 4, 4, 6, 4, 5, 5, 5, 4, 3,
  297. 6, 8, 10, 9, 8, 8, 7, 8, 13, 13, 7, 7, 8, 8, 7, 5,
  298. 8, 7, 9, 9, 9, 6, 8, 7, 8, 13, 8, 7, 8, 7, 8, 5,
  299. 8, 9, 8, 13, 8, 9, 13, 8, 12, 8, 8, 9, 9, 9, 8, 5
  300. },
  301. {
  302. 9, 2, 3, 9, 2, 9, 9, 9, 2, 9, 9, 9, 9, 9, 9, 9,
  303. 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
  304. 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
  305. 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8
  306. }
  307. };
  308. #endif
  309. /* MacroBlock Transform Type: 7.1.3.11, p89
  310. * 8x8:B
  311. * 8x4:B:btm 8x4:B:top 8x4:B:both,
  312. * 4x8:B:right 4x8:B:left 4x8:B:both
  313. * 4x4:B 8x8:MB
  314. * 8x4:MB:btm 8x4:MB:top 8x4,MB,both
  315. * 4x8,MB,right 4x8,MB,left
  316. * 4x4,MB */
  317. static const uint16_t vc1_ttmb_codes[3][16] = {
  318. {
  319. 0x0003,
  320. 0x002E, 0x005F, 0x0000,
  321. 0x0016, 0x0015, 0x0001,
  322. 0x0004, 0x0014,
  323. 0x02F1, 0x0179, 0x017B,
  324. 0x0BC0, 0x0BC1, 0x05E1,
  325. 0x017A
  326. },
  327. {
  328. 0x0006,
  329. 0x0006, 0x0003, 0x0007,
  330. 0x000F, 0x000E, 0x0000,
  331. 0x0002, 0x0002,
  332. 0x0014, 0x0011, 0x000B,
  333. 0x0009, 0x0021, 0x0015,
  334. 0x0020
  335. },
  336. {
  337. 0x0006,
  338. 0x0000, 0x000E, 0x0005,
  339. 0x0002, 0x0003, 0x0003,
  340. 0x000F, 0x0002,
  341. 0x0081, 0x0021, 0x0009,
  342. 0x0101, 0x0041, 0x0011,
  343. 0x0100
  344. }
  345. };
  346. static const uint8_t vc1_ttmb_bits[3][16] = {
  347. {
  348. 2,
  349. 6, 7, 2,
  350. 5, 5, 2,
  351. 3, 5,
  352. 10, 9, 9,
  353. 12, 12, 11,
  354. 9
  355. },
  356. {
  357. 3,
  358. 4, 4, 4,
  359. 4, 4, 3,
  360. 3, 2,
  361. 7, 7, 6,
  362. 6, 8, 7,
  363. 8
  364. },
  365. {
  366. 3,
  367. 3, 4, 5,
  368. 3, 3, 4,
  369. 4, 2,
  370. 10, 8, 6,
  371. 11, 9, 7,
  372. 11
  373. }
  374. };
  375. /* TTBLK (Transform Type per Block) tables */
  376. static const uint8_t vc1_ttblk_codes[3][8] = {
  377. { 0, 1, 3, 5, 16, 17, 18, 19},
  378. { 3, 0, 1, 2, 3, 5, 8, 9},
  379. { 1, 0, 1, 4, 6, 7, 10, 11}
  380. };
  381. static const uint8_t vc1_ttblk_bits[3][8] = {
  382. { 2, 2, 2, 3, 5, 5, 5, 5},
  383. { 2, 3, 3, 3, 3, 3, 4, 4},
  384. { 2, 3, 3, 3, 3, 3, 4, 4}
  385. };
  386. /* SUBBLKPAT tables, p93-94, reordered */
  387. static const uint8_t vc1_subblkpat_codes[3][15] = {
  388. { 14, 12, 7, 11, 9, 26, 2, 10, 27, 8, 0, 6, 1, 15, 1},
  389. { 14, 0, 8, 15, 10, 4, 23, 13, 5, 9, 25, 3, 24, 22, 1},
  390. { 5, 6, 2, 2, 8, 0, 28, 3, 1, 3, 29, 1, 19, 18, 15}
  391. };
  392. static const uint8_t vc1_subblkpat_bits[3][15] = {
  393. { 5, 5, 5, 5, 5, 6, 4, 5, 6, 5, 4, 5, 4, 5, 1},
  394. { 4, 3, 4, 4, 4, 5, 5, 4, 5, 4, 5, 4, 5, 5, 2},
  395. { 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4}
  396. };
  397. /* MV differential tables, p265 */
  398. static const uint16_t vc1_mv_diff_codes[4][73] = {
  399. {
  400. 0, 2, 3, 8, 576, 3, 2, 6,
  401. 5, 577, 578, 7, 8, 9, 40, 19,
  402. 37, 82, 21, 22, 23, 579, 580, 166,
  403. 96, 167, 49, 194, 195, 581, 582, 583,
  404. 292, 293, 294, 13, 2, 7, 24, 50,
  405. 102, 295, 13, 7, 8, 18, 50, 103,
  406. 38, 20, 21, 22, 39, 204, 103, 23,
  407. 24, 25, 104, 410, 105, 106, 107, 108,
  408. 109, 220, 411, 442, 222, 443, 446, 447,
  409. 7 /* 73 elements */
  410. },
  411. {
  412. 0, 4, 5, 3, 4, 3, 4, 5,
  413. 20, 6, 21, 44, 45, 46, 3008, 95,
  414. 112, 113, 57, 3009, 3010, 116, 117, 3011,
  415. 118, 3012, 3013, 3014, 3015, 3016, 3017, 3018,
  416. 3019, 3020, 3021, 3022, 1, 4, 15, 160,
  417. 161, 41, 6, 11, 42, 162, 43, 119,
  418. 56, 57, 58, 163, 236, 237, 3023, 119,
  419. 120, 242, 122, 486, 1512, 487, 246, 494,
  420. 1513, 495, 1514, 1515, 1516, 1517, 1518, 1519,
  421. 31 /* 73 elements */
  422. },
  423. {
  424. 0, 512, 513, 514, 515, 2, 3, 258,
  425. 259, 260, 261, 262, 263, 264, 265, 266,
  426. 267, 268, 269, 270, 271, 272, 273, 274,
  427. 275, 276, 277, 278, 279, 280, 281, 282,
  428. 283, 284, 285, 286, 1, 5, 287, 288,
  429. 289, 290, 6, 7, 291, 292, 293, 294,
  430. 295, 296, 297, 298, 299, 300, 301, 302,
  431. 303, 304, 305, 306, 307, 308, 309, 310,
  432. 311, 312, 313, 314, 315, 316, 317, 318,
  433. 319 /* 73 elements */
  434. },
  435. {
  436. 0, 1, 1, 2, 3, 4, 1, 5,
  437. 4, 3, 5, 8, 6, 9, 10, 11,
  438. 12, 7, 104, 14, 105, 4, 10, 15,
  439. 11, 6, 14, 8, 106, 107, 108, 15,
  440. 109, 9, 55, 10, 1, 2, 1, 2,
  441. 3, 12, 6, 2, 6, 7, 28, 7,
  442. 15, 8, 5, 18, 29, 152, 77, 24,
  443. 25, 26, 39, 108, 13, 109, 55, 56,
  444. 57, 116, 11, 153, 234, 235, 118, 119,
  445. 15 /* 73 elements */
  446. }
  447. };
  448. static const uint8_t vc1_mv_diff_bits[4][73] = {
  449. {
  450. 6, 7, 7, 8, 14, 6, 5, 6, 7, 14, 14, 6, 6, 6, 8, 9,
  451. 10, 9, 7, 7, 7, 14, 14, 10, 9, 10, 8, 10, 10, 14, 14, 14,
  452. 13, 13, 13, 6, 3, 5, 6, 8, 9, 13, 5, 4, 4, 5, 7, 9,
  453. 6, 5, 5, 5, 6, 9, 8, 5, 5, 5, 7, 10, 7, 7, 7, 7,
  454. 7, 8, 10, 9, 8, 9, 9, 9, 3 /* 73 elements */
  455. },
  456. {
  457. 5, 7, 7, 6, 6, 5, 5, 6, 7, 5, 7, 8, 8, 8, 14, 9,
  458. 9, 9, 8, 14, 14, 9, 9, 14, 9, 14, 14, 14, 14, 14, 14, 14,
  459. 14, 14, 14, 14, 2, 3, 6, 8, 8, 6, 3, 4, 6, 8, 6, 9,
  460. 6, 6, 6, 8, 8, 8, 14, 7, 7, 8, 7, 9, 13, 9, 8, 9,
  461. 13, 9, 13, 13, 13, 13, 13, 13, 5 /* 73 elements */
  462. },
  463. {
  464. 3, 12, 12, 12, 12, 3, 4, 11, 11, 11, 11, 11, 11, 11, 11, 11,
  465. 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
  466. 11, 11, 11, 11, 1, 5, 11, 11, 11, 11, 4, 4, 11, 11, 11, 11,
  467. 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
  468. 11, 11, 11, 11, 11, 11, 11, 11, 11 /* 73 elements */
  469. },
  470. {
  471. 15, 11, 15, 15, 15, 15, 12, 15, 12, 11, 12, 12, 15, 12, 12, 12,
  472. 12, 15, 15, 12, 15, 10, 11, 12, 11, 10, 11, 10, 15, 15, 15, 11,
  473. 15, 10, 14, 10, 4, 4, 5, 7, 8, 9, 5, 3, 4, 5, 6, 8,
  474. 5, 4, 3, 5, 6, 8, 7, 5, 5, 5, 6, 7, 9, 7, 6, 6,
  475. 6, 7, 10, 8, 8, 8, 7, 7, 4 /* 73 elements */
  476. }
  477. };
  478. /* DC differentials low+hi-mo, p217 are the same as in msmpeg4data .h */
  479. /* Scantables/ZZ scan are at 11.9 (p262) and 8.1.1.12 (p10) */
  480. static const int8_t vc1_normal_zz[64] = {
  481. 0, 8, 1, 2, 9, 16, 24, 17,
  482. 10, 3, 4, 11, 18, 25, 32, 40,
  483. 33, 48, 26, 19, 12, 5, 6, 13,
  484. 20, 27, 34, 41, 56, 49, 57, 42,
  485. 35, 28, 21, 14, 7, 15, 22, 29,
  486. 36, 43, 50, 58, 51, 59, 44, 37,
  487. 30, 23, 31, 38, 45, 52, 60, 53,
  488. 61, 46, 39, 47, 54, 62, 55, 63
  489. };
  490. static const int8_t vc1_horizontal_zz [64] = /* Table 227 */
  491. {
  492. 0, 1, 8, 2, 3, 9, 16, 24,
  493. 17, 10, 4, 5, 11, 18, 25, 32,
  494. 40, 48, 33, 26, 19, 12, 6, 7,
  495. 13, 20, 27, 34, 41, 56, 49, 57,
  496. 42, 35, 28, 21, 14, 15, 22, 29,
  497. 36, 43, 50, 58, 51, 44, 37, 30,
  498. 23, 31, 38, 45, 52, 59, 60, 53,
  499. 46, 39, 47, 54, 61, 62, 55, 63
  500. };
  501. static const int8_t vc1_vertical_zz [64] = /* Table 228 */
  502. {
  503. 0, 8, 16, 1, 24, 32, 40, 9,
  504. 2, 3, 10, 17, 25, 48, 56, 41,
  505. 33, 26, 18, 11, 4, 5, 12, 19,
  506. 27, 34, 49, 57, 50, 42, 35, 28,
  507. 20, 13, 6, 7, 14, 21, 29, 36,
  508. 43, 51, 58, 59, 52, 44, 37, 30,
  509. 22, 15, 23, 31, 38, 45, 60, 53,
  510. 46, 39, 47, 54, 61, 62, 55, 63
  511. };
  512. static const int8_t vc1_simple_progressive_8x8_zz [64] =
  513. /* Table 229 */
  514. {
  515. 0, 8, 1, 2, 9, 16, 24, 17,
  516. 10, 3, 4, 11, 18, 25, 32, 40,
  517. 48, 56, 41, 33, 26, 19, 12, 5,
  518. 6, 13, 20, 27, 34, 49, 57, 58,
  519. 50, 42, 35, 28, 21, 14, 7, 15,
  520. 22, 29, 36, 43, 51, 59, 60, 52,
  521. 44, 37, 30, 23, 31, 38, 45, 53,
  522. 61, 62, 54, 46, 39, 47, 55, 63
  523. };
  524. static const int8_t vc1_simple_progressive_8x4_zz [32] = /* Table 230 */
  525. {
  526. 0, 1, 2, 8, 3, 9, 10, 16,
  527. 4, 11, 17, 24, 18, 12, 5, 19,
  528. 25, 13, 20, 26, 27, 6, 21, 28,
  529. 14, 22, 29, 7, 30, 15, 23, 31
  530. };
  531. static const int8_t vc1_simple_progressive_4x8_zz [32] = /* Table 231 */
  532. {
  533. 0, 8, 1, 16,
  534. 9, 24, 17, 2,
  535. 32, 10, 25, 40,
  536. 18, 48, 33, 26,
  537. 56, 41, 34, 3,
  538. 49, 57, 11, 42,
  539. 19, 50, 27, 58,
  540. 35, 43, 51, 59
  541. };
  542. /* Table 232 */
  543. static const int8_t vc1_simple_progressive_4x4_zz [16] =
  544. {
  545. 0, 8, 16, 1,
  546. 9, 24, 17, 2,
  547. 10, 18, 25, 3,
  548. 11, 26, 19, 27
  549. };
  550. static const int8_t vc1_adv_progressive_8x4_zz [32] = /* Table 233 */
  551. {
  552. 0, 8, 1, 16, 2, 9, 10, 3,
  553. 24, 17, 4, 11, 18, 12, 5, 19,
  554. 25, 13, 20, 26, 27, 6, 21, 28,
  555. 14, 22, 29, 7, 30, 15, 23, 31
  556. };
  557. static const int8_t vc1_adv_progressive_4x8_zz [32] = /* Table 234 */
  558. {
  559. 0, 1, 8, 2,
  560. 9, 16, 17, 24,
  561. 10, 32, 25, 18,
  562. 40, 3, 33, 26,
  563. 48, 11, 56, 41,
  564. 34, 49, 57, 42,
  565. 19, 50, 27, 58,
  566. 35, 43, 51, 59
  567. };
  568. static const int8_t vc1_adv_interlaced_8x8_zz [64] = /* Table 235 */
  569. {
  570. 0, 8, 1, 16, 24, 9, 2, 32,
  571. 40, 48, 56, 17, 10, 3, 25, 18,
  572. 11, 4, 33, 41, 49, 57, 26, 34,
  573. 42, 50, 58, 19, 12, 5, 27, 20,
  574. 13, 6, 35, 28, 21, 14, 7, 15,
  575. 22, 29, 36, 43, 51, 59, 60, 52,
  576. 44, 37, 30, 23, 31, 38, 45, 53,
  577. 61, 62, 54, 46, 39, 47, 55, 63
  578. };
  579. static const int8_t vc1_adv_interlaced_8x4_zz [32] = /* Table 236 */
  580. {
  581. 0, 8, 16, 24, 1, 9, 2, 17,
  582. 25, 10, 3, 18, 26, 4, 11, 19,
  583. 12, 5, 13, 20, 27, 6, 21, 28,
  584. 14, 22, 29, 7, 30, 15, 23, 31
  585. };
  586. static const int8_t vc1_adv_interlaced_4x8_zz [32] = /* Table 237 */
  587. {
  588. 0, 1, 2, 8,
  589. 16, 9, 24, 17,
  590. 10, 3, 32, 40,
  591. 48, 56, 25, 18,
  592. 33, 26, 41, 34,
  593. 49, 57, 11, 42,
  594. 19, 50, 27, 58,
  595. 35, 43, 51, 59
  596. };
  597. static const int8_t vc1_adv_interlaced_4x4_zz [16] = /* Table 238 */
  598. {
  599. 0, 8, 16, 24,
  600. 1, 9, 17, 2,
  601. 25, 10, 18, 3,
  602. 26, 11, 19, 27
  603. };
  604. /* DQScale as specified in 8.1.3.9 - almost identical to 0x40000/i */
  605. static const int32_t vc1_dqscale[63] = {
  606. 0x40000, 0x20000, 0x15555, 0x10000, 0xCCCD, 0xAAAB, 0x9249, 0x8000,
  607. 0x71C7, 0x6666, 0x5D17, 0x5555, 0x4EC5, 0x4925, 0x4444, 0x4000,
  608. 0x3C3C, 0x38E4, 0x35E5, 0x3333, 0x30C3, 0x2E8C, 0x2C86, 0x2AAB,
  609. 0x28F6, 0x2762, 0x25ED, 0x2492, 0x234F, 0x2222, 0x2108, 0x2000,
  610. 0x1F08, 0x1E1E, 0x1D42, 0x1C72, 0x1BAD, 0x1AF3, 0x1A42, 0x199A,
  611. 0x18FA, 0x1862, 0x17D0, 0x1746, 0x16C1, 0x1643, 0x15CA, 0x1555,
  612. 0x14E6, 0x147B, 0x1414, 0x13B1, 0x1352, 0x12F7, 0x129E, 0x1249,
  613. 0x11F7, 0x11A8, 0x115B, 0x1111, 0x10C9, 0x1084, 0x1000
  614. };
  615. #endif /* VC1DATA_H */