mpeg4data.h 14 KB

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