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.

1375 lines
52KB

  1. /*
  2. * DSP utils
  3. * Copyright (c) 2000, 2001 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. * gmc & q-pel & 32/64 bit based MC by Michael Niedermayer <michaelni@gmx.at>
  20. */
  21. #include "avcodec.h"
  22. #include "dsputil.h"
  23. #include "simple_idct.h"
  24. void (*ff_idct)(DCTELEM *block);
  25. void (*ff_idct_put)(UINT8 *dest, int line_size, DCTELEM *block);
  26. void (*ff_idct_add)(UINT8 *dest, int line_size, DCTELEM *block);
  27. void (*av_fdct)(DCTELEM *block);
  28. void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size);
  29. void (*diff_pixels)(DCTELEM *block, const UINT8 *s1, const UINT8 *s2, int stride);
  30. void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
  31. void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
  32. void (*gmc1)(UINT8 *dst, UINT8 *src, int srcStride, int h, int x16, int y16, int rounder);
  33. void (*clear_blocks)(DCTELEM *blocks);
  34. op_pixels_abs_func pix_abs16x16;
  35. op_pixels_abs_func pix_abs16x16_x2;
  36. op_pixels_abs_func pix_abs16x16_y2;
  37. op_pixels_abs_func pix_abs16x16_xy2;
  38. op_pixels_abs_func pix_abs8x8;
  39. op_pixels_abs_func pix_abs8x8_x2;
  40. op_pixels_abs_func pix_abs8x8_y2;
  41. op_pixels_abs_func pix_abs8x8_xy2;
  42. UINT8 cropTbl[256 + 2 * MAX_NEG_CROP];
  43. UINT32 squareTbl[512];
  44. extern INT16 ff_mpeg1_default_intra_matrix[64];
  45. extern INT16 ff_mpeg1_default_non_intra_matrix[64];
  46. extern INT16 ff_mpeg4_default_intra_matrix[64];
  47. extern INT16 ff_mpeg4_default_non_intra_matrix[64];
  48. UINT8 zigzag_direct[64] = {
  49. 0, 1, 8, 16, 9, 2, 3, 10,
  50. 17, 24, 32, 25, 18, 11, 4, 5,
  51. 12, 19, 26, 33, 40, 48, 41, 34,
  52. 27, 20, 13, 6, 7, 14, 21, 28,
  53. 35, 42, 49, 56, 57, 50, 43, 36,
  54. 29, 22, 15, 23, 30, 37, 44, 51,
  55. 58, 59, 52, 45, 38, 31, 39, 46,
  56. 53, 60, 61, 54, 47, 55, 62, 63
  57. };
  58. /* not permutated inverse zigzag_direct + 1 for MMX quantizer */
  59. UINT16 __align8 inv_zigzag_direct16[64];
  60. /* not permutated zigzag_direct for MMX quantizer */
  61. UINT8 zigzag_direct_noperm[64];
  62. UINT8 ff_alternate_horizontal_scan[64] = {
  63. 0, 1, 2, 3, 8, 9, 16, 17,
  64. 10, 11, 4, 5, 6, 7, 15, 14,
  65. 13, 12, 19, 18, 24, 25, 32, 33,
  66. 26, 27, 20, 21, 22, 23, 28, 29,
  67. 30, 31, 34, 35, 40, 41, 48, 49,
  68. 42, 43, 36, 37, 38, 39, 44, 45,
  69. 46, 47, 50, 51, 56, 57, 58, 59,
  70. 52, 53, 54, 55, 60, 61, 62, 63,
  71. };
  72. UINT8 ff_alternate_vertical_scan[64] = {
  73. 0, 8, 16, 24, 1, 9, 2, 10,
  74. 17, 25, 32, 40, 48, 56, 57, 49,
  75. 41, 33, 26, 18, 3, 11, 4, 12,
  76. 19, 27, 34, 42, 50, 58, 35, 43,
  77. 51, 59, 20, 28, 5, 13, 6, 14,
  78. 21, 29, 36, 44, 52, 60, 37, 45,
  79. 53, 61, 22, 30, 7, 15, 23, 31,
  80. 38, 46, 54, 62, 39, 47, 55, 63,
  81. };
  82. #ifdef SIMPLE_IDCT
  83. /* Input permutation for the simple_idct_mmx */
  84. static UINT8 simple_mmx_permutation[64]={
  85. 0x00, 0x08, 0x04, 0x09, 0x01, 0x0C, 0x05, 0x0D,
  86. 0x10, 0x18, 0x14, 0x19, 0x11, 0x1C, 0x15, 0x1D,
  87. 0x20, 0x28, 0x24, 0x29, 0x21, 0x2C, 0x25, 0x2D,
  88. 0x12, 0x1A, 0x16, 0x1B, 0x13, 0x1E, 0x17, 0x1F,
  89. 0x02, 0x0A, 0x06, 0x0B, 0x03, 0x0E, 0x07, 0x0F,
  90. 0x30, 0x38, 0x34, 0x39, 0x31, 0x3C, 0x35, 0x3D,
  91. 0x22, 0x2A, 0x26, 0x2B, 0x23, 0x2E, 0x27, 0x2F,
  92. 0x32, 0x3A, 0x36, 0x3B, 0x33, 0x3E, 0x37, 0x3F,
  93. };
  94. #endif
  95. /* a*inverse[b]>>32 == a/b for all 0<=a<=65536 && 2<=b<=255 */
  96. UINT32 inverse[256]={
  97. 0, 4294967295U,2147483648U,1431655766, 1073741824, 858993460, 715827883, 613566757,
  98. 536870912, 477218589, 429496730, 390451573, 357913942, 330382100, 306783379, 286331154,
  99. 268435456, 252645136, 238609295, 226050911, 214748365, 204522253, 195225787, 186737709,
  100. 178956971, 171798692, 165191050, 159072863, 153391690, 148102321, 143165577, 138547333,
  101. 134217728, 130150525, 126322568, 122713352, 119304648, 116080198, 113025456, 110127367,
  102. 107374183, 104755300, 102261127, 99882961, 97612894, 95443718, 93368855, 91382283,
  103. 89478486, 87652394, 85899346, 84215046, 82595525, 81037119, 79536432, 78090315,
  104. 76695845, 75350304, 74051161, 72796056, 71582789, 70409300, 69273667, 68174085,
  105. 67108864, 66076420, 65075263, 64103990, 63161284, 62245903, 61356676, 60492498,
  106. 59652324, 58835169, 58040099, 57266231, 56512728, 55778797, 55063684, 54366675,
  107. 53687092, 53024288, 52377650, 51746594, 51130564, 50529028, 49941481, 49367441,
  108. 48806447, 48258060, 47721859, 47197443, 46684428, 46182445, 45691142, 45210183,
  109. 44739243, 44278014, 43826197, 43383509, 42949673, 42524429, 42107523, 41698712,
  110. 41297763, 40904451, 40518560, 40139882, 39768216, 39403370, 39045158, 38693400,
  111. 38347923, 38008561, 37675152, 37347542, 37025581, 36709123, 36398028, 36092163,
  112. 35791395, 35495598, 35204650, 34918434, 34636834, 34359739, 34087043, 33818641,
  113. 33554432, 33294321, 33038210, 32786010, 32537632, 32292988, 32051995, 31814573,
  114. 31580642, 31350127, 31122952, 30899046, 30678338, 30460761, 30246249, 30034737,
  115. 29826162, 29620465, 29417585, 29217465, 29020050, 28825284, 28633116, 28443493,
  116. 28256364, 28071682, 27889399, 27709467, 27531842, 27356480, 27183338, 27012373,
  117. 26843546, 26676816, 26512144, 26349493, 26188825, 26030105, 25873297, 25718368,
  118. 25565282, 25414008, 25264514, 25116768, 24970741, 24826401, 24683721, 24542671,
  119. 24403224, 24265352, 24129030, 23994231, 23860930, 23729102, 23598722, 23469767,
  120. 23342214, 23216040, 23091223, 22967740, 22845571, 22724695, 22605092, 22486740,
  121. 22369622, 22253717, 22139007, 22025474, 21913099, 21801865, 21691755, 21582751,
  122. 21474837, 21367997, 21262215, 21157475, 21053762, 20951060, 20849356, 20748635,
  123. 20648882, 20550083, 20452226, 20355296, 20259280, 20164166, 20069941, 19976593,
  124. 19884108, 19792477, 19701685, 19611723, 19522579, 19434242, 19346700, 19259944,
  125. 19173962, 19088744, 19004281, 18920561, 18837576, 18755316, 18673771, 18592933,
  126. 18512791, 18433337, 18354562, 18276457, 18199014, 18122225, 18046082, 17970575,
  127. 17895698, 17821442, 17747799, 17674763, 17602325, 17530479, 17459217, 17388532,
  128. 17318417, 17248865, 17179870, 17111424, 17043522, 16976156, 16909321, 16843010,
  129. };
  130. /* used to skip zeros at the end */
  131. UINT8 zigzag_end[64];
  132. UINT8 permutation[64];
  133. //UINT8 invPermutation[64];
  134. static void build_zigzag_end(void)
  135. {
  136. int lastIndex;
  137. int lastIndexAfterPerm=0;
  138. for(lastIndex=0; lastIndex<64; lastIndex++)
  139. {
  140. if(zigzag_direct[lastIndex] > lastIndexAfterPerm)
  141. lastIndexAfterPerm= zigzag_direct[lastIndex];
  142. zigzag_end[lastIndex]= lastIndexAfterPerm + 1;
  143. }
  144. }
  145. void get_pixels_c(DCTELEM *restrict block, const UINT8 *pixels, int line_size)
  146. {
  147. int i;
  148. /* read the pixels */
  149. for(i=0;i<8;i++) {
  150. block[0] = pixels[0];
  151. block[1] = pixels[1];
  152. block[2] = pixels[2];
  153. block[3] = pixels[3];
  154. block[4] = pixels[4];
  155. block[5] = pixels[5];
  156. block[6] = pixels[6];
  157. block[7] = pixels[7];
  158. pixels += line_size;
  159. block += 8;
  160. }
  161. }
  162. void diff_pixels_c(DCTELEM *restrict block, const UINT8 *s1, const UINT8 *s2,
  163. int stride){
  164. int i;
  165. /* read the pixels */
  166. for(i=0;i<8;i++) {
  167. block[0] = s1[0] - s2[0];
  168. block[1] = s1[1] - s2[1];
  169. block[2] = s1[2] - s2[2];
  170. block[3] = s1[3] - s2[3];
  171. block[4] = s1[4] - s2[4];
  172. block[5] = s1[5] - s2[5];
  173. block[6] = s1[6] - s2[6];
  174. block[7] = s1[7] - s2[7];
  175. s1 += stride;
  176. s2 += stride;
  177. block += 8;
  178. }
  179. }
  180. void put_pixels_clamped_c(const DCTELEM *block, UINT8 *restrict pixels,
  181. int line_size)
  182. {
  183. int i;
  184. UINT8 *cm = cropTbl + MAX_NEG_CROP;
  185. /* read the pixels */
  186. for(i=0;i<8;i++) {
  187. pixels[0] = cm[block[0]];
  188. pixels[1] = cm[block[1]];
  189. pixels[2] = cm[block[2]];
  190. pixels[3] = cm[block[3]];
  191. pixels[4] = cm[block[4]];
  192. pixels[5] = cm[block[5]];
  193. pixels[6] = cm[block[6]];
  194. pixels[7] = cm[block[7]];
  195. pixels += line_size;
  196. block += 8;
  197. }
  198. }
  199. void add_pixels_clamped_c(const DCTELEM *block, UINT8 *restrict pixels,
  200. int line_size)
  201. {
  202. int i;
  203. UINT8 *cm = cropTbl + MAX_NEG_CROP;
  204. /* read the pixels */
  205. for(i=0;i<8;i++) {
  206. pixels[0] = cm[pixels[0] + block[0]];
  207. pixels[1] = cm[pixels[1] + block[1]];
  208. pixels[2] = cm[pixels[2] + block[2]];
  209. pixels[3] = cm[pixels[3] + block[3]];
  210. pixels[4] = cm[pixels[4] + block[4]];
  211. pixels[5] = cm[pixels[5] + block[5]];
  212. pixels[6] = cm[pixels[6] + block[6]];
  213. pixels[7] = cm[pixels[7] + block[7]];
  214. pixels += line_size;
  215. block += 8;
  216. }
  217. }
  218. #if 0
  219. #define PIXOP2(OPNAME, OP) \
  220. void OPNAME ## _pixels(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  221. {\
  222. int i;\
  223. for(i=0; i<h; i++){\
  224. OP(*((uint64_t*)block), LD64(pixels));\
  225. pixels+=line_size;\
  226. block +=line_size;\
  227. }\
  228. }\
  229. \
  230. void OPNAME ## _no_rnd_pixels_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  231. {\
  232. int i;\
  233. for(i=0; i<h; i++){\
  234. const uint64_t a= LD64(pixels );\
  235. const uint64_t b= LD64(pixels+1);\
  236. OP(*((uint64_t*)block), (a&b) + (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));\
  237. pixels+=line_size;\
  238. block +=line_size;\
  239. }\
  240. }\
  241. \
  242. void OPNAME ## _pixels_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  243. {\
  244. int i;\
  245. for(i=0; i<h; i++){\
  246. const uint64_t a= LD64(pixels );\
  247. const uint64_t b= LD64(pixels+1);\
  248. OP(*((uint64_t*)block), (a|b) - (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));\
  249. pixels+=line_size;\
  250. block +=line_size;\
  251. }\
  252. }\
  253. \
  254. void OPNAME ## _no_rnd_pixels_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  255. {\
  256. int i;\
  257. for(i=0; i<h; i++){\
  258. const uint64_t a= LD64(pixels );\
  259. const uint64_t b= LD64(pixels+line_size);\
  260. OP(*((uint64_t*)block), (a&b) + (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));\
  261. pixels+=line_size;\
  262. block +=line_size;\
  263. }\
  264. }\
  265. \
  266. void OPNAME ## _pixels_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  267. {\
  268. int i;\
  269. for(i=0; i<h; i++){\
  270. const uint64_t a= LD64(pixels );\
  271. const uint64_t b= LD64(pixels+line_size);\
  272. OP(*((uint64_t*)block), (a|b) - (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));\
  273. pixels+=line_size;\
  274. block +=line_size;\
  275. }\
  276. }\
  277. \
  278. void OPNAME ## _pixels_xy2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  279. {\
  280. int i;\
  281. const uint64_t a= LD64(pixels );\
  282. const uint64_t b= LD64(pixels+1);\
  283. uint64_t l0= (a&0x0303030303030303ULL)\
  284. + (b&0x0303030303030303ULL)\
  285. + 0x0202020202020202ULL;\
  286. uint64_t h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)\
  287. + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);\
  288. uint64_t l1,h1;\
  289. \
  290. pixels+=line_size;\
  291. for(i=0; i<h; i+=2){\
  292. uint64_t a= LD64(pixels );\
  293. uint64_t b= LD64(pixels+1);\
  294. l1= (a&0x0303030303030303ULL)\
  295. + (b&0x0303030303030303ULL);\
  296. h1= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)\
  297. + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);\
  298. OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));\
  299. pixels+=line_size;\
  300. block +=line_size;\
  301. a= LD64(pixels );\
  302. b= LD64(pixels+1);\
  303. l0= (a&0x0303030303030303ULL)\
  304. + (b&0x0303030303030303ULL)\
  305. + 0x0202020202020202ULL;\
  306. h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)\
  307. + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);\
  308. OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));\
  309. pixels+=line_size;\
  310. block +=line_size;\
  311. }\
  312. }\
  313. \
  314. void OPNAME ## _no_rnd_pixels_xy2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  315. {\
  316. int i;\
  317. const uint64_t a= LD64(pixels );\
  318. const uint64_t b= LD64(pixels+1);\
  319. uint64_t l0= (a&0x0303030303030303ULL)\
  320. + (b&0x0303030303030303ULL)\
  321. + 0x0101010101010101ULL;\
  322. uint64_t h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)\
  323. + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);\
  324. uint64_t l1,h1;\
  325. \
  326. pixels+=line_size;\
  327. for(i=0; i<h; i+=2){\
  328. uint64_t a= LD64(pixels );\
  329. uint64_t b= LD64(pixels+1);\
  330. l1= (a&0x0303030303030303ULL)\
  331. + (b&0x0303030303030303ULL);\
  332. h1= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)\
  333. + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);\
  334. OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));\
  335. pixels+=line_size;\
  336. block +=line_size;\
  337. a= LD64(pixels );\
  338. b= LD64(pixels+1);\
  339. l0= (a&0x0303030303030303ULL)\
  340. + (b&0x0303030303030303ULL)\
  341. + 0x0101010101010101ULL;\
  342. h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)\
  343. + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);\
  344. OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));\
  345. pixels+=line_size;\
  346. block +=line_size;\
  347. }\
  348. }\
  349. \
  350. void (*OPNAME ## _pixels_tab[4])(uint8_t *block, const uint8_t *pixels, int line_size, int h) = {\
  351. OPNAME ## _pixels,\
  352. OPNAME ## _pixels_x2,\
  353. OPNAME ## _pixels_y2,\
  354. OPNAME ## _pixels_xy2,\
  355. };\
  356. \
  357. void (*OPNAME ## _no_rnd_pixels_tab[4])(uint8_t *block, const uint8_t *pixels, int line_size, int h) = {\
  358. OPNAME ## _pixels,\
  359. OPNAME ## _no_rnd_pixels_x2,\
  360. OPNAME ## _no_rnd_pixels_y2,\
  361. OPNAME ## _no_rnd_pixels_xy2,\
  362. };
  363. #define op_avg(a, b) a = ( ((a)|(b)) - ((((a)^(b))&0xFEFEFEFEFEFEFEFEULL)>>1) )
  364. #else // 64 bit variant
  365. #define PIXOP2(OPNAME, OP) \
  366. void OPNAME ## _pixels(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  367. {\
  368. int i;\
  369. for(i=0; i<h; i++){\
  370. OP(*((uint32_t*)(block )), LD32(pixels ));\
  371. OP(*((uint32_t*)(block+4)), LD32(pixels+4));\
  372. pixels+=line_size;\
  373. block +=line_size;\
  374. }\
  375. }\
  376. \
  377. void OPNAME ## _no_rnd_pixels_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  378. {\
  379. int i;\
  380. for(i=0; i<h; i++){\
  381. int j;\
  382. for(j=0; j<2; j++){\
  383. const uint32_t a= LD32(pixels );\
  384. const uint32_t b= LD32(pixels+1);\
  385. OP(*((uint32_t*)block), (a&b) + (((a^b)&0xFEFEFEFEUL)>>1));\
  386. pixels+=4;\
  387. block +=4;\
  388. }\
  389. pixels+=line_size-8;\
  390. block +=line_size-8;\
  391. }\
  392. }\
  393. \
  394. void OPNAME ## _pixels_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  395. {\
  396. int i;\
  397. for(i=0; i<h; i++){\
  398. int j;\
  399. for(j=0; j<2; j++){\
  400. const uint32_t a= LD32(pixels );\
  401. const uint32_t b= LD32(pixels+1);\
  402. OP(*((uint32_t*)block), (a|b) - (((a^b)&0xFEFEFEFEUL)>>1));\
  403. pixels+=4;\
  404. block +=4;\
  405. }\
  406. pixels+=line_size-8;\
  407. block +=line_size-8;\
  408. }\
  409. }\
  410. \
  411. void OPNAME ## _no_rnd_pixels_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  412. {\
  413. int i;\
  414. for(i=0; i<h; i++){\
  415. int j;\
  416. for(j=0; j<2; j++){\
  417. const uint32_t a= LD32(pixels );\
  418. const uint32_t b= LD32(pixels+line_size);\
  419. OP(*((uint32_t*)block), (a&b) + (((a^b)&0xFEFEFEFEUL)>>1));\
  420. pixels+=4;\
  421. block +=4;\
  422. }\
  423. pixels+=line_size-8;\
  424. block +=line_size-8;\
  425. }\
  426. }\
  427. \
  428. void OPNAME ## _pixels_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  429. {\
  430. int i;\
  431. for(i=0; i<h; i++){\
  432. int j;\
  433. for(j=0; j<2; j++){\
  434. const uint32_t a= LD32(pixels );\
  435. const uint32_t b= LD32(pixels+line_size);\
  436. OP(*((uint32_t*)block), (a|b) - (((a^b)&0xFEFEFEFEUL)>>1));\
  437. pixels+=4;\
  438. block +=4;\
  439. }\
  440. pixels+=line_size-8;\
  441. block +=line_size-8;\
  442. }\
  443. }\
  444. \
  445. void OPNAME ## _pixels_xy2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  446. {\
  447. int j;\
  448. for(j=0; j<2; j++){\
  449. int i;\
  450. const uint32_t a= LD32(pixels );\
  451. const uint32_t b= LD32(pixels+1);\
  452. uint32_t l0= (a&0x03030303UL)\
  453. + (b&0x03030303UL)\
  454. + 0x02020202UL;\
  455. uint32_t h0= ((a&0xFCFCFCFCUL)>>2)\
  456. + ((b&0xFCFCFCFCUL)>>2);\
  457. uint32_t l1,h1;\
  458. \
  459. pixels+=line_size;\
  460. for(i=0; i<h; i+=2){\
  461. uint32_t a= LD32(pixels );\
  462. uint32_t b= LD32(pixels+1);\
  463. l1= (a&0x03030303UL)\
  464. + (b&0x03030303UL);\
  465. h1= ((a&0xFCFCFCFCUL)>>2)\
  466. + ((b&0xFCFCFCFCUL)>>2);\
  467. OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
  468. pixels+=line_size;\
  469. block +=line_size;\
  470. a= LD32(pixels );\
  471. b= LD32(pixels+1);\
  472. l0= (a&0x03030303UL)\
  473. + (b&0x03030303UL)\
  474. + 0x02020202UL;\
  475. h0= ((a&0xFCFCFCFCUL)>>2)\
  476. + ((b&0xFCFCFCFCUL)>>2);\
  477. OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
  478. pixels+=line_size;\
  479. block +=line_size;\
  480. }\
  481. pixels+=4-line_size*(h+1);\
  482. block +=4-line_size*h;\
  483. }\
  484. }\
  485. \
  486. void OPNAME ## _no_rnd_pixels_xy2(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
  487. {\
  488. int j;\
  489. for(j=0; j<2; j++){\
  490. int i;\
  491. const uint32_t a= LD32(pixels );\
  492. const uint32_t b= LD32(pixels+1);\
  493. uint32_t l0= (a&0x03030303UL)\
  494. + (b&0x03030303UL)\
  495. + 0x01010101UL;\
  496. uint32_t h0= ((a&0xFCFCFCFCUL)>>2)\
  497. + ((b&0xFCFCFCFCUL)>>2);\
  498. uint32_t l1,h1;\
  499. \
  500. pixels+=line_size;\
  501. for(i=0; i<h; i+=2){\
  502. uint32_t a= LD32(pixels );\
  503. uint32_t b= LD32(pixels+1);\
  504. l1= (a&0x03030303UL)\
  505. + (b&0x03030303UL);\
  506. h1= ((a&0xFCFCFCFCUL)>>2)\
  507. + ((b&0xFCFCFCFCUL)>>2);\
  508. OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
  509. pixels+=line_size;\
  510. block +=line_size;\
  511. a= LD32(pixels );\
  512. b= LD32(pixels+1);\
  513. l0= (a&0x03030303UL)\
  514. + (b&0x03030303UL)\
  515. + 0x01010101UL;\
  516. h0= ((a&0xFCFCFCFCUL)>>2)\
  517. + ((b&0xFCFCFCFCUL)>>2);\
  518. OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
  519. pixels+=line_size;\
  520. block +=line_size;\
  521. }\
  522. pixels+=4-line_size*(h+1);\
  523. block +=4-line_size*h;\
  524. }\
  525. }\
  526. \
  527. void (*OPNAME ## _pixels_tab[4])(uint8_t *block, const uint8_t *pixels, int line_size, int h) = {\
  528. OPNAME ## _pixels,\
  529. OPNAME ## _pixels_x2,\
  530. OPNAME ## _pixels_y2,\
  531. OPNAME ## _pixels_xy2,\
  532. };\
  533. \
  534. void (*OPNAME ## _no_rnd_pixels_tab[4])(uint8_t *block, const uint8_t *pixels, int line_size, int h) = {\
  535. OPNAME ## _pixels,\
  536. OPNAME ## _no_rnd_pixels_x2,\
  537. OPNAME ## _no_rnd_pixels_y2,\
  538. OPNAME ## _no_rnd_pixels_xy2,\
  539. };
  540. #define op_avg(a, b) a = ( ((a)|(b)) - ((((a)^(b))&0xFEFEFEFEUL)>>1) )
  541. #endif
  542. #define op_put(a, b) a = b
  543. PIXOP2(avg, op_avg)
  544. PIXOP2(put, op_put)
  545. #undef op_avg
  546. #undef op_put
  547. #if 0
  548. /* FIXME this stuff could be removed as its ot really used anymore */
  549. #define PIXOP(BTYPE, OPNAME, OP, INCR) \
  550. \
  551. static void OPNAME ## _pixels(BTYPE *block, const UINT8 *pixels, int line_size, int h) \
  552. { \
  553. BTYPE *p; \
  554. const UINT8 *pix; \
  555. \
  556. p = block; \
  557. pix = pixels; \
  558. do { \
  559. OP(p[0], pix[0]); \
  560. OP(p[1], pix[1]); \
  561. OP(p[2], pix[2]); \
  562. OP(p[3], pix[3]); \
  563. OP(p[4], pix[4]); \
  564. OP(p[5], pix[5]); \
  565. OP(p[6], pix[6]); \
  566. OP(p[7], pix[7]); \
  567. pix += line_size; \
  568. p += INCR; \
  569. } while (--h);; \
  570. } \
  571. \
  572. static void OPNAME ## _pixels_x2(BTYPE *block, const UINT8 *pixels, int line_size, int h) \
  573. { \
  574. BTYPE *p; \
  575. const UINT8 *pix; \
  576. \
  577. p = block; \
  578. pix = pixels; \
  579. do { \
  580. OP(p[0], avg2(pix[0], pix[1])); \
  581. OP(p[1], avg2(pix[1], pix[2])); \
  582. OP(p[2], avg2(pix[2], pix[3])); \
  583. OP(p[3], avg2(pix[3], pix[4])); \
  584. OP(p[4], avg2(pix[4], pix[5])); \
  585. OP(p[5], avg2(pix[5], pix[6])); \
  586. OP(p[6], avg2(pix[6], pix[7])); \
  587. OP(p[7], avg2(pix[7], pix[8])); \
  588. pix += line_size; \
  589. p += INCR; \
  590. } while (--h); \
  591. } \
  592. \
  593. static void OPNAME ## _pixels_y2(BTYPE *block, const UINT8 *pixels, int line_size, int h) \
  594. { \
  595. BTYPE *p; \
  596. const UINT8 *pix; \
  597. const UINT8 *pix1; \
  598. \
  599. p = block; \
  600. pix = pixels; \
  601. pix1 = pixels + line_size; \
  602. do { \
  603. OP(p[0], avg2(pix[0], pix1[0])); \
  604. OP(p[1], avg2(pix[1], pix1[1])); \
  605. OP(p[2], avg2(pix[2], pix1[2])); \
  606. OP(p[3], avg2(pix[3], pix1[3])); \
  607. OP(p[4], avg2(pix[4], pix1[4])); \
  608. OP(p[5], avg2(pix[5], pix1[5])); \
  609. OP(p[6], avg2(pix[6], pix1[6])); \
  610. OP(p[7], avg2(pix[7], pix1[7])); \
  611. pix += line_size; \
  612. pix1 += line_size; \
  613. p += INCR; \
  614. } while(--h); \
  615. } \
  616. \
  617. static void OPNAME ## _pixels_xy2(BTYPE *block, const UINT8 *pixels, int line_size, int h) \
  618. { \
  619. BTYPE *p; \
  620. const UINT8 *pix; \
  621. const UINT8 *pix1; \
  622. \
  623. p = block; \
  624. pix = pixels; \
  625. pix1 = pixels + line_size; \
  626. do { \
  627. OP(p[0], avg4(pix[0], pix[1], pix1[0], pix1[1])); \
  628. OP(p[1], avg4(pix[1], pix[2], pix1[1], pix1[2])); \
  629. OP(p[2], avg4(pix[2], pix[3], pix1[2], pix1[3])); \
  630. OP(p[3], avg4(pix[3], pix[4], pix1[3], pix1[4])); \
  631. OP(p[4], avg4(pix[4], pix[5], pix1[4], pix1[5])); \
  632. OP(p[5], avg4(pix[5], pix[6], pix1[5], pix1[6])); \
  633. OP(p[6], avg4(pix[6], pix[7], pix1[6], pix1[7])); \
  634. OP(p[7], avg4(pix[7], pix[8], pix1[7], pix1[8])); \
  635. pix += line_size; \
  636. pix1 += line_size; \
  637. p += INCR; \
  638. } while(--h); \
  639. } \
  640. \
  641. void (*OPNAME ## _pixels_tab[4])(BTYPE *block, const UINT8 *pixels, int line_size, int h) = { \
  642. OPNAME ## _pixels, \
  643. OPNAME ## _pixels_x2, \
  644. OPNAME ## _pixels_y2, \
  645. OPNAME ## _pixels_xy2, \
  646. };
  647. /* rounding primitives */
  648. #define avg2(a,b) ((a+b+1)>>1)
  649. #define avg4(a,b,c,d) ((a+b+c+d+2)>>2)
  650. #define op_avg(a, b) a = avg2(a, b)
  651. #define op_sub(a, b) a -= b
  652. PIXOP(DCTELEM, sub, op_sub, 8)
  653. /* not rounding primitives */
  654. #undef avg2
  655. #undef avg4
  656. #define avg2(a,b) ((a+b)>>1)
  657. #define avg4(a,b,c,d) ((a+b+c+d+1)>>2)
  658. /* motion estimation */
  659. #undef avg2
  660. #undef avg4
  661. #endif
  662. #define avg2(a,b) ((a+b+1)>>1)
  663. #define avg4(a,b,c,d) ((a+b+c+d+2)>>2)
  664. static void gmc1_c(UINT8 *dst, UINT8 *src, int srcStride, int h, int x16, int y16, int rounder)
  665. {
  666. const int A=(16-x16)*(16-y16);
  667. const int B=( x16)*(16-y16);
  668. const int C=(16-x16)*( y16);
  669. const int D=( x16)*( y16);
  670. int i;
  671. rounder= 128 - rounder;
  672. for(i=0; i<h; i++)
  673. {
  674. dst[0]= (A*src[0] + B*src[1] + C*src[srcStride+0] + D*src[srcStride+1] + rounder)>>8;
  675. dst[1]= (A*src[1] + B*src[2] + C*src[srcStride+1] + D*src[srcStride+2] + rounder)>>8;
  676. dst[2]= (A*src[2] + B*src[3] + C*src[srcStride+2] + D*src[srcStride+3] + rounder)>>8;
  677. dst[3]= (A*src[3] + B*src[4] + C*src[srcStride+3] + D*src[srcStride+4] + rounder)>>8;
  678. dst[4]= (A*src[4] + B*src[5] + C*src[srcStride+4] + D*src[srcStride+5] + rounder)>>8;
  679. dst[5]= (A*src[5] + B*src[6] + C*src[srcStride+5] + D*src[srcStride+6] + rounder)>>8;
  680. dst[6]= (A*src[6] + B*src[7] + C*src[srcStride+6] + D*src[srcStride+7] + rounder)>>8;
  681. dst[7]= (A*src[7] + B*src[8] + C*src[srcStride+7] + D*src[srcStride+8] + rounder)>>8;
  682. dst+= srcStride;
  683. src+= srcStride;
  684. }
  685. }
  686. static void qpel_h_lowpass(UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int h, int r)
  687. {
  688. UINT8 *cm = cropTbl + MAX_NEG_CROP;
  689. int i;
  690. for(i=0; i<h; i++)
  691. {
  692. dst[0]= cm[(((src[0]+src[1])*20 - (src[0]+src[2])*6 + (src[1]+src[3])*3 - (src[2]+src[4]) + r)>>5)];
  693. dst[1]= cm[(((src[1]+src[2])*20 - (src[0]+src[3])*6 + (src[0]+src[4])*3 - (src[1]+src[5]) + r)>>5)];
  694. dst[2]= cm[(((src[2]+src[3])*20 - (src[1]+src[4])*6 + (src[0]+src[5])*3 - (src[0]+src[6]) + r)>>5)];
  695. dst[3]= cm[(((src[3]+src[4])*20 - (src[2]+src[5])*6 + (src[1]+src[6])*3 - (src[0]+src[7]) + r)>>5)];
  696. dst[4]= cm[(((src[4]+src[5])*20 - (src[3]+src[6])*6 + (src[2]+src[7])*3 - (src[1]+src[8]) + r)>>5)];
  697. dst[5]= cm[(((src[5]+src[6])*20 - (src[4]+src[7])*6 + (src[3]+src[8])*3 - (src[2]+src[8]) + r)>>5)];
  698. dst[6]= cm[(((src[6]+src[7])*20 - (src[5]+src[8])*6 + (src[4]+src[8])*3 - (src[3]+src[7]) + r)>>5)];
  699. dst[7]= cm[(((src[7]+src[8])*20 - (src[6]+src[8])*6 + (src[5]+src[7])*3 - (src[4]+src[6]) + r)>>5)];
  700. dst+=dstStride;
  701. src+=srcStride;
  702. }
  703. }
  704. static void qpel_v_lowpass(UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int w, int r)
  705. {
  706. UINT8 *cm = cropTbl + MAX_NEG_CROP;
  707. int i;
  708. for(i=0; i<w; i++)
  709. {
  710. const int src0= src[0*srcStride];
  711. const int src1= src[1*srcStride];
  712. const int src2= src[2*srcStride];
  713. const int src3= src[3*srcStride];
  714. const int src4= src[4*srcStride];
  715. const int src5= src[5*srcStride];
  716. const int src6= src[6*srcStride];
  717. const int src7= src[7*srcStride];
  718. const int src8= src[8*srcStride];
  719. dst[0*dstStride]= cm[(((src0+src1)*20 - (src0+src2)*6 + (src1+src3)*3 - (src2+src4) + r)>>5)];
  720. dst[1*dstStride]= cm[(((src1+src2)*20 - (src0+src3)*6 + (src0+src4)*3 - (src1+src5) + r)>>5)];
  721. dst[2*dstStride]= cm[(((src2+src3)*20 - (src1+src4)*6 + (src0+src5)*3 - (src0+src6) + r)>>5)];
  722. dst[3*dstStride]= cm[(((src3+src4)*20 - (src2+src5)*6 + (src1+src6)*3 - (src0+src7) + r)>>5)];
  723. dst[4*dstStride]= cm[(((src4+src5)*20 - (src3+src6)*6 + (src2+src7)*3 - (src1+src8) + r)>>5)];
  724. dst[5*dstStride]= cm[(((src5+src6)*20 - (src4+src7)*6 + (src3+src8)*3 - (src2+src8) + r)>>5)];
  725. dst[6*dstStride]= cm[(((src6+src7)*20 - (src5+src8)*6 + (src4+src8)*3 - (src3+src7) + r)>>5)];
  726. dst[7*dstStride]= cm[(((src7+src8)*20 - (src6+src8)*6 + (src5+src7)*3 - (src4+src6) + r)>>5)];
  727. dst++;
  728. src++;
  729. }
  730. }
  731. static inline void put_block(UINT8 *dst, UINT8 *src, int dstStride, int srcStride)
  732. {
  733. int i;
  734. for(i=0; i<8; i++)
  735. {
  736. dst[0]= src[0];
  737. dst[1]= src[1];
  738. dst[2]= src[2];
  739. dst[3]= src[3];
  740. dst[4]= src[4];
  741. dst[5]= src[5];
  742. dst[6]= src[6];
  743. dst[7]= src[7];
  744. dst+=dstStride;
  745. src+=srcStride;
  746. }
  747. }
  748. static inline void avg2_block(UINT8 *dst, UINT8 *src1, UINT8 *src2, int dstStride, int srcStride, int r)
  749. {
  750. int i;
  751. for(i=0; i<8; i++)
  752. {
  753. dst[0]= (src1[0] + src2[0] + r)>>1;
  754. dst[1]= (src1[1] + src2[1] + r)>>1;
  755. dst[2]= (src1[2] + src2[2] + r)>>1;
  756. dst[3]= (src1[3] + src2[3] + r)>>1;
  757. dst[4]= (src1[4] + src2[4] + r)>>1;
  758. dst[5]= (src1[5] + src2[5] + r)>>1;
  759. dst[6]= (src1[6] + src2[6] + r)>>1;
  760. dst[7]= (src1[7] + src2[7] + r)>>1;
  761. dst+=dstStride;
  762. src1+=srcStride;
  763. src2+=8;
  764. }
  765. }
  766. static inline void avg4_block(UINT8 *dst, UINT8 *src1, UINT8 *src2, UINT8 *src3, UINT8 *src4, int dstStride, int srcStride, int r)
  767. {
  768. int i;
  769. for(i=0; i<8; i++)
  770. {
  771. dst[0]= (src1[0] + src2[0] + src3[0] + src4[0] + r)>>2;
  772. dst[1]= (src1[1] + src2[1] + src3[1] + src4[1] + r)>>2;
  773. dst[2]= (src1[2] + src2[2] + src3[2] + src4[2] + r)>>2;
  774. dst[3]= (src1[3] + src2[3] + src3[3] + src4[3] + r)>>2;
  775. dst[4]= (src1[4] + src2[4] + src3[4] + src4[4] + r)>>2;
  776. dst[5]= (src1[5] + src2[5] + src3[5] + src4[5] + r)>>2;
  777. dst[6]= (src1[6] + src2[6] + src3[6] + src4[6] + r)>>2;
  778. dst[7]= (src1[7] + src2[7] + src3[7] + src4[7] + r)>>2;
  779. dst+=dstStride;
  780. src1+=srcStride;
  781. src2+=8;
  782. src3+=8;
  783. src4+=8;
  784. }
  785. }
  786. #define QPEL_MC(r, name) \
  787. static void qpel_mc00_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  788. {\
  789. put_block(dst, src, dstStride, srcStride);\
  790. }\
  791. \
  792. static void qpel_mc10_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  793. {\
  794. UINT8 half[64];\
  795. qpel_h_lowpass(half, src, 8, srcStride, 8, 16-r);\
  796. avg2_block(dst, src, half, dstStride, srcStride, 1-r);\
  797. }\
  798. \
  799. static void qpel_mc20_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  800. {\
  801. qpel_h_lowpass(dst, src, dstStride, srcStride, 8, 16-r);\
  802. }\
  803. \
  804. static void qpel_mc30_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  805. {\
  806. UINT8 half[64];\
  807. qpel_h_lowpass(half, src, 8, srcStride, 8, 16-r);\
  808. avg2_block(dst, src+1, half, dstStride, srcStride, 1-r);\
  809. }\
  810. \
  811. static void qpel_mc01_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  812. {\
  813. UINT8 half[64];\
  814. qpel_v_lowpass(half, src, 8, srcStride, 8, 16-r);\
  815. avg2_block(dst, src, half, dstStride, srcStride, 1-r);\
  816. }\
  817. \
  818. static void qpel_mc02_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  819. {\
  820. qpel_v_lowpass(dst, src, dstStride, srcStride, 8, 16-r);\
  821. }\
  822. \
  823. static void qpel_mc03_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  824. {\
  825. UINT8 half[64];\
  826. qpel_v_lowpass(half, src, 8, srcStride, 8, 16-r);\
  827. avg2_block(dst, src+srcStride, half, dstStride, srcStride, 1-r);\
  828. }\
  829. static void qpel_mc11_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  830. {\
  831. UINT8 halfH[72];\
  832. UINT8 halfV[64];\
  833. UINT8 halfHV[64];\
  834. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  835. qpel_v_lowpass(halfV, src, 8, srcStride, 8, 16-r);\
  836. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  837. avg4_block(dst, src, halfH, halfV, halfHV, dstStride, srcStride, 2-r);\
  838. }\
  839. static void qpel_mc31_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  840. {\
  841. UINT8 halfH[72];\
  842. UINT8 halfV[64];\
  843. UINT8 halfHV[64];\
  844. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  845. qpel_v_lowpass(halfV, src+1, 8, srcStride, 8, 16-r);\
  846. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  847. avg4_block(dst, src+1, halfH, halfV, halfHV, dstStride, srcStride, 2-r);\
  848. }\
  849. static void qpel_mc13_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  850. {\
  851. UINT8 halfH[72];\
  852. UINT8 halfV[64];\
  853. UINT8 halfHV[64];\
  854. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  855. qpel_v_lowpass(halfV, src, 8, srcStride, 8, 16-r);\
  856. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  857. avg4_block(dst, src+srcStride, halfH+8, halfV, halfHV, dstStride, srcStride, 2-r);\
  858. }\
  859. static void qpel_mc33_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  860. {\
  861. UINT8 halfH[72];\
  862. UINT8 halfV[64];\
  863. UINT8 halfHV[64];\
  864. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  865. qpel_v_lowpass(halfV, src+1, 8, srcStride, 8, 16-r);\
  866. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  867. avg4_block(dst, src+srcStride+1, halfH+8, halfV, halfHV, dstStride, srcStride, 2-r);\
  868. }\
  869. static void qpel_mc21_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  870. {\
  871. UINT8 halfH[72];\
  872. UINT8 halfHV[64];\
  873. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  874. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  875. avg2_block(dst, halfH, halfHV, dstStride, 8, 1-r);\
  876. }\
  877. static void qpel_mc23_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  878. {\
  879. UINT8 halfH[72];\
  880. UINT8 halfHV[64];\
  881. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  882. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  883. avg2_block(dst, halfH+8, halfHV, dstStride, 8, 1-r);\
  884. }\
  885. static void qpel_mc12_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  886. {\
  887. UINT8 halfH[72];\
  888. UINT8 halfV[64];\
  889. UINT8 halfHV[64];\
  890. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  891. qpel_v_lowpass(halfV, src, 8, srcStride, 8, 16-r);\
  892. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  893. avg2_block(dst, halfV, halfHV, dstStride, 8, 1-r);\
  894. }\
  895. static void qpel_mc32_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  896. {\
  897. UINT8 halfH[72];\
  898. UINT8 halfV[64];\
  899. UINT8 halfHV[64];\
  900. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  901. qpel_v_lowpass(halfV, src+1, 8, srcStride, 8, 16-r);\
  902. qpel_v_lowpass(halfHV, halfH, 8, 8, 8, 16-r);\
  903. avg2_block(dst, halfV, halfHV, dstStride, 8, 1-r);\
  904. }\
  905. static void qpel_mc22_c ## name (UINT8 *dst, UINT8 *src, int dstStride, int srcStride, int mx, int my)\
  906. {\
  907. UINT8 halfH[72];\
  908. qpel_h_lowpass(halfH, src, 8, srcStride, 9, 16-r);\
  909. qpel_v_lowpass(dst, halfH, dstStride, 8, 8, 16-r);\
  910. }\
  911. qpel_mc_func qpel_mc ## name ## _tab[16]={ \
  912. qpel_mc00_c ## name, \
  913. qpel_mc10_c ## name, \
  914. qpel_mc20_c ## name, \
  915. qpel_mc30_c ## name, \
  916. qpel_mc01_c ## name, \
  917. qpel_mc11_c ## name, \
  918. qpel_mc21_c ## name, \
  919. qpel_mc31_c ## name, \
  920. qpel_mc02_c ## name, \
  921. qpel_mc12_c ## name, \
  922. qpel_mc22_c ## name, \
  923. qpel_mc32_c ## name, \
  924. qpel_mc03_c ## name, \
  925. qpel_mc13_c ## name, \
  926. qpel_mc23_c ## name, \
  927. qpel_mc33_c ## name, \
  928. };
  929. QPEL_MC(0, _rnd)
  930. QPEL_MC(1, _no_rnd)
  931. int pix_abs16x16_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  932. {
  933. int s, i;
  934. s = 0;
  935. for(i=0;i<16;i++) {
  936. s += abs(pix1[0] - pix2[0]);
  937. s += abs(pix1[1] - pix2[1]);
  938. s += abs(pix1[2] - pix2[2]);
  939. s += abs(pix1[3] - pix2[3]);
  940. s += abs(pix1[4] - pix2[4]);
  941. s += abs(pix1[5] - pix2[5]);
  942. s += abs(pix1[6] - pix2[6]);
  943. s += abs(pix1[7] - pix2[7]);
  944. s += abs(pix1[8] - pix2[8]);
  945. s += abs(pix1[9] - pix2[9]);
  946. s += abs(pix1[10] - pix2[10]);
  947. s += abs(pix1[11] - pix2[11]);
  948. s += abs(pix1[12] - pix2[12]);
  949. s += abs(pix1[13] - pix2[13]);
  950. s += abs(pix1[14] - pix2[14]);
  951. s += abs(pix1[15] - pix2[15]);
  952. pix1 += line_size;
  953. pix2 += line_size;
  954. }
  955. return s;
  956. }
  957. int pix_abs16x16_x2_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  958. {
  959. int s, i;
  960. s = 0;
  961. for(i=0;i<16;i++) {
  962. s += abs(pix1[0] - avg2(pix2[0], pix2[1]));
  963. s += abs(pix1[1] - avg2(pix2[1], pix2[2]));
  964. s += abs(pix1[2] - avg2(pix2[2], pix2[3]));
  965. s += abs(pix1[3] - avg2(pix2[3], pix2[4]));
  966. s += abs(pix1[4] - avg2(pix2[4], pix2[5]));
  967. s += abs(pix1[5] - avg2(pix2[5], pix2[6]));
  968. s += abs(pix1[6] - avg2(pix2[6], pix2[7]));
  969. s += abs(pix1[7] - avg2(pix2[7], pix2[8]));
  970. s += abs(pix1[8] - avg2(pix2[8], pix2[9]));
  971. s += abs(pix1[9] - avg2(pix2[9], pix2[10]));
  972. s += abs(pix1[10] - avg2(pix2[10], pix2[11]));
  973. s += abs(pix1[11] - avg2(pix2[11], pix2[12]));
  974. s += abs(pix1[12] - avg2(pix2[12], pix2[13]));
  975. s += abs(pix1[13] - avg2(pix2[13], pix2[14]));
  976. s += abs(pix1[14] - avg2(pix2[14], pix2[15]));
  977. s += abs(pix1[15] - avg2(pix2[15], pix2[16]));
  978. pix1 += line_size;
  979. pix2 += line_size;
  980. }
  981. return s;
  982. }
  983. int pix_abs16x16_y2_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  984. {
  985. int s, i;
  986. UINT8 *pix3 = pix2 + line_size;
  987. s = 0;
  988. for(i=0;i<16;i++) {
  989. s += abs(pix1[0] - avg2(pix2[0], pix3[0]));
  990. s += abs(pix1[1] - avg2(pix2[1], pix3[1]));
  991. s += abs(pix1[2] - avg2(pix2[2], pix3[2]));
  992. s += abs(pix1[3] - avg2(pix2[3], pix3[3]));
  993. s += abs(pix1[4] - avg2(pix2[4], pix3[4]));
  994. s += abs(pix1[5] - avg2(pix2[5], pix3[5]));
  995. s += abs(pix1[6] - avg2(pix2[6], pix3[6]));
  996. s += abs(pix1[7] - avg2(pix2[7], pix3[7]));
  997. s += abs(pix1[8] - avg2(pix2[8], pix3[8]));
  998. s += abs(pix1[9] - avg2(pix2[9], pix3[9]));
  999. s += abs(pix1[10] - avg2(pix2[10], pix3[10]));
  1000. s += abs(pix1[11] - avg2(pix2[11], pix3[11]));
  1001. s += abs(pix1[12] - avg2(pix2[12], pix3[12]));
  1002. s += abs(pix1[13] - avg2(pix2[13], pix3[13]));
  1003. s += abs(pix1[14] - avg2(pix2[14], pix3[14]));
  1004. s += abs(pix1[15] - avg2(pix2[15], pix3[15]));
  1005. pix1 += line_size;
  1006. pix2 += line_size;
  1007. pix3 += line_size;
  1008. }
  1009. return s;
  1010. }
  1011. int pix_abs16x16_xy2_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  1012. {
  1013. int s, i;
  1014. UINT8 *pix3 = pix2 + line_size;
  1015. s = 0;
  1016. for(i=0;i<16;i++) {
  1017. s += abs(pix1[0] - avg4(pix2[0], pix2[1], pix3[0], pix3[1]));
  1018. s += abs(pix1[1] - avg4(pix2[1], pix2[2], pix3[1], pix3[2]));
  1019. s += abs(pix1[2] - avg4(pix2[2], pix2[3], pix3[2], pix3[3]));
  1020. s += abs(pix1[3] - avg4(pix2[3], pix2[4], pix3[3], pix3[4]));
  1021. s += abs(pix1[4] - avg4(pix2[4], pix2[5], pix3[4], pix3[5]));
  1022. s += abs(pix1[5] - avg4(pix2[5], pix2[6], pix3[5], pix3[6]));
  1023. s += abs(pix1[6] - avg4(pix2[6], pix2[7], pix3[6], pix3[7]));
  1024. s += abs(pix1[7] - avg4(pix2[7], pix2[8], pix3[7], pix3[8]));
  1025. s += abs(pix1[8] - avg4(pix2[8], pix2[9], pix3[8], pix3[9]));
  1026. s += abs(pix1[9] - avg4(pix2[9], pix2[10], pix3[9], pix3[10]));
  1027. s += abs(pix1[10] - avg4(pix2[10], pix2[11], pix3[10], pix3[11]));
  1028. s += abs(pix1[11] - avg4(pix2[11], pix2[12], pix3[11], pix3[12]));
  1029. s += abs(pix1[12] - avg4(pix2[12], pix2[13], pix3[12], pix3[13]));
  1030. s += abs(pix1[13] - avg4(pix2[13], pix2[14], pix3[13], pix3[14]));
  1031. s += abs(pix1[14] - avg4(pix2[14], pix2[15], pix3[14], pix3[15]));
  1032. s += abs(pix1[15] - avg4(pix2[15], pix2[16], pix3[15], pix3[16]));
  1033. pix1 += line_size;
  1034. pix2 += line_size;
  1035. pix3 += line_size;
  1036. }
  1037. return s;
  1038. }
  1039. int pix_abs8x8_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  1040. {
  1041. int s, i;
  1042. s = 0;
  1043. for(i=0;i<8;i++) {
  1044. s += abs(pix1[0] - pix2[0]);
  1045. s += abs(pix1[1] - pix2[1]);
  1046. s += abs(pix1[2] - pix2[2]);
  1047. s += abs(pix1[3] - pix2[3]);
  1048. s += abs(pix1[4] - pix2[4]);
  1049. s += abs(pix1[5] - pix2[5]);
  1050. s += abs(pix1[6] - pix2[6]);
  1051. s += abs(pix1[7] - pix2[7]);
  1052. pix1 += line_size;
  1053. pix2 += line_size;
  1054. }
  1055. return s;
  1056. }
  1057. int pix_abs8x8_x2_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  1058. {
  1059. int s, i;
  1060. s = 0;
  1061. for(i=0;i<8;i++) {
  1062. s += abs(pix1[0] - avg2(pix2[0], pix2[1]));
  1063. s += abs(pix1[1] - avg2(pix2[1], pix2[2]));
  1064. s += abs(pix1[2] - avg2(pix2[2], pix2[3]));
  1065. s += abs(pix1[3] - avg2(pix2[3], pix2[4]));
  1066. s += abs(pix1[4] - avg2(pix2[4], pix2[5]));
  1067. s += abs(pix1[5] - avg2(pix2[5], pix2[6]));
  1068. s += abs(pix1[6] - avg2(pix2[6], pix2[7]));
  1069. s += abs(pix1[7] - avg2(pix2[7], pix2[8]));
  1070. pix1 += line_size;
  1071. pix2 += line_size;
  1072. }
  1073. return s;
  1074. }
  1075. int pix_abs8x8_y2_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  1076. {
  1077. int s, i;
  1078. UINT8 *pix3 = pix2 + line_size;
  1079. s = 0;
  1080. for(i=0;i<8;i++) {
  1081. s += abs(pix1[0] - avg2(pix2[0], pix3[0]));
  1082. s += abs(pix1[1] - avg2(pix2[1], pix3[1]));
  1083. s += abs(pix1[2] - avg2(pix2[2], pix3[2]));
  1084. s += abs(pix1[3] - avg2(pix2[3], pix3[3]));
  1085. s += abs(pix1[4] - avg2(pix2[4], pix3[4]));
  1086. s += abs(pix1[5] - avg2(pix2[5], pix3[5]));
  1087. s += abs(pix1[6] - avg2(pix2[6], pix3[6]));
  1088. s += abs(pix1[7] - avg2(pix2[7], pix3[7]));
  1089. pix1 += line_size;
  1090. pix2 += line_size;
  1091. pix3 += line_size;
  1092. }
  1093. return s;
  1094. }
  1095. int pix_abs8x8_xy2_c(UINT8 *pix1, UINT8 *pix2, int line_size)
  1096. {
  1097. int s, i;
  1098. UINT8 *pix3 = pix2 + line_size;
  1099. s = 0;
  1100. for(i=0;i<8;i++) {
  1101. s += abs(pix1[0] - avg4(pix2[0], pix2[1], pix3[0], pix3[1]));
  1102. s += abs(pix1[1] - avg4(pix2[1], pix2[2], pix3[1], pix3[2]));
  1103. s += abs(pix1[2] - avg4(pix2[2], pix2[3], pix3[2], pix3[3]));
  1104. s += abs(pix1[3] - avg4(pix2[3], pix2[4], pix3[3], pix3[4]));
  1105. s += abs(pix1[4] - avg4(pix2[4], pix2[5], pix3[4], pix3[5]));
  1106. s += abs(pix1[5] - avg4(pix2[5], pix2[6], pix3[5], pix3[6]));
  1107. s += abs(pix1[6] - avg4(pix2[6], pix2[7], pix3[6], pix3[7]));
  1108. s += abs(pix1[7] - avg4(pix2[7], pix2[8], pix3[7], pix3[8]));
  1109. pix1 += line_size;
  1110. pix2 += line_size;
  1111. pix3 += line_size;
  1112. }
  1113. return s;
  1114. }
  1115. /* permute block according so that it corresponds to the MMX idct
  1116. order */
  1117. #ifdef SIMPLE_IDCT
  1118. /* general permutation, but perhaps slightly slower */
  1119. void block_permute(INT16 *block)
  1120. {
  1121. int i;
  1122. INT16 temp[64];
  1123. for(i=0; i<64; i++) temp[ block_permute_op(i) ] = block[i];
  1124. for(i=0; i<64; i++) block[i] = temp[i];
  1125. }
  1126. #else
  1127. void block_permute(INT16 *block)
  1128. {
  1129. int tmp1, tmp2, tmp3, tmp4, tmp5, tmp6;
  1130. int i;
  1131. for(i=0;i<8;i++) {
  1132. tmp1 = block[1];
  1133. tmp2 = block[2];
  1134. tmp3 = block[3];
  1135. tmp4 = block[4];
  1136. tmp5 = block[5];
  1137. tmp6 = block[6];
  1138. block[1] = tmp2;
  1139. block[2] = tmp4;
  1140. block[3] = tmp6;
  1141. block[4] = tmp1;
  1142. block[5] = tmp3;
  1143. block[6] = tmp5;
  1144. block += 8;
  1145. }
  1146. }
  1147. #endif
  1148. void clear_blocks_c(DCTELEM *blocks)
  1149. {
  1150. memset(blocks, 0, sizeof(DCTELEM)*6*64);
  1151. }
  1152. /* XXX: those functions should be suppressed ASAP when all IDCTs are
  1153. converted */
  1154. void gen_idct_put(UINT8 *dest, int line_size, DCTELEM *block)
  1155. {
  1156. ff_idct (block);
  1157. put_pixels_clamped(block, dest, line_size);
  1158. }
  1159. void gen_idct_add(UINT8 *dest, int line_size, DCTELEM *block)
  1160. {
  1161. ff_idct (block);
  1162. add_pixels_clamped(block, dest, line_size);
  1163. }
  1164. void dsputil_init(void)
  1165. {
  1166. int i, j;
  1167. int use_permuted_idct;
  1168. for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i;
  1169. for(i=0;i<MAX_NEG_CROP;i++) {
  1170. cropTbl[i] = 0;
  1171. cropTbl[i + MAX_NEG_CROP + 256] = 255;
  1172. }
  1173. for(i=0;i<512;i++) {
  1174. squareTbl[i] = (i - 256) * (i - 256);
  1175. }
  1176. #ifdef SIMPLE_IDCT
  1177. ff_idct = NULL;
  1178. #else
  1179. ff_idct = j_rev_dct;
  1180. #endif
  1181. get_pixels = get_pixels_c;
  1182. diff_pixels = diff_pixels_c;
  1183. put_pixels_clamped = put_pixels_clamped_c;
  1184. add_pixels_clamped = add_pixels_clamped_c;
  1185. gmc1= gmc1_c;
  1186. clear_blocks= clear_blocks_c;
  1187. pix_abs16x16 = pix_abs16x16_c;
  1188. pix_abs16x16_x2 = pix_abs16x16_x2_c;
  1189. pix_abs16x16_y2 = pix_abs16x16_y2_c;
  1190. pix_abs16x16_xy2 = pix_abs16x16_xy2_c;
  1191. pix_abs8x8 = pix_abs8x8_c;
  1192. pix_abs8x8_x2 = pix_abs8x8_x2_c;
  1193. pix_abs8x8_y2 = pix_abs8x8_y2_c;
  1194. pix_abs8x8_xy2 = pix_abs8x8_xy2_c;
  1195. av_fdct = fdct_ifast;
  1196. use_permuted_idct = 1;
  1197. #ifdef HAVE_MMX
  1198. dsputil_init_mmx();
  1199. #endif
  1200. #ifdef ARCH_ARMV4L
  1201. dsputil_init_armv4l();
  1202. #endif
  1203. #ifdef HAVE_MLIB
  1204. dsputil_init_mlib();
  1205. use_permuted_idct = 0;
  1206. #endif
  1207. #ifdef ARCH_ALPHA
  1208. dsputil_init_alpha();
  1209. use_permuted_idct = 0;
  1210. #endif
  1211. #ifdef SIMPLE_IDCT
  1212. if (ff_idct == NULL) {
  1213. ff_idct_put = simple_idct_put;
  1214. ff_idct_add = simple_idct_add;
  1215. use_permuted_idct=0;
  1216. } else {
  1217. ff_idct_put = gen_idct_put;
  1218. ff_idct_add = gen_idct_add;
  1219. }
  1220. #endif
  1221. if(use_permuted_idct)
  1222. #ifdef SIMPLE_IDCT
  1223. for(i=0; i<64; i++) permutation[i]= simple_mmx_permutation[i];
  1224. #else
  1225. for(i=0; i<64; i++) permutation[i]= (i & 0x38) | ((i & 6) >> 1) | ((i & 1) << 2);
  1226. #endif
  1227. else
  1228. for(i=0; i<64; i++) permutation[i]=i;
  1229. for(i=0; i<64; i++) inv_zigzag_direct16[zigzag_direct[i]]= i+1;
  1230. for(i=0; i<64; i++) zigzag_direct_noperm[i]= zigzag_direct[i];
  1231. if (use_permuted_idct) {
  1232. /* permute for IDCT */
  1233. for(i=0;i<64;i++) {
  1234. j = zigzag_direct[i];
  1235. zigzag_direct[i] = block_permute_op(j);
  1236. j = ff_alternate_horizontal_scan[i];
  1237. ff_alternate_horizontal_scan[i] = block_permute_op(j);
  1238. j = ff_alternate_vertical_scan[i];
  1239. ff_alternate_vertical_scan[i] = block_permute_op(j);
  1240. }
  1241. block_permute(ff_mpeg1_default_intra_matrix);
  1242. block_permute(ff_mpeg1_default_non_intra_matrix);
  1243. block_permute(ff_mpeg4_default_intra_matrix);
  1244. block_permute(ff_mpeg4_default_non_intra_matrix);
  1245. }
  1246. build_zigzag_end();
  1247. }
  1248. /* remove any non bit exact operation (testing purpose) */
  1249. void avcodec_set_bit_exact(void)
  1250. {
  1251. #ifdef HAVE_MMX
  1252. dsputil_set_bit_exact_mmx();
  1253. #endif
  1254. }
  1255. void get_psnr(UINT8 *orig_image[3], UINT8 *coded_image[3],
  1256. int orig_linesize[3], int coded_linesize,
  1257. AVCodecContext *avctx)
  1258. {
  1259. int quad, diff, x, y;
  1260. UINT8 *orig, *coded;
  1261. UINT32 *sq = squareTbl + 256;
  1262. quad = 0;
  1263. diff = 0;
  1264. /* Luminance */
  1265. orig = orig_image[0];
  1266. coded = coded_image[0];
  1267. for (y=0;y<avctx->height;y++) {
  1268. for (x=0;x<avctx->width;x++) {
  1269. diff = *(orig + x) - *(coded + x);
  1270. quad += sq[diff];
  1271. }
  1272. orig += orig_linesize[0];
  1273. coded += coded_linesize;
  1274. }
  1275. avctx->psnr_y = (float) quad / (float) (avctx->width * avctx->height);
  1276. if (avctx->psnr_y) {
  1277. avctx->psnr_y = (float) (255 * 255) / avctx->psnr_y;
  1278. avctx->psnr_y = 10 * (float) log10 (avctx->psnr_y);
  1279. } else
  1280. avctx->psnr_y = 99.99;
  1281. }