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.

408 lines
13KB

  1. #include "avutil.h"
  2. #include "swscale.h"
  3. #include "swscale_internal.h"
  4. #define YTABLE_MIN 384
  5. /**
  6. * YUV -> RGB conversion matrixes (inverse of table 6.9 in MPEG2 standard)
  7. *
  8. * An YUV -> RGB conversion matrix is in the form
  9. * | 1 0 Rv |
  10. * | 1 Gu Gv |
  11. * | 1 Bu 0 |
  12. *
  13. * Inverse_Table_6_9 stores | Rv Bu Gv Gu | * 255/224*2^16.
  14. * \arg Maximum Rv value: 117570
  15. * \arg Maximum Bu value: 138420
  16. * \arg Maximum Gv + Gu value: 25642 + 53281 = 78923
  17. *
  18. * These values are needed to allocate table_{r, g, b}. If you modify
  19. * this table, please update allocate_tables() accordingly
  20. */
  21. const int32_t Inverse_Table_6_9[8][4] = {
  22. {0, 0, 0, 0}, /* no sequence_display_extension */
  23. {117500, 138420, -13985, -34933}, /* ITU-R Rec. 709 (1990) */
  24. {0, 0, 0, 0}, /* unspecified */
  25. {0, 0, 0, 0}, /* reserved */
  26. {104480, 132820, -24811, -53150}, /* FCC */
  27. {104570, 132210, -25642, -53281}, /* ITU-R Rec. 624-4 System B, G */
  28. {104570, 132210, -25642, -53281}, /* SMPTE 170M */
  29. {117570, 136230, -16892, -35552} /* SMPTE 240M (1987) */
  30. };
  31. /**
  32. * Dithering matrixes (these are bayer ordered dither matrixes
  33. * with some manual changes by Michael)
  34. */
  35. const uint8_t __attribute__((aligned(8))) dither_2x2_4[2][8]={
  36. { 1, 3, 1, 3, 1, 3, 1, 3, },
  37. { 2, 0, 2, 0, 2, 0, 2, 0, },
  38. };
  39. const uint8_t __attribute__((aligned(8))) dither_2x2_8[2][8]={
  40. { 6, 2, 6, 2, 6, 2, 6, 2, },
  41. { 0, 4, 0, 4, 0, 4, 0, 4, },
  42. };
  43. const uint8_t __attribute__((aligned(8))) dither_8x8_32[8][8]={
  44. { 17, 9, 23, 15, 16, 8, 22, 14, },
  45. { 5, 29, 3, 27, 4, 28, 2, 26, },
  46. { 21, 13, 19, 11, 20, 12, 18, 10, },
  47. { 0, 24, 6, 30, 1, 25, 7, 31, },
  48. { 16, 8, 22, 14, 17, 9, 23, 15, },
  49. { 4, 28, 2, 26, 5, 29, 3, 27, },
  50. { 20, 12, 18, 10, 21, 13, 19, 11, },
  51. { 1, 25, 7, 31, 0, 24, 6, 30, },
  52. };
  53. #if 0
  54. const uint8_t __attribute__((aligned(8))) dither_8x8_64[8][8]={
  55. { 0, 48, 12, 60, 3, 51, 15, 63, },
  56. { 32, 16, 44, 28, 35, 19, 47, 31, },
  57. { 8, 56, 4, 52, 11, 59, 7, 55, },
  58. { 40, 24, 36, 20, 43, 27, 39, 23, },
  59. { 2, 50, 14, 62, 1, 49, 13, 61, },
  60. { 34, 18, 46, 30, 33, 17, 45, 29, },
  61. { 10, 58, 6, 54, 9, 57, 5, 53, },
  62. { 42, 26, 38, 22, 41, 25, 37, 21, },
  63. };
  64. #endif
  65. const uint8_t __attribute__((aligned(8))) dither_8x8_73[8][8]={
  66. { 0, 55, 14, 68, 3, 58, 17, 72, },
  67. { 37, 18, 50, 32, 40, 22, 54, 35, },
  68. { 9, 64, 5, 59, 13, 67, 8, 63, },
  69. { 46, 27, 41, 23, 49, 31, 44, 26, },
  70. { 2, 57, 16, 71, 1, 56, 15, 70, },
  71. { 39, 21, 52, 34, 38, 19, 51, 33, },
  72. { 11, 66, 7, 62, 10, 65, 6, 60, },
  73. { 48, 30, 43, 25, 47, 29, 42, 24, },
  74. };
  75. #if 0
  76. const uint8_t __attribute__((aligned(8))) dither_8x8_128[8][8]={
  77. { 68, 36, 92, 60, 66, 34, 90, 58, },
  78. { 20, 116, 12, 108, 18, 114, 10, 106, },
  79. { 84, 52, 76, 44, 82, 50, 74, 42, },
  80. { 0, 96, 24, 120, 6, 102, 30, 126, },
  81. { 64, 32, 88, 56, 70, 38, 94, 62, },
  82. { 16, 112, 8, 104, 22, 118, 14, 110, },
  83. { 80, 48, 72, 40, 86, 54, 78, 46, },
  84. { 4, 100, 28, 124, 2, 98, 26, 122, },
  85. };
  86. #endif
  87. #if 1
  88. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  89. {117, 62, 158, 103, 113, 58, 155, 100, },
  90. { 34, 199, 21, 186, 31, 196, 17, 182, },
  91. {144, 89, 131, 76, 141, 86, 127, 72, },
  92. { 0, 165, 41, 206, 10, 175, 52, 217, },
  93. {110, 55, 151, 96, 120, 65, 162, 107, },
  94. { 28, 193, 14, 179, 38, 203, 24, 189, },
  95. {138, 83, 124, 69, 148, 93, 134, 79, },
  96. { 7, 172, 48, 213, 3, 168, 45, 210, },
  97. };
  98. #elif 1
  99. // tries to correct a gamma of 1.5
  100. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  101. { 0, 143, 18, 200, 2, 156, 25, 215, },
  102. { 78, 28, 125, 64, 89, 36, 138, 74, },
  103. { 10, 180, 3, 161, 16, 195, 8, 175, },
  104. {109, 51, 93, 38, 121, 60, 105, 47, },
  105. { 1, 152, 23, 210, 0, 147, 20, 205, },
  106. { 85, 33, 134, 71, 81, 30, 130, 67, },
  107. { 14, 190, 6, 171, 12, 185, 5, 166, },
  108. {117, 57, 101, 44, 113, 54, 97, 41, },
  109. };
  110. #elif 1
  111. // tries to correct a gamma of 2.0
  112. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  113. { 0, 124, 8, 193, 0, 140, 12, 213, },
  114. { 55, 14, 104, 42, 66, 19, 119, 52, },
  115. { 3, 168, 1, 145, 6, 187, 3, 162, },
  116. { 86, 31, 70, 21, 99, 39, 82, 28, },
  117. { 0, 134, 11, 206, 0, 129, 9, 200, },
  118. { 62, 17, 114, 48, 58, 16, 109, 45, },
  119. { 5, 181, 2, 157, 4, 175, 1, 151, },
  120. { 95, 36, 78, 26, 90, 34, 74, 24, },
  121. };
  122. #else
  123. // tries to correct a gamma of 2.5
  124. const uint8_t __attribute__((aligned(8))) dither_8x8_220[8][8]={
  125. { 0, 107, 3, 187, 0, 125, 6, 212, },
  126. { 39, 7, 86, 28, 49, 11, 102, 36, },
  127. { 1, 158, 0, 131, 3, 180, 1, 151, },
  128. { 68, 19, 52, 12, 81, 25, 64, 17, },
  129. { 0, 119, 5, 203, 0, 113, 4, 195, },
  130. { 45, 9, 96, 33, 42, 8, 91, 30, },
  131. { 2, 172, 1, 144, 2, 165, 0, 137, },
  132. { 77, 23, 60, 15, 72, 21, 56, 14, },
  133. };
  134. #endif
  135. static int get_entry_size(int bpp)
  136. {
  137. switch(bpp) {
  138. case 32:
  139. return 4;
  140. case 16:
  141. case 15:
  142. return 2;
  143. case 24:
  144. case 8:
  145. case 4:
  146. case 1:
  147. return 1;
  148. default:
  149. return -1;
  150. }
  151. }
  152. /**
  153. * Allocate table_r, table_g, and table_b
  154. *
  155. * For cache efficency reasons, these three tables are allocated
  156. * together, so that they are contiguous in memory
  157. *
  158. * table_r is indexed in the range
  159. * [-128 * 117570 / 76309, 255 + 127 * 117570 / 76309] =
  160. * [-197.21, 451.67] ---> [-198, 452]
  161. * table_b is indexed in the range
  162. * [-128 * 138420 / 76309, 255 + 127 * 138420 / 76309] =
  163. * [232.18, 485.37] ---> [-233, 486]
  164. * table_g is indexed in the range
  165. * [-128 * 78923 / 76309, 255 + 127 * 78923 / 76309] =
  166. * [-132.38, 386.35] ---> [-133, 387]
  167. *
  168. * Please look at the comments after Inverse_Table_6_9 to see where these
  169. * numbers are coming from.
  170. */
  171. static void *allocate_tables(uint8_t **table_r, uint8_t **table_g, uint8_t **table_b, int bpp)
  172. {
  173. uint8_t *table;
  174. int entry_size;
  175. entry_size = get_entry_size(bpp);
  176. /* First allocate the memory... */
  177. switch (bpp) {
  178. case 32:
  179. case 15:
  180. case 16:
  181. case 8:
  182. case 4:
  183. table = av_malloc((198 + 452 + 233 + 486 + 133 + 387) * entry_size);
  184. break;
  185. case 24:
  186. table = av_malloc(256 + 2 * 233);
  187. break;
  188. case 1:
  189. table = av_malloc (256 * 2);
  190. break;
  191. default:
  192. table = NULL;
  193. }
  194. if (table == NULL) {
  195. MSG_ERR("Cannot allocate memory for the YUV -> RGB tables!\n");
  196. return NULL;
  197. }
  198. /* ...and then, assign the table_* value */
  199. switch (bpp) {
  200. case 32:
  201. case 15:
  202. case 16:
  203. case 8:
  204. case 4:
  205. *table_r = table + 198 * entry_size;
  206. *table_b = table + (198 + 452 + 133 + 387 + 233) * entry_size;
  207. *table_g = table + (198 + 452 + 133) * entry_size;
  208. break;
  209. case 24:
  210. *table_r = *table_g = *table_b = table + 233;
  211. break;
  212. case 1:
  213. *table_g = table;
  214. *table_r = *table_b = NULL;
  215. break;
  216. }
  217. return table;
  218. }
  219. /**
  220. * Initialize the table_rV, table_gU[i], table_gV, and table_bU fields
  221. * in SwsContext
  222. *
  223. * @param inv_table the YUV -> RGB table (this is a line of Inverse_Table_6_9)
  224. * @param fullRange 0->MPEG YUV space 1->JPEG YUV space
  225. */
  226. int yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation)
  227. {
  228. int i;
  229. static uint8_t ytable[1024];
  230. int64_t cy, oy;
  231. int64_t crv, cbu, cgu, cgv;
  232. int entry_size = 0;
  233. uint8_t *table_r, *table_g, *table_b;
  234. int value;
  235. if ((inv_table[0] == 0) || (inv_table[1] == 0) || (inv_table[2] == 0) || (inv_table[3] == 0)) {
  236. MSG_ERR("Invalid YUV ---> RGB table!\n");
  237. return -1;
  238. }
  239. crv = inv_table[0];
  240. cbu = inv_table[1];
  241. cgu = inv_table[2];
  242. cgv = inv_table[3];
  243. if (fullRange) {
  244. cy = 1 << 16;
  245. oy = 0;
  246. } else {
  247. cy = ((1 << 16) * 255) / 219;
  248. oy= 16 << 16;
  249. }
  250. cy = (cy *contrast )>>16;
  251. crv= (crv*contrast * saturation)>>32;
  252. cbu= (cbu*contrast * saturation)>>32;
  253. cgu= (cgu*contrast * saturation)>>32;
  254. cgv= (cgv*contrast * saturation)>>32;
  255. oy -= 256*brightness;
  256. for (i = 0; i < 1024; i++) {
  257. value = (cy*(((i - YTABLE_MIN)<<16) - oy) + (1<<31))>>32;
  258. ytable[i] = av_clip_uint8(value);
  259. }
  260. entry_size = get_entry_size(fmt_depth(c->dstFormat));
  261. av_free(c->yuvTable);
  262. c->yuvTable = allocate_tables(&table_r, &table_g, &table_b, fmt_depth(c->dstFormat));
  263. if (c->yuvTable == NULL) {
  264. return -1;
  265. }
  266. switch (fmt_depth(c->dstFormat)) {
  267. case 32:
  268. for (i = -198; i < 256 + 197; i++) {
  269. value = ytable[i + YTABLE_MIN];
  270. if (isBGR(c->dstFormat)) {
  271. value <<= 16;
  272. }
  273. ((uint32_t *)table_r)[i] = value;
  274. }
  275. for (i = -133; i < 256 + 132; i++) {
  276. ((uint32_t *)table_g)[i] = ytable[i + YTABLE_MIN] << 8;
  277. }
  278. for (i = -233; i < 256 + 232; i++) {
  279. value = ytable[i + YTABLE_MIN];
  280. if (!isBGR(c->dstFormat)) {
  281. value <<= 16;
  282. }
  283. ((uint32_t *)table_b)[i] = value;
  284. }
  285. break;
  286. case 24:
  287. for (i = -233; i < 256 + 232; i++) {
  288. ((uint8_t * )table_b)[i] = ytable[i + YTABLE_MIN];
  289. }
  290. break;
  291. case 15:
  292. case 16:
  293. for (i = -198; i < 256 + 197; i++) {
  294. value = ytable[i + YTABLE_MIN] >> 3;
  295. if (isBGR(c->dstFormat)) {
  296. value <<= ((fmt_depth(c->dstFormat) == 16) ? 11 : 10);
  297. }
  298. ((uint16_t *)table_r)[i] = value;
  299. }
  300. for (i = -133; i < 256 + 132; i++) {
  301. value = ytable[i + YTABLE_MIN];
  302. value >>= ((fmt_depth(c->dstFormat) == 16) ? 2 : 3);
  303. ((uint16_t *)table_g)[i] = value << 5;
  304. }
  305. for (i = -233; i < 256 + 232; i++) {
  306. value = ytable[i + YTABLE_MIN] >> 3;
  307. if (!isBGR(c->dstFormat)) {
  308. value <<= ((fmt_depth(c->dstFormat) == 16) ? 11 : 10);
  309. }
  310. ((uint16_t *)table_b)[i] = value;
  311. }
  312. break;
  313. case 8:
  314. for (i = -198; i < 256 + 197; i++) {
  315. value = (ytable[i + YTABLE_MIN - 16] + 18) / 36;
  316. if (isBGR(c->dstFormat)) {
  317. value <<= 5;
  318. }
  319. ((uint8_t *)table_r)[i] = value;
  320. }
  321. for (i = -133; i < 256 + 132; i++) {
  322. value = (ytable[i + YTABLE_MIN - 16] + 18) / 36;
  323. if (!isBGR(c->dstFormat)) {
  324. value <<= 1;
  325. }
  326. ((uint8_t *)table_g)[i] = value << 2;
  327. }
  328. for (i = -233; i < 256 + 232; i++) {
  329. value = (ytable[i + YTABLE_MIN - 37] + 43) / 85;
  330. if (!isBGR(c->dstFormat)) {
  331. value <<= 6;
  332. }
  333. ((uint8_t *)table_b)[i] = value;
  334. }
  335. break;
  336. case 4:
  337. for (i = -198; i < 256 + 197; i++) {
  338. value = ytable[i + YTABLE_MIN - 110] >> 7;
  339. if (isBGR(c->dstFormat)) {
  340. value <<= 3;
  341. }
  342. ((uint8_t *)table_r)[i] = value;
  343. }
  344. for (i = -133; i < 256 + 132; i++) {
  345. value = (ytable[i + YTABLE_MIN - 37]+ 43) / 85;
  346. ((uint8_t *)table_g)[i] = value << 1;
  347. }
  348. for (i = -233; i < 256 + 232; i++) {
  349. value = ytable[i + YTABLE_MIN - 110] >> 7;
  350. if (!isBGR(c->dstFormat)) {
  351. value <<= 3;
  352. }
  353. ((uint8_t *)table_b)[i] = value;
  354. }
  355. break;
  356. case 1:
  357. for (i = 0; i < 256 + 256; i++) {
  358. value = ytable[i + YTABLE_MIN - 110] >> 7;
  359. ((uint8_t *)table_g)[i] = value;
  360. }
  361. break;
  362. default:
  363. MSG_ERR("%ibpp not supported by yuv2rgb\n", fmt_depth(c->dstFormat));
  364. av_free(c->yuvTable);
  365. c->yuvTable = NULL;
  366. return -1;
  367. }
  368. for (i = 0; i < 256; i++) {
  369. c->table_rV[i] = table_r +
  370. entry_size * ROUNDED_DIV(crv * (i - 128), 76309);
  371. c->table_gU[i] = table_g +
  372. entry_size * ROUNDED_DIV(cgu * (i - 128), 76309);
  373. c->table_gV[i] = entry_size * ROUNDED_DIV(cgv * (i - 128), 76309);
  374. c->table_bU[i] = table_b +
  375. entry_size * ROUNDED_DIV(cbu * (i - 128), 76309);
  376. }
  377. return 0;
  378. }