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.

891 lines
24KB

  1. /*
  2. * yuv2rgb.c, Software YUV to RGB converter
  3. *
  4. * Copyright (C) 1999, Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  5. *
  6. * Functions broken out from display_x11.c and several new modes
  7. * added by HÃ¥kan Hjort <d95hjort@dtek.chalmers.se>
  8. *
  9. * 15 & 16 bpp support by Franck Sicard <Franck.Sicard@solsoft.fr>
  10. *
  11. * MMX/MMX2 template stuff (needed for fast movntq support),
  12. * 1,4,8bpp support and context / deglobalize stuff
  13. * by Michael Niedermayer (michaelni@gmx.at)
  14. *
  15. * This file is part of mpeg2dec, a free MPEG-2 video decoder
  16. *
  17. * mpeg2dec is free software; you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License as published by
  19. * the Free Software Foundation; either version 2, or (at your option)
  20. * any later version.
  21. *
  22. * mpeg2dec is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with mpeg2dec; if not, write to the Free Software
  29. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  30. */
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <inttypes.h>
  34. #include <assert.h>
  35. #include "config.h"
  36. #include "rgb2rgb.h"
  37. #include "swscale.h"
  38. #include "swscale_internal.h"
  39. #ifdef HAVE_VIS
  40. #include "yuv2rgb_vis.c"
  41. #endif
  42. #ifdef HAVE_MLIB
  43. #include "yuv2rgb_mlib.c"
  44. #endif
  45. #define DITHER1XBPP // only for mmx
  46. const uint8_t __attribute__((aligned(8))) dither_2x2_4[2][8]={
  47. { 1, 3, 1, 3, 1, 3, 1, 3, },
  48. { 2, 0, 2, 0, 2, 0, 2, 0, },
  49. };
  50. const uint8_t __attribute__((aligned(8))) dither_2x2_8[2][8]={
  51. { 6, 2, 6, 2, 6, 2, 6, 2, },
  52. { 0, 4, 0, 4, 0, 4, 0, 4, },
  53. };
  54. const uint8_t __attribute__((aligned(8))) dither_8x8_32[8][8]={
  55. { 17, 9, 23, 15, 16, 8, 22, 14, },
  56. { 5, 29, 3, 27, 4, 28, 2, 26, },
  57. { 21, 13, 19, 11, 20, 12, 18, 10, },
  58. { 0, 24, 6, 30, 1, 25, 7, 31, },
  59. { 16, 8, 22, 14, 17, 9, 23, 15, },
  60. { 4, 28, 2, 26, 5, 29, 3, 27, },
  61. { 20, 12, 18, 10, 21, 13, 19, 11, },
  62. { 1, 25, 7, 31, 0, 24, 6, 30, },
  63. };
  64. #if 0
  65. const uint8_t __attribute__((aligned(8))) dither_8x8_64[8][8]={
  66. { 0, 48, 12, 60, 3, 51, 15, 63, },
  67. { 32, 16, 44, 28, 35, 19, 47, 31, },
  68. { 8, 56, 4, 52, 11, 59, 7, 55, },
  69. { 40, 24, 36, 20, 43, 27, 39, 23, },
  70. { 2, 50, 14, 62, 1, 49, 13, 61, },
  71. { 34, 18, 46, 30, 33, 17, 45, 29, },
  72. { 10, 58, 6, 54, 9, 57, 5, 53, },
  73. { 42, 26, 38, 22, 41, 25, 37, 21, },
  74. };
  75. #endif
  76. const uint8_t __attribute__((aligned(8))) dither_8x8_73[8][8]={
  77. { 0, 55, 14, 68, 3, 58, 17, 72, },
  78. { 37, 18, 50, 32, 40, 22, 54, 35, },
  79. { 9, 64, 5, 59, 13, 67, 8, 63, },
  80. { 46, 27, 41, 23, 49, 31, 44, 26, },
  81. { 2, 57, 16, 71, 1, 56, 15, 70, },
  82. { 39, 21, 52, 34, 38, 19, 51, 33, },
  83. { 11, 66, 7, 62, 10, 65, 6, 60, },
  84. { 48, 30, 43, 25, 47, 29, 42, 24, },
  85. };
  86. #if 0
  87. const uint8_t __attribute__((aligned(8))) dither_8x8_128[8][8]={
  88. { 68, 36, 92, 60, 66, 34, 90, 58, },
  89. { 20, 116, 12, 108, 18, 114, 10, 106, },
  90. { 84, 52, 76, 44, 82, 50, 74, 42, },
  91. { 0, 96, 24, 120, 6, 102, 30, 126, },
  92. { 64, 32, 88, 56, 70, 38, 94, 62, },
  93. { 16, 112, 8, 104, 22, 118, 14, 110, },
  94. { 80, 48, 72, 40, 86, 54, 78, 46, },
  95. { 4, 100, 28, 124, 2, 98, 26, 122, },
  96. };
  97. #endif
  98. #if 1
  99. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  100. {117, 62, 158, 103, 113, 58, 155, 100, },
  101. { 34, 199, 21, 186, 31, 196, 17, 182, },
  102. {144, 89, 131, 76, 141, 86, 127, 72, },
  103. { 0, 165, 41, 206, 10, 175, 52, 217, },
  104. {110, 55, 151, 96, 120, 65, 162, 107, },
  105. { 28, 193, 14, 179, 38, 203, 24, 189, },
  106. {138, 83, 124, 69, 148, 93, 134, 79, },
  107. { 7, 172, 48, 213, 3, 168, 45, 210, },
  108. };
  109. #elif 1
  110. // tries to correct a gamma of 1.5
  111. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  112. { 0, 143, 18, 200, 2, 156, 25, 215, },
  113. { 78, 28, 125, 64, 89, 36, 138, 74, },
  114. { 10, 180, 3, 161, 16, 195, 8, 175, },
  115. {109, 51, 93, 38, 121, 60, 105, 47, },
  116. { 1, 152, 23, 210, 0, 147, 20, 205, },
  117. { 85, 33, 134, 71, 81, 30, 130, 67, },
  118. { 14, 190, 6, 171, 12, 185, 5, 166, },
  119. {117, 57, 101, 44, 113, 54, 97, 41, },
  120. };
  121. #elif 1
  122. // tries to correct a gamma of 2.0
  123. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  124. { 0, 124, 8, 193, 0, 140, 12, 213, },
  125. { 55, 14, 104, 42, 66, 19, 119, 52, },
  126. { 3, 168, 1, 145, 6, 187, 3, 162, },
  127. { 86, 31, 70, 21, 99, 39, 82, 28, },
  128. { 0, 134, 11, 206, 0, 129, 9, 200, },
  129. { 62, 17, 114, 48, 58, 16, 109, 45, },
  130. { 5, 181, 2, 157, 4, 175, 1, 151, },
  131. { 95, 36, 78, 26, 90, 34, 74, 24, },
  132. };
  133. #else
  134. // tries to correct a gamma of 2.5
  135. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  136. { 0, 107, 3, 187, 0, 125, 6, 212, },
  137. { 39, 7, 86, 28, 49, 11, 102, 36, },
  138. { 1, 158, 0, 131, 3, 180, 1, 151, },
  139. { 68, 19, 52, 12, 81, 25, 64, 17, },
  140. { 0, 119, 5, 203, 0, 113, 4, 195, },
  141. { 45, 9, 96, 33, 42, 8, 91, 30, },
  142. { 2, 172, 1, 144, 2, 165, 0, 137, },
  143. { 77, 23, 60, 15, 72, 21, 56, 14, },
  144. };
  145. #endif
  146. #ifdef HAVE_MMX
  147. /* hope these constant values are cache line aligned */
  148. DECLARE_ASM_CONST(8, uint64_t, mmx_00ffw) = 0x00ff00ff00ff00ffULL;
  149. DECLARE_ASM_CONST(8, uint64_t, mmx_redmask) = 0xf8f8f8f8f8f8f8f8ULL;
  150. DECLARE_ASM_CONST(8, uint64_t, mmx_grnmask) = 0xfcfcfcfcfcfcfcfcULL;
  151. // the volatile is required because gcc otherwise optimizes some writes away not knowing that these
  152. // are read in the asm block
  153. static volatile uint64_t attribute_used __attribute__((aligned(8))) b5Dither;
  154. static volatile uint64_t attribute_used __attribute__((aligned(8))) g5Dither;
  155. static volatile uint64_t attribute_used __attribute__((aligned(8))) g6Dither;
  156. static volatile uint64_t attribute_used __attribute__((aligned(8))) r5Dither;
  157. #undef HAVE_MMX
  158. //MMX versions
  159. #undef RENAME
  160. #define HAVE_MMX
  161. #undef HAVE_MMX2
  162. #undef HAVE_3DNOW
  163. #define RENAME(a) a ## _MMX
  164. #include "yuv2rgb_template.c"
  165. //MMX2 versions
  166. #undef RENAME
  167. #define HAVE_MMX
  168. #define HAVE_MMX2
  169. #undef HAVE_3DNOW
  170. #define RENAME(a) a ## _MMX2
  171. #include "yuv2rgb_template.c"
  172. #endif /* defined(ARCH_X86) */
  173. const int32_t Inverse_Table_6_9[8][4] = {
  174. {117504, 138453, 13954, 34903}, /* no sequence_display_extension */
  175. {117504, 138453, 13954, 34903}, /* ITU-R Rec. 709 (1990) */
  176. {104597, 132201, 25675, 53279}, /* unspecified */
  177. {104597, 132201, 25675, 53279}, /* reserved */
  178. {104448, 132798, 24759, 53109}, /* FCC */
  179. {104597, 132201, 25675, 53279}, /* ITU-R Rec. 624-4 System B, G */
  180. {104597, 132201, 25675, 53279}, /* SMPTE 170M */
  181. {117579, 136230, 16907, 35559} /* SMPTE 240M (1987) */
  182. };
  183. #define RGB(i) \
  184. U = pu[i]; \
  185. V = pv[i]; \
  186. r = (void *)c->table_rV[V]; \
  187. g = (void *)(c->table_gU[U] + c->table_gV[V]); \
  188. b = (void *)c->table_bU[U];
  189. #define DST1(i) \
  190. Y = py_1[2*i]; \
  191. dst_1[2*i] = r[Y] + g[Y] + b[Y]; \
  192. Y = py_1[2*i+1]; \
  193. dst_1[2*i+1] = r[Y] + g[Y] + b[Y];
  194. #define DST2(i) \
  195. Y = py_2[2*i]; \
  196. dst_2[2*i] = r[Y] + g[Y] + b[Y]; \
  197. Y = py_2[2*i+1]; \
  198. dst_2[2*i+1] = r[Y] + g[Y] + b[Y];
  199. #define DST1RGB(i) \
  200. Y = py_1[2*i]; \
  201. dst_1[6*i] = r[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = b[Y]; \
  202. Y = py_1[2*i+1]; \
  203. dst_1[6*i+3] = r[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = b[Y];
  204. #define DST2RGB(i) \
  205. Y = py_2[2*i]; \
  206. dst_2[6*i] = r[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = b[Y]; \
  207. Y = py_2[2*i+1]; \
  208. dst_2[6*i+3] = r[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = b[Y];
  209. #define DST1BGR(i) \
  210. Y = py_1[2*i]; \
  211. dst_1[6*i] = b[Y]; dst_1[6*i+1] = g[Y]; dst_1[6*i+2] = r[Y]; \
  212. Y = py_1[2*i+1]; \
  213. dst_1[6*i+3] = b[Y]; dst_1[6*i+4] = g[Y]; dst_1[6*i+5] = r[Y];
  214. #define DST2BGR(i) \
  215. Y = py_2[2*i]; \
  216. dst_2[6*i] = b[Y]; dst_2[6*i+1] = g[Y]; dst_2[6*i+2] = r[Y]; \
  217. Y = py_2[2*i+1]; \
  218. dst_2[6*i+3] = b[Y]; dst_2[6*i+4] = g[Y]; dst_2[6*i+5] = r[Y];
  219. #define PROLOG(func_name, dst_type) \
  220. static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, \
  221. int srcSliceH, uint8_t* dst[], int dstStride[]){\
  222. int y;\
  223. \
  224. if (c->srcFormat == PIX_FMT_YUV422P){\
  225. srcStride[1] *= 2;\
  226. srcStride[2] *= 2;\
  227. }\
  228. for (y=0; y<srcSliceH; y+=2){\
  229. dst_type *dst_1= (dst_type*)(dst[0] + (y+srcSliceY )*dstStride[0]);\
  230. dst_type *dst_2= (dst_type*)(dst[0] + (y+srcSliceY+1)*dstStride[0]);\
  231. dst_type av_unused *r, *b;\
  232. dst_type *g;\
  233. uint8_t *py_1= src[0] + y*srcStride[0];\
  234. uint8_t *py_2= py_1 + srcStride[0];\
  235. uint8_t *pu= src[1] + (y>>1)*srcStride[1];\
  236. uint8_t *pv= src[2] + (y>>1)*srcStride[2];\
  237. unsigned int h_size= c->dstW>>3;\
  238. while (h_size--) {\
  239. int av_unused U, V;\
  240. int Y;\
  241. #define EPILOG1(dst_delta)\
  242. pu += 4;\
  243. pv += 4;\
  244. py_1 += 8;\
  245. py_2 += 8;\
  246. dst_1 += dst_delta;\
  247. dst_2 += dst_delta;\
  248. }\
  249. if (c->dstW & 4) {\
  250. int av_unused U, V;\
  251. int Y;\
  252. #define EPILOG2()\
  253. }\
  254. }\
  255. return srcSliceH;\
  256. }
  257. #define EPILOG(dst_delta)\
  258. EPILOG1(dst_delta)\
  259. EPILOG2()
  260. PROLOG(yuv2rgb_c_32, uint32_t)
  261. RGB(0);
  262. DST1(0);
  263. DST2(0);
  264. RGB(1);
  265. DST2(1);
  266. DST1(1);
  267. RGB(2);
  268. DST1(2);
  269. DST2(2);
  270. RGB(3);
  271. DST2(3);
  272. DST1(3);
  273. EPILOG1(8)
  274. RGB(0);
  275. DST1(0);
  276. DST2(0);
  277. RGB(1);
  278. DST2(1);
  279. DST1(1);
  280. EPILOG2()
  281. PROLOG(yuv2rgb_c_24_rgb, uint8_t)
  282. RGB(0);
  283. DST1RGB(0);
  284. DST2RGB(0);
  285. RGB(1);
  286. DST2RGB(1);
  287. DST1RGB(1);
  288. RGB(2);
  289. DST1RGB(2);
  290. DST2RGB(2);
  291. RGB(3);
  292. DST2RGB(3);
  293. DST1RGB(3);
  294. EPILOG1(24)
  295. RGB(0);
  296. DST1RGB(0);
  297. DST2RGB(0);
  298. RGB(1);
  299. DST2RGB(1);
  300. DST1RGB(1);
  301. EPILOG2()
  302. // only trivial mods from yuv2rgb_c_24_rgb
  303. PROLOG(yuv2rgb_c_24_bgr, uint8_t)
  304. RGB(0);
  305. DST1BGR(0);
  306. DST2BGR(0);
  307. RGB(1);
  308. DST2BGR(1);
  309. DST1BGR(1);
  310. RGB(2);
  311. DST1BGR(2);
  312. DST2BGR(2);
  313. RGB(3);
  314. DST2BGR(3);
  315. DST1BGR(3);
  316. EPILOG1(24)
  317. RGB(0);
  318. DST1BGR(0);
  319. DST2BGR(0);
  320. RGB(1);
  321. DST2BGR(1);
  322. DST1BGR(1);
  323. EPILOG2()
  324. // This is exactly the same code as yuv2rgb_c_32 except for the types of
  325. // r, g, b, dst_1, dst_2
  326. PROLOG(yuv2rgb_c_16, uint16_t)
  327. RGB(0);
  328. DST1(0);
  329. DST2(0);
  330. RGB(1);
  331. DST2(1);
  332. DST1(1);
  333. RGB(2);
  334. DST1(2);
  335. DST2(2);
  336. RGB(3);
  337. DST2(3);
  338. DST1(3);
  339. EPILOG(8)
  340. // This is exactly the same code as yuv2rgb_c_32 except for the types of
  341. // r, g, b, dst_1, dst_2
  342. PROLOG(yuv2rgb_c_8, uint8_t)
  343. RGB(0);
  344. DST1(0);
  345. DST2(0);
  346. RGB(1);
  347. DST2(1);
  348. DST1(1);
  349. RGB(2);
  350. DST1(2);
  351. DST2(2);
  352. RGB(3);
  353. DST2(3);
  354. DST1(3);
  355. EPILOG(8)
  356. // r, g, b, dst_1, dst_2
  357. PROLOG(yuv2rgb_c_8_ordered_dither, uint8_t)
  358. const uint8_t *d32= dither_8x8_32[y&7];
  359. const uint8_t *d64= dither_8x8_73[y&7];
  360. #define DST1bpp8(i,o) \
  361. Y = py_1[2*i]; \
  362. dst_1[2*i] = r[Y+d32[0+o]] + g[Y+d32[0+o]] + b[Y+d64[0+o]]; \
  363. Y = py_1[2*i+1]; \
  364. dst_1[2*i+1] = r[Y+d32[1+o]] + g[Y+d32[1+o]] + b[Y+d64[1+o]];
  365. #define DST2bpp8(i,o) \
  366. Y = py_2[2*i]; \
  367. dst_2[2*i] = r[Y+d32[8+o]] + g[Y+d32[8+o]] + b[Y+d64[8+o]]; \
  368. Y = py_2[2*i+1]; \
  369. dst_2[2*i+1] = r[Y+d32[9+o]] + g[Y+d32[9+o]] + b[Y+d64[9+o]];
  370. RGB(0);
  371. DST1bpp8(0,0);
  372. DST2bpp8(0,0);
  373. RGB(1);
  374. DST2bpp8(1,2);
  375. DST1bpp8(1,2);
  376. RGB(2);
  377. DST1bpp8(2,4);
  378. DST2bpp8(2,4);
  379. RGB(3);
  380. DST2bpp8(3,6);
  381. DST1bpp8(3,6);
  382. EPILOG(8)
  383. // This is exactly the same code as yuv2rgb_c_32 except for the types of
  384. // r, g, b, dst_1, dst_2
  385. PROLOG(yuv2rgb_c_4, uint8_t)
  386. int acc;
  387. #define DST1_4(i) \
  388. Y = py_1[2*i]; \
  389. acc = r[Y] + g[Y] + b[Y]; \
  390. Y = py_1[2*i+1]; \
  391. acc |= (r[Y] + g[Y] + b[Y])<<4; \
  392. dst_1[i] = acc;
  393. #define DST2_4(i) \
  394. Y = py_2[2*i]; \
  395. acc = r[Y] + g[Y] + b[Y]; \
  396. Y = py_2[2*i+1]; \
  397. acc |= (r[Y] + g[Y] + b[Y])<<4; \
  398. dst_2[i] = acc;
  399. RGB(0);
  400. DST1_4(0);
  401. DST2_4(0);
  402. RGB(1);
  403. DST2_4(1);
  404. DST1_4(1);
  405. RGB(2);
  406. DST1_4(2);
  407. DST2_4(2);
  408. RGB(3);
  409. DST2_4(3);
  410. DST1_4(3);
  411. EPILOG(4)
  412. PROLOG(yuv2rgb_c_4_ordered_dither, uint8_t)
  413. const uint8_t *d64= dither_8x8_73[y&7];
  414. const uint8_t *d128=dither_8x8_220[y&7];
  415. int acc;
  416. #define DST1bpp4(i,o) \
  417. Y = py_1[2*i]; \
  418. acc = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]]; \
  419. Y = py_1[2*i+1]; \
  420. acc |= (r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]])<<4; \
  421. dst_1[i]= acc;
  422. #define DST2bpp4(i,o) \
  423. Y = py_2[2*i]; \
  424. acc = r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]]; \
  425. Y = py_2[2*i+1]; \
  426. acc |= (r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]])<<4; \
  427. dst_2[i]= acc;
  428. RGB(0);
  429. DST1bpp4(0,0);
  430. DST2bpp4(0,0);
  431. RGB(1);
  432. DST2bpp4(1,2);
  433. DST1bpp4(1,2);
  434. RGB(2);
  435. DST1bpp4(2,4);
  436. DST2bpp4(2,4);
  437. RGB(3);
  438. DST2bpp4(3,6);
  439. DST1bpp4(3,6);
  440. EPILOG(4)
  441. // This is exactly the same code as yuv2rgb_c_32 except for the types of
  442. // r, g, b, dst_1, dst_2
  443. PROLOG(yuv2rgb_c_4b, uint8_t)
  444. RGB(0);
  445. DST1(0);
  446. DST2(0);
  447. RGB(1);
  448. DST2(1);
  449. DST1(1);
  450. RGB(2);
  451. DST1(2);
  452. DST2(2);
  453. RGB(3);
  454. DST2(3);
  455. DST1(3);
  456. EPILOG(8)
  457. PROLOG(yuv2rgb_c_4b_ordered_dither, uint8_t)
  458. const uint8_t *d64= dither_8x8_73[y&7];
  459. const uint8_t *d128=dither_8x8_220[y&7];
  460. #define DST1bpp4b(i,o) \
  461. Y = py_1[2*i]; \
  462. dst_1[2*i] = r[Y+d128[0+o]] + g[Y+d64[0+o]] + b[Y+d128[0+o]]; \
  463. Y = py_1[2*i+1]; \
  464. dst_1[2*i+1] = r[Y+d128[1+o]] + g[Y+d64[1+o]] + b[Y+d128[1+o]];
  465. #define DST2bpp4b(i,o) \
  466. Y = py_2[2*i]; \
  467. dst_2[2*i] = r[Y+d128[8+o]] + g[Y+d64[8+o]] + b[Y+d128[8+o]]; \
  468. Y = py_2[2*i+1]; \
  469. dst_2[2*i+1] = r[Y+d128[9+o]] + g[Y+d64[9+o]] + b[Y+d128[9+o]];
  470. RGB(0);
  471. DST1bpp4b(0,0);
  472. DST2bpp4b(0,0);
  473. RGB(1);
  474. DST2bpp4b(1,2);
  475. DST1bpp4b(1,2);
  476. RGB(2);
  477. DST1bpp4b(2,4);
  478. DST2bpp4b(2,4);
  479. RGB(3);
  480. DST2bpp4b(3,6);
  481. DST1bpp4b(3,6);
  482. EPILOG(8)
  483. PROLOG(yuv2rgb_c_1_ordered_dither, uint8_t)
  484. const uint8_t *d128=dither_8x8_220[y&7];
  485. char out_1=0, out_2=0;
  486. g= c->table_gU[128] + c->table_gV[128];
  487. #define DST1bpp1(i,o) \
  488. Y = py_1[2*i]; \
  489. out_1+= out_1 + g[Y+d128[0+o]]; \
  490. Y = py_1[2*i+1]; \
  491. out_1+= out_1 + g[Y+d128[1+o]];
  492. #define DST2bpp1(i,o) \
  493. Y = py_2[2*i]; \
  494. out_2+= out_2 + g[Y+d128[8+o]]; \
  495. Y = py_2[2*i+1]; \
  496. out_2+= out_2 + g[Y+d128[9+o]];
  497. DST1bpp1(0,0);
  498. DST2bpp1(0,0);
  499. DST2bpp1(1,2);
  500. DST1bpp1(1,2);
  501. DST1bpp1(2,4);
  502. DST2bpp1(2,4);
  503. DST2bpp1(3,6);
  504. DST1bpp1(3,6);
  505. dst_1[0]= out_1;
  506. dst_2[0]= out_2;
  507. EPILOG(1)
  508. SwsFunc yuv2rgb_get_func_ptr (SwsContext *c)
  509. {
  510. #if defined(HAVE_MMX2) || defined(HAVE_MMX)
  511. if (c->flags & SWS_CPU_CAPS_MMX2){
  512. switch(c->dstFormat){
  513. case PIX_FMT_RGB32: return yuv420_rgb32_MMX2;
  514. case PIX_FMT_BGR24: return yuv420_rgb24_MMX2;
  515. case PIX_FMT_BGR565: return yuv420_rgb16_MMX2;
  516. case PIX_FMT_BGR555: return yuv420_rgb15_MMX2;
  517. }
  518. }
  519. if (c->flags & SWS_CPU_CAPS_MMX){
  520. switch(c->dstFormat){
  521. case PIX_FMT_RGB32: return yuv420_rgb32_MMX;
  522. case PIX_FMT_BGR24: return yuv420_rgb24_MMX;
  523. case PIX_FMT_BGR565: return yuv420_rgb16_MMX;
  524. case PIX_FMT_BGR555: return yuv420_rgb15_MMX;
  525. }
  526. }
  527. #endif
  528. #ifdef HAVE_VIS
  529. {
  530. SwsFunc t= yuv2rgb_init_vis(c);
  531. if (t) return t;
  532. }
  533. #endif
  534. #ifdef HAVE_MLIB
  535. {
  536. SwsFunc t= yuv2rgb_init_mlib(c);
  537. if (t) return t;
  538. }
  539. #endif
  540. #ifdef HAVE_ALTIVEC
  541. if (c->flags & SWS_CPU_CAPS_ALTIVEC)
  542. {
  543. SwsFunc t = yuv2rgb_init_altivec(c);
  544. if (t) return t;
  545. }
  546. #endif
  547. #ifdef ARCH_BFIN
  548. if (c->flags & SWS_CPU_CAPS_BFIN)
  549. {
  550. SwsFunc t = ff_bfin_yuv2rgb_get_func_ptr (c);
  551. if (t) return t;
  552. }
  553. #endif
  554. av_log(c, AV_LOG_WARNING, "No accelerated colorspace conversion found\n");
  555. switch(c->dstFormat){
  556. case PIX_FMT_BGR32:
  557. case PIX_FMT_RGB32: return yuv2rgb_c_32;
  558. case PIX_FMT_RGB24: return yuv2rgb_c_24_rgb;
  559. case PIX_FMT_BGR24: return yuv2rgb_c_24_bgr;
  560. case PIX_FMT_RGB565:
  561. case PIX_FMT_BGR565:
  562. case PIX_FMT_RGB555:
  563. case PIX_FMT_BGR555: return yuv2rgb_c_16;
  564. case PIX_FMT_RGB8:
  565. case PIX_FMT_BGR8: return yuv2rgb_c_8_ordered_dither;
  566. case PIX_FMT_RGB4:
  567. case PIX_FMT_BGR4: return yuv2rgb_c_4_ordered_dither;
  568. case PIX_FMT_RGB4_BYTE:
  569. case PIX_FMT_BGR4_BYTE: return yuv2rgb_c_4b_ordered_dither;
  570. case PIX_FMT_MONOBLACK: return yuv2rgb_c_1_ordered_dither;
  571. default:
  572. assert(0);
  573. }
  574. return NULL;
  575. }
  576. static int div_round (int dividend, int divisor)
  577. {
  578. if (dividend > 0)
  579. return (dividend + (divisor>>1)) / divisor;
  580. else
  581. return -((-dividend + (divisor>>1)) / divisor);
  582. }
  583. int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation)
  584. {
  585. const int isRgb = isBGR(c->dstFormat);
  586. const int bpp = fmt_depth(c->dstFormat);
  587. int i;
  588. uint8_t table_Y[1024];
  589. uint32_t *table_32 = 0;
  590. uint16_t *table_16 = 0;
  591. uint8_t *table_8 = 0;
  592. uint8_t *table_332 = 0;
  593. uint8_t *table_121 = 0;
  594. uint8_t *table_1 = 0;
  595. int entry_size = 0;
  596. void *table_r = 0, *table_g = 0, *table_b = 0;
  597. void *table_start;
  598. int64_t crv = inv_table[0];
  599. int64_t cbu = inv_table[1];
  600. int64_t cgu = -inv_table[2];
  601. int64_t cgv = -inv_table[3];
  602. int64_t cy = 1<<16;
  603. int64_t oy = 0;
  604. //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv);
  605. if (!fullRange){
  606. cy= (cy*255) / 219;
  607. oy= 16<<16;
  608. }else{
  609. crv= (crv*224) / 255;
  610. cbu= (cbu*224) / 255;
  611. cgu= (cgu*224) / 255;
  612. cgv= (cgv*224) / 255;
  613. }
  614. cy = (cy *contrast )>>16;
  615. crv= (crv*contrast * saturation)>>32;
  616. cbu= (cbu*contrast * saturation)>>32;
  617. cgu= (cgu*contrast * saturation)>>32;
  618. cgv= (cgv*contrast * saturation)>>32;
  619. //printf("%lld %lld %lld %lld %lld\n", cy, crv, cbu, cgu, cgv);
  620. oy -= 256*brightness;
  621. for (i = 0; i < 1024; i++) {
  622. int j;
  623. j= (cy*(((i - 384)<<16) - oy) + (1<<31))>>32;
  624. j = (j < 0) ? 0 : ((j > 255) ? 255 : j);
  625. table_Y[i] = j;
  626. }
  627. switch (bpp) {
  628. case 32:
  629. table_start= table_32 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint32_t));
  630. entry_size = sizeof (uint32_t);
  631. table_r = table_32 + 197;
  632. table_b = table_32 + 197 + 685;
  633. table_g = table_32 + 197 + 2*682;
  634. for (i = -197; i < 256+197; i++)
  635. ((uint32_t *)table_r)[i] = table_Y[i+384] << (isRgb ? 16 : 0);
  636. for (i = -132; i < 256+132; i++)
  637. ((uint32_t *)table_g)[i] = table_Y[i+384] << 8;
  638. for (i = -232; i < 256+232; i++)
  639. ((uint32_t *)table_b)[i] = table_Y[i+384] << (isRgb ? 0 : 16);
  640. break;
  641. case 24:
  642. table_start= table_8 = av_malloc ((256 + 2*232) * sizeof (uint8_t));
  643. entry_size = sizeof (uint8_t);
  644. table_r = table_g = table_b = table_8 + 232;
  645. for (i = -232; i < 256+232; i++)
  646. ((uint8_t * )table_b)[i] = table_Y[i+384];
  647. break;
  648. case 15:
  649. case 16:
  650. table_start= table_16 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint16_t));
  651. entry_size = sizeof (uint16_t);
  652. table_r = table_16 + 197;
  653. table_b = table_16 + 197 + 685;
  654. table_g = table_16 + 197 + 2*682;
  655. for (i = -197; i < 256+197; i++) {
  656. int j = table_Y[i+384] >> 3;
  657. if (isRgb)
  658. j <<= ((bpp==16) ? 11 : 10);
  659. ((uint16_t *)table_r)[i] = j;
  660. }
  661. for (i = -132; i < 256+132; i++) {
  662. int j = table_Y[i+384] >> ((bpp==16) ? 2 : 3);
  663. ((uint16_t *)table_g)[i] = j << 5;
  664. }
  665. for (i = -232; i < 256+232; i++) {
  666. int j = table_Y[i+384] >> 3;
  667. if (!isRgb)
  668. j <<= ((bpp==16) ? 11 : 10);
  669. ((uint16_t *)table_b)[i] = j;
  670. }
  671. break;
  672. case 8:
  673. table_start= table_332 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
  674. entry_size = sizeof (uint8_t);
  675. table_r = table_332 + 197;
  676. table_b = table_332 + 197 + 685;
  677. table_g = table_332 + 197 + 2*682;
  678. for (i = -197; i < 256+197; i++) {
  679. int j = (table_Y[i+384 - 16] + 18)/36;
  680. if (isRgb)
  681. j <<= 5;
  682. ((uint8_t *)table_r)[i] = j;
  683. }
  684. for (i = -132; i < 256+132; i++) {
  685. int j = (table_Y[i+384 - 16] + 18)/36;
  686. if (!isRgb)
  687. j <<= 1;
  688. ((uint8_t *)table_g)[i] = j << 2;
  689. }
  690. for (i = -232; i < 256+232; i++) {
  691. int j = (table_Y[i+384 - 37] + 43)/85;
  692. if (!isRgb)
  693. j <<= 6;
  694. ((uint8_t *)table_b)[i] = j;
  695. }
  696. break;
  697. case 4:
  698. case 4|128:
  699. table_start= table_121 = av_malloc ((197 + 2*682 + 256 + 132) * sizeof (uint8_t));
  700. entry_size = sizeof (uint8_t);
  701. table_r = table_121 + 197;
  702. table_b = table_121 + 197 + 685;
  703. table_g = table_121 + 197 + 2*682;
  704. for (i = -197; i < 256+197; i++) {
  705. int j = table_Y[i+384 - 110] >> 7;
  706. if (isRgb)
  707. j <<= 3;
  708. ((uint8_t *)table_r)[i] = j;
  709. }
  710. for (i = -132; i < 256+132; i++) {
  711. int j = (table_Y[i+384 - 37]+ 43)/85;
  712. ((uint8_t *)table_g)[i] = j << 1;
  713. }
  714. for (i = -232; i < 256+232; i++) {
  715. int j =table_Y[i+384 - 110] >> 7;
  716. if (!isRgb)
  717. j <<= 3;
  718. ((uint8_t *)table_b)[i] = j;
  719. }
  720. break;
  721. case 1:
  722. table_start= table_1 = av_malloc (256*2 * sizeof (uint8_t));
  723. entry_size = sizeof (uint8_t);
  724. table_g = table_1;
  725. table_r = table_b = NULL;
  726. for (i = 0; i < 256+256; i++) {
  727. int j = table_Y[i + 384 - 110]>>7;
  728. ((uint8_t *)table_g)[i] = j;
  729. }
  730. break;
  731. default:
  732. table_start= NULL;
  733. av_log(c, AV_LOG_ERROR, "%ibpp not supported by yuv2rgb\n", bpp);
  734. //free mem?
  735. return -1;
  736. }
  737. for (i = 0; i < 256; i++) {
  738. c->table_rV[i] = (uint8_t *)table_r + entry_size * div_round (crv * (i-128), 76309);
  739. c->table_gU[i] = (uint8_t *)table_g + entry_size * div_round (cgu * (i-128), 76309);
  740. c->table_gV[i] = entry_size * div_round (cgv * (i-128), 76309);
  741. c->table_bU[i] = (uint8_t *)table_b + entry_size * div_round (cbu * (i-128), 76309);
  742. }
  743. av_free(c->yuvTable);
  744. c->yuvTable= table_start;
  745. return 0;
  746. }