yuv2rgb.c 21 KB

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