yuv2rgb.c 25 KB

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