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.

422 lines
14KB

  1. /*
  2. * copyright (c) 2000,2001 Fabrice Bellard
  3. * H263+ support
  4. * copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file mpeg4data.h
  22. * mpeg4 tables.
  23. */
  24. // shapes
  25. #define RECT_SHAPE 0
  26. #define BIN_SHAPE 1
  27. #define BIN_ONLY_SHAPE 2
  28. #define GRAY_SHAPE 3
  29. #define SIMPLE_VO_TYPE 1
  30. #define CORE_VO_TYPE 3
  31. #define MAIN_VO_TYPE 4
  32. #define NBIT_VO_TYPE 5
  33. #define ARTS_VO_TYPE 10
  34. #define ACE_VO_TYPE 12
  35. #define ADV_SIMPLE_VO_TYPE 17
  36. // aspect_ratio_info
  37. #define EXTENDED_PAR 15
  38. //vol_sprite_usage / sprite_enable
  39. #define STATIC_SPRITE 1
  40. #define GMC_SPRITE 2
  41. #define MOTION_MARKER 0x1F001
  42. #define DC_MARKER 0x6B001
  43. static const int mb_type_b_map[4]= {
  44. MB_TYPE_DIRECT2 | MB_TYPE_L0L1,
  45. MB_TYPE_L0L1 | MB_TYPE_16x16,
  46. MB_TYPE_L1 | MB_TYPE_16x16,
  47. MB_TYPE_L0 | MB_TYPE_16x16,
  48. };
  49. #define VOS_STARTCODE 0x1B0
  50. #define USER_DATA_STARTCODE 0x1B2
  51. #define GOP_STARTCODE 0x1B3
  52. #define VISUAL_OBJ_STARTCODE 0x1B5
  53. #define VOP_STARTCODE 0x1B6
  54. /* dc encoding for mpeg4 */
  55. const uint8_t DCtab_lum[13][2] =
  56. {
  57. {3,3}, {3,2}, {2,2}, {2,3}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7},
  58. {1,8}, {1,9}, {1,10}, {1,11},
  59. };
  60. const uint8_t DCtab_chrom[13][2] =
  61. {
  62. {3,2}, {2,2}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, {1,8},
  63. {1,9}, {1,10}, {1,11}, {1,12},
  64. };
  65. const uint16_t intra_vlc[103][2] = {
  66. { 0x2, 2 },
  67. { 0x6, 3 },{ 0xf, 4 },{ 0xd, 5 },{ 0xc, 5 },
  68. { 0x15, 6 },{ 0x13, 6 },{ 0x12, 6 },{ 0x17, 7 },
  69. { 0x1f, 8 },{ 0x1e, 8 },{ 0x1d, 8 },{ 0x25, 9 },
  70. { 0x24, 9 },{ 0x23, 9 },{ 0x21, 9 },{ 0x21, 10 },
  71. { 0x20, 10 },{ 0xf, 10 },{ 0xe, 10 },{ 0x7, 11 },
  72. { 0x6, 11 },{ 0x20, 11 },{ 0x21, 11 },{ 0x50, 12 },
  73. { 0x51, 12 },{ 0x52, 12 },{ 0xe, 4 },{ 0x14, 6 },
  74. { 0x16, 7 },{ 0x1c, 8 },{ 0x20, 9 },{ 0x1f, 9 },
  75. { 0xd, 10 },{ 0x22, 11 },{ 0x53, 12 },{ 0x55, 12 },
  76. { 0xb, 5 },{ 0x15, 7 },{ 0x1e, 9 },{ 0xc, 10 },
  77. { 0x56, 12 },{ 0x11, 6 },{ 0x1b, 8 },{ 0x1d, 9 },
  78. { 0xb, 10 },{ 0x10, 6 },{ 0x22, 9 },{ 0xa, 10 },
  79. { 0xd, 6 },{ 0x1c, 9 },{ 0x8, 10 },{ 0x12, 7 },
  80. { 0x1b, 9 },{ 0x54, 12 },{ 0x14, 7 },{ 0x1a, 9 },
  81. { 0x57, 12 },{ 0x19, 8 },{ 0x9, 10 },{ 0x18, 8 },
  82. { 0x23, 11 },{ 0x17, 8 },{ 0x19, 9 },{ 0x18, 9 },
  83. { 0x7, 10 },{ 0x58, 12 },{ 0x7, 4 },{ 0xc, 6 },
  84. { 0x16, 8 },{ 0x17, 9 },{ 0x6, 10 },{ 0x5, 11 },
  85. { 0x4, 11 },{ 0x59, 12 },{ 0xf, 6 },{ 0x16, 9 },
  86. { 0x5, 10 },{ 0xe, 6 },{ 0x4, 10 },{ 0x11, 7 },
  87. { 0x24, 11 },{ 0x10, 7 },{ 0x25, 11 },{ 0x13, 7 },
  88. { 0x5a, 12 },{ 0x15, 8 },{ 0x5b, 12 },{ 0x14, 8 },
  89. { 0x13, 8 },{ 0x1a, 8 },{ 0x15, 9 },{ 0x14, 9 },
  90. { 0x13, 9 },{ 0x12, 9 },{ 0x11, 9 },{ 0x26, 11 },
  91. { 0x27, 11 },{ 0x5c, 12 },{ 0x5d, 12 },{ 0x5e, 12 },
  92. { 0x5f, 12 },{ 0x3, 7 },
  93. };
  94. const int8_t intra_level[102] = {
  95. 1, 2, 3, 4, 5, 6, 7, 8,
  96. 9, 10, 11, 12, 13, 14, 15, 16,
  97. 17, 18, 19, 20, 21, 22, 23, 24,
  98. 25, 26, 27, 1, 2, 3, 4, 5,
  99. 6, 7, 8, 9, 10, 1, 2, 3,
  100. 4, 5, 1, 2, 3, 4, 1, 2,
  101. 3, 1, 2, 3, 1, 2, 3, 1,
  102. 2, 3, 1, 2, 1, 2, 1, 1,
  103. 1, 1, 1, 1, 2, 3, 4, 5,
  104. 6, 7, 8, 1, 2, 3, 1, 2,
  105. 1, 2, 1, 2, 1, 2, 1, 2,
  106. 1, 1, 1, 1, 1, 1, 1, 1,
  107. 1, 1, 1, 1, 1, 1,
  108. };
  109. const int8_t intra_run[102] = {
  110. 0, 0, 0, 0, 0, 0, 0, 0,
  111. 0, 0, 0, 0, 0, 0, 0, 0,
  112. 0, 0, 0, 0, 0, 0, 0, 0,
  113. 0, 0, 0, 1, 1, 1, 1, 1,
  114. 1, 1, 1, 1, 1, 2, 2, 2,
  115. 2, 2, 3, 3, 3, 3, 4, 4,
  116. 4, 5, 5, 5, 6, 6, 6, 7,
  117. 7, 7, 8, 8, 9, 9, 10, 11,
  118. 12, 13, 14, 0, 0, 0, 0, 0,
  119. 0, 0, 0, 1, 1, 1, 2, 2,
  120. 3, 3, 4, 4, 5, 5, 6, 6,
  121. 7, 8, 9, 10, 11, 12, 13, 14,
  122. 15, 16, 17, 18, 19, 20,
  123. };
  124. static RLTable rl_intra = {
  125. 102,
  126. 67,
  127. intra_vlc,
  128. intra_run,
  129. intra_level,
  130. };
  131. static const uint16_t inter_rvlc[170][2]={ //note this is identical to the intra rvlc except that its reordered
  132. {0x0006, 3},{0x0001, 4},{0x0004, 5},{0x001C, 7},
  133. {0x003C, 8},{0x003D, 8},{0x007C, 9},{0x00FC, 10},
  134. {0x00FD, 10},{0x01FC, 11},{0x01FD, 11},{0x03FC, 12},
  135. {0x07FC, 13},{0x07FD, 13},{0x0BFC, 13},{0x0BFD, 13},
  136. {0x0FFC, 14},{0x0FFD, 14},{0x1FFC, 15},{0x0007, 3},
  137. {0x000C, 6},{0x005C, 8},{0x007D, 9},{0x017C, 10},
  138. {0x02FC, 11},{0x03FD, 12},{0x0DFC, 13},{0x17FC, 14},
  139. {0x17FD, 14},{0x000A, 4},{0x001D, 7},{0x00BC, 9},
  140. {0x02FD, 11},{0x05FC, 12},{0x1BFC, 14},{0x1BFD, 14},
  141. {0x0005, 5},{0x005D, 8},{0x017D, 10},{0x05FD, 12},
  142. {0x0DFD, 13},{0x1DFC, 14},{0x1FFD, 15},{0x0008, 5},
  143. {0x006C, 8},{0x037C, 11},{0x0EFC, 13},{0x2FFC, 15},
  144. {0x0009, 5},{0x00BD, 9},{0x037D, 11},{0x0EFD, 13},
  145. {0x000D, 6},{0x01BC, 10},{0x06FC, 12},{0x1DFD, 14},
  146. {0x0014, 6},{0x01BD, 10},{0x06FD, 12},{0x2FFD, 15},
  147. {0x0015, 6},{0x01DC, 10},{0x0F7C, 13},{0x002C, 7},
  148. {0x01DD, 10},{0x1EFC, 14},{0x002D, 7},{0x03BC, 11},
  149. {0x0034, 7},{0x077C, 12},{0x006D, 8},{0x0F7D, 13},
  150. {0x0074, 8},{0x1EFD, 14},{0x0075, 8},{0x1F7C, 14},
  151. {0x00DC, 9},{0x1F7D, 14},{0x00DD, 9},{0x1FBC, 14},
  152. {0x00EC, 9},{0x37FC, 15},{0x01EC, 10},{0x01ED, 10},
  153. {0x01F4, 10},{0x03BD, 11},{0x03DC, 11},{0x03DD, 11},
  154. {0x03EC, 11},{0x03ED, 11},{0x03F4, 11},{0x077D, 12},
  155. {0x07BC, 12},{0x07BD, 12},{0x0FBC, 13},{0x0FBD, 13},
  156. {0x0FDC, 13},{0x0FDD, 13},{0x1FBD, 14},{0x1FDC, 14},
  157. {0x1FDD, 14},{0x37FD, 15},{0x3BFC, 15},
  158. {0x000B, 4},{0x0078, 8},{0x03F5, 11},{0x0FEC, 13},
  159. {0x1FEC, 14},{0x0012, 5},{0x00ED, 9},{0x07DC, 12},
  160. {0x1FED, 14},{0x3BFD, 15},{0x0013, 5},{0x03F8, 11},
  161. {0x3DFC, 15},{0x0018, 6},{0x07DD, 12},{0x0019, 6},
  162. {0x07EC, 12},{0x0022, 6},{0x0FED, 13},{0x0023, 6},
  163. {0x0FF4, 13},{0x0035, 7},{0x0FF5, 13},{0x0038, 7},
  164. {0x0FF8, 13},{0x0039, 7},{0x0FF9, 13},{0x0042, 7},
  165. {0x1FF4, 14},{0x0043, 7},{0x1FF5, 14},{0x0079, 8},
  166. {0x1FF8, 14},{0x0082, 8},{0x3DFD, 15},{0x0083, 8},
  167. {0x00F4, 9},{0x00F5, 9},{0x00F8, 9},{0x00F9, 9},
  168. {0x0102, 9},{0x0103, 9},{0x01F5, 10},{0x01F8, 10},
  169. {0x01F9, 10},{0x0202, 10},{0x0203, 10},{0x03F9, 11},
  170. {0x0402, 11},{0x0403, 11},{0x07ED, 12},{0x07F4, 12},
  171. {0x07F5, 12},{0x07F8, 12},{0x07F9, 12},{0x0802, 12},
  172. {0x0803, 12},{0x1002, 13},{0x1003, 13},{0x1FF9, 14},
  173. {0x2002, 14},{0x2003, 14},{0x3EFC, 15},{0x3EFD, 15},
  174. {0x3F7C, 15},{0x3F7D, 15},{0x0000, 4}
  175. };
  176. static const int8_t inter_rvlc_run[169]={
  177. 0, 0, 0, 0, 0, 0, 0, 0,
  178. 0, 0, 0, 0, 0, 0, 0, 0,
  179. 0, 0, 0, 1, 1, 1, 1, 1,
  180. 1, 1, 1, 1, 1, 2, 2, 2,
  181. 2, 2, 2, 2, 3, 3, 3, 3,
  182. 3, 3, 3, 4, 4, 4, 4, 4,
  183. 5, 5, 5, 5, 6, 6, 6, 6,
  184. 7, 7, 7, 7, 8, 8, 8, 9,
  185. 9, 9, 10, 10, 11, 11, 12, 12,
  186. 13, 13, 14, 14, 15, 15, 16, 16,
  187. 17, 17, 18, 19, 20, 21, 22, 23,
  188. 24, 25, 26, 27, 28, 29, 30, 31,
  189. 32, 33, 34, 35, 36, 37, 38,
  190. 0, 0, 0, 0, 0, 1, 1, 1,
  191. 1, 1, 2, 2, 2, 3, 3, 4,
  192. 4, 5, 5, 6, 6, 7, 7, 8,
  193. 8, 9, 9, 10, 10, 11, 11, 12,
  194. 12, 13, 13, 14, 15, 16, 17, 18,
  195. 19, 20, 21, 22, 23, 24, 25, 26,
  196. 27, 28, 29, 30, 31, 32, 33, 34,
  197. 35, 36, 37, 38, 39, 40, 41, 42,
  198. 43, 44,
  199. };
  200. static const int8_t inter_rvlc_level[169]={
  201. 1, 2, 3, 4, 5, 6, 7, 8,
  202. 9, 10, 11, 12, 13, 14, 15, 16,
  203. 17, 18, 19, 1, 2, 3, 4, 5,
  204. 6, 7, 8, 9, 10, 1, 2, 3,
  205. 4, 5, 6, 7, 1, 2, 3, 4,
  206. 5, 6, 7, 1, 2, 3, 4, 5,
  207. 1, 2, 3, 4, 1, 2, 3, 4,
  208. 1, 2, 3, 4, 1, 2, 3, 1,
  209. 2, 3, 1, 2, 1, 2, 1, 2,
  210. 1, 2, 1, 2, 1, 2, 1, 2,
  211. 1, 2, 1, 1, 1, 1, 1, 1,
  212. 1, 1, 1, 1, 1, 1, 1, 1,
  213. 1, 1, 1, 1, 1, 1, 1,
  214. 1, 2, 3, 4, 5, 1, 2, 3,
  215. 4, 5, 1, 2, 3, 1, 2, 1,
  216. 2, 1, 2, 1, 2, 1, 2, 1,
  217. 2, 1, 2, 1, 2, 1, 2, 1,
  218. 2, 1, 2, 1, 1, 1, 1, 1,
  219. 1, 1, 1, 1, 1, 1, 1, 1,
  220. 1, 1, 1, 1, 1, 1, 1, 1,
  221. 1, 1, 1, 1, 1, 1, 1, 1,
  222. 1, 1,
  223. };
  224. static RLTable rvlc_rl_inter = {
  225. 169,
  226. 103,
  227. inter_rvlc,
  228. inter_rvlc_run,
  229. inter_rvlc_level,
  230. };
  231. static const uint16_t intra_rvlc[170][2]={
  232. {0x0006, 3},{0x0007, 3},{0x000A, 4},{0x0009, 5},
  233. {0x0014, 6},{0x0015, 6},{0x0034, 7},{0x0074, 8},
  234. {0x0075, 8},{0x00DD, 9},{0x00EC, 9},{0x01EC, 10},
  235. {0x01ED, 10},{0x01F4, 10},{0x03EC, 11},{0x03ED, 11},
  236. {0x03F4, 11},{0x077D, 12},{0x07BC, 12},{0x0FBD, 13},
  237. {0x0FDC, 13},{0x07BD, 12},{0x0FDD, 13},{0x1FBD, 14},
  238. {0x1FDC, 14},{0x1FDD, 14},{0x1FFC, 15},{0x0001, 4},
  239. {0x0008, 5},{0x002D, 7},{0x006C, 8},{0x006D, 8},
  240. {0x00DC, 9},{0x01DD, 10},{0x03DC, 11},{0x03DD, 11},
  241. {0x077C, 12},{0x0FBC, 13},{0x1F7D, 14},{0x1FBC, 14},
  242. {0x0004, 5},{0x002C, 7},{0x00BC, 9},{0x01DC, 10},
  243. {0x03BC, 11},{0x03BD, 11},{0x0EFD, 13},{0x0F7C, 13},
  244. {0x0F7D, 13},{0x1EFD, 14},{0x1F7C, 14},{0x0005, 5},
  245. {0x005C, 8},{0x00BD, 9},{0x037D, 11},{0x06FC, 12},
  246. {0x0EFC, 13},{0x1DFD, 14},{0x1EFC, 14},{0x1FFD, 15},
  247. {0x000C, 6},{0x005D, 8},{0x01BD, 10},{0x03FD, 12},
  248. {0x06FD, 12},{0x1BFD, 14},{0x000D, 6},{0x007D, 9},
  249. {0x02FC, 11},{0x05FC, 12},{0x1BFC, 14},{0x1DFC, 14},
  250. {0x001C, 7},{0x017C, 10},{0x02FD, 11},{0x05FD, 12},
  251. {0x2FFC, 15},{0x001D, 7},{0x017D, 10},{0x037C, 11},
  252. {0x0DFD, 13},{0x2FFD, 15},{0x003C, 8},{0x01BC, 10},
  253. {0x0BFD, 13},{0x17FD, 14},{0x003D, 8},{0x01FD, 11},
  254. {0x0DFC, 13},{0x37FC, 15},{0x007C, 9},{0x03FC, 12},
  255. {0x00FC, 10},{0x0BFC, 13},{0x00FD, 10},{0x37FD, 15},
  256. {0x01FC, 11},{0x07FC, 13},{0x07FD, 13},{0x0FFC, 14},
  257. {0x0FFD, 14},{0x17FC, 14},{0x3BFC, 15},
  258. {0x000B, 4},{0x0078, 8},{0x03F5, 11},{0x0FEC, 13},
  259. {0x1FEC, 14},{0x0012, 5},{0x00ED, 9},{0x07DC, 12},
  260. {0x1FED, 14},{0x3BFD, 15},{0x0013, 5},{0x03F8, 11},
  261. {0x3DFC, 15},{0x0018, 6},{0x07DD, 12},{0x0019, 6},
  262. {0x07EC, 12},{0x0022, 6},{0x0FED, 13},{0x0023, 6},
  263. {0x0FF4, 13},{0x0035, 7},{0x0FF5, 13},{0x0038, 7},
  264. {0x0FF8, 13},{0x0039, 7},{0x0FF9, 13},{0x0042, 7},
  265. {0x1FF4, 14},{0x0043, 7},{0x1FF5, 14},{0x0079, 8},
  266. {0x1FF8, 14},{0x0082, 8},{0x3DFD, 15},{0x0083, 8},
  267. {0x00F4, 9},{0x00F5, 9},{0x00F8, 9},{0x00F9, 9},
  268. {0x0102, 9},{0x0103, 9},{0x01F5, 10},{0x01F8, 10},
  269. {0x01F9, 10},{0x0202, 10},{0x0203, 10},{0x03F9, 11},
  270. {0x0402, 11},{0x0403, 11},{0x07ED, 12},{0x07F4, 12},
  271. {0x07F5, 12},{0x07F8, 12},{0x07F9, 12},{0x0802, 12},
  272. {0x0803, 12},{0x1002, 13},{0x1003, 13},{0x1FF9, 14},
  273. {0x2002, 14},{0x2003, 14},{0x3EFC, 15},{0x3EFD, 15},
  274. {0x3F7C, 15},{0x3F7D, 15},{0x0000, 4}
  275. };
  276. static const int8_t intra_rvlc_run[169]={
  277. 0, 0, 0, 0, 0, 0, 0, 0,
  278. 0, 0, 0, 0, 0, 0, 0, 0,
  279. 0, 0, 0, 0, 0, 0, 0, 0,
  280. 0, 0, 0, 1, 1, 1, 1, 1,
  281. 1, 1, 1, 1, 1, 1, 1, 1,
  282. 2, 2, 2, 2, 2, 2, 2, 2,
  283. 2, 2, 2, 3, 3, 3, 3, 3,
  284. 3, 3, 3, 3, 4, 4, 4, 4,
  285. 4, 4, 5, 5, 5, 5, 5, 5,
  286. 6, 6, 6, 6, 6, 7, 7, 7,
  287. 7, 7, 8, 8, 8, 8, 9, 9,
  288. 9, 9, 10, 10, 11, 11, 12, 12,
  289. 13, 14, 15, 16, 17, 18, 19,
  290. 0, 0, 0, 0, 0, 1, 1, 1,
  291. 1, 1, 2, 2, 2, 3, 3, 4,
  292. 4, 5, 5, 6, 6, 7, 7, 8,
  293. 8, 9, 9, 10, 10, 11, 11, 12,
  294. 12, 13, 13, 14, 15, 16, 17, 18,
  295. 19, 20, 21, 22, 23, 24, 25, 26,
  296. 27, 28, 29, 30, 31, 32, 33, 34,
  297. 35, 36, 37, 38, 39, 40, 41, 42,
  298. 43, 44,
  299. };
  300. static const int8_t intra_rvlc_level[169]={
  301. 1, 2, 3, 4, 5, 6, 7, 8,
  302. 9, 10, 11, 12, 13, 14, 15, 16,
  303. 17, 18, 19, 20, 21, 22, 23, 24,
  304. 25, 26, 27, 1, 2, 3, 4, 5,
  305. 6, 7, 8, 9, 10, 11, 12, 13,
  306. 1, 2, 3, 4, 5, 6, 7, 8,
  307. 9, 10, 11, 1, 2, 3, 4, 5,
  308. 6, 7, 8, 9, 1, 2, 3, 4,
  309. 5, 6, 1, 2, 3, 4, 5, 6,
  310. 1, 2, 3, 4, 5, 1, 2, 3,
  311. 4, 5, 1, 2, 3, 4, 1, 2,
  312. 3, 4, 1, 2, 1, 2, 1, 2,
  313. 1, 1, 1, 1, 1, 1, 1,
  314. 1, 2, 3, 4, 5, 1, 2, 3,
  315. 4, 5, 1, 2, 3, 1, 2, 1,
  316. 2, 1, 2, 1, 2, 1, 2, 1,
  317. 2, 1, 2, 1, 2, 1, 2, 1,
  318. 2, 1, 2, 1, 1, 1, 1, 1,
  319. 1, 1, 1, 1, 1, 1, 1, 1,
  320. 1, 1, 1, 1, 1, 1, 1, 1,
  321. 1, 1, 1, 1, 1, 1, 1, 1,
  322. 1, 1,
  323. };
  324. static RLTable rvlc_rl_intra = {
  325. 169,
  326. 103,
  327. intra_rvlc,
  328. intra_rvlc_run,
  329. intra_rvlc_level,
  330. };
  331. static const uint16_t sprite_trajectory_tab[15][2] = {
  332. {0x00, 2}, {0x02, 3}, {0x03, 3}, {0x04, 3}, {0x05, 3}, {0x06, 3},
  333. {0x0E, 4}, {0x1E, 5}, {0x3E, 6}, {0x7E, 7}, {0xFE, 8},
  334. {0x1FE, 9},{0x3FE, 10},{0x7FE, 11},{0xFFE, 12},
  335. };
  336. static const uint8_t mb_type_b_tab[4][2] = {
  337. {1, 1}, {1, 2}, {1, 3}, {1, 4},
  338. };
  339. static const AVRational pixel_aspect[16]={
  340. {0, 1},
  341. {1, 1},
  342. {12, 11},
  343. {10, 11},
  344. {16, 11},
  345. {40, 33},
  346. {0, 1},
  347. {0, 1},
  348. {0, 1},
  349. {0, 1},
  350. {0, 1},
  351. {0, 1},
  352. {0, 1},
  353. {0, 1},
  354. {0, 1},
  355. {0, 1},
  356. };
  357. /* these matrixes will be permuted for the idct */
  358. const int16_t ff_mpeg4_default_intra_matrix[64] = {
  359. 8, 17, 18, 19, 21, 23, 25, 27,
  360. 17, 18, 19, 21, 23, 25, 27, 28,
  361. 20, 21, 22, 23, 24, 26, 28, 30,
  362. 21, 22, 23, 24, 26, 28, 30, 32,
  363. 22, 23, 24, 26, 28, 30, 32, 35,
  364. 23, 24, 26, 28, 30, 32, 35, 38,
  365. 25, 26, 28, 30, 32, 35, 38, 41,
  366. 27, 28, 30, 32, 35, 38, 41, 45,
  367. };
  368. const int16_t ff_mpeg4_default_non_intra_matrix[64] = {
  369. 16, 17, 18, 19, 20, 21, 22, 23,
  370. 17, 18, 19, 20, 21, 22, 23, 24,
  371. 18, 19, 20, 21, 22, 23, 24, 25,
  372. 19, 20, 21, 22, 23, 24, 26, 27,
  373. 20, 21, 22, 23, 25, 26, 27, 28,
  374. 21, 22, 23, 24, 26, 27, 28, 30,
  375. 22, 23, 24, 26, 27, 28, 30, 31,
  376. 23, 24, 25, 27, 28, 30, 31, 33,
  377. };
  378. const uint8_t ff_mpeg4_y_dc_scale_table[32]={
  379. // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  380. 0, 8, 8, 8, 8,10,12,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,36,38,40,42,44,46
  381. };
  382. const uint8_t ff_mpeg4_c_dc_scale_table[32]={
  383. // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  384. 0, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,20,21,22,23,24,25
  385. };
  386. const uint16_t ff_mpeg4_resync_prefix[8]={
  387. 0x7F00, 0x7E00, 0x7C00, 0x7800, 0x7000, 0x6000, 0x4000, 0x0000
  388. };
  389. static const uint8_t mpeg4_dc_threshold[8]={
  390. 99, 13, 15, 17, 19, 21, 23, 0
  391. };