jdcolor-altivec.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * AltiVec optimizations for libjpeg-turbo
  3. *
  4. * Copyright (C) 2015, D. R. Commander. All Rights Reserved.
  5. *
  6. * This software is provided 'as-is', without any express or implied
  7. * warranty. In no event will the authors be held liable for any damages
  8. * arising from the use of this software.
  9. *
  10. * Permission is granted to anyone to use this software for any purpose,
  11. * including commercial applications, and to alter it and redistribute it
  12. * freely, subject to the following restrictions:
  13. *
  14. * 1. The origin of this software must not be misrepresented; you must not
  15. * claim that you wrote the original software. If you use this software
  16. * in a product, an acknowledgment in the product documentation would be
  17. * appreciated but is not required.
  18. * 2. Altered source versions must be plainly marked as such, and must not be
  19. * misrepresented as being the original software.
  20. * 3. This notice may not be removed or altered from any source distribution.
  21. */
  22. /* YCC --> RGB CONVERSION */
  23. #include "jsimd_altivec.h"
  24. #define F_0_344 22554 /* FIX(0.34414) */
  25. #define F_0_714 46802 /* FIX(0.71414) */
  26. #define F_1_402 91881 /* FIX(1.40200) */
  27. #define F_1_772 116130 /* FIX(1.77200) */
  28. #define F_0_402 (F_1_402 - 65536) /* FIX(1.40200) - FIX(1) */
  29. #define F_0_285 (65536 - F_0_714) /* FIX(1) - FIX(0.71414) */
  30. #define F_0_228 (131072 - F_1_772) /* FIX(2) - FIX(1.77200) */
  31. #define SCALEBITS 16
  32. #define ONE_HALF (1 << (SCALEBITS - 1))
  33. #define RGB_INDEX0 {0,1,8,2,3,10,4,5,12,6,7,14,16,17,24,18}
  34. #define RGB_INDEX1 {3,10,4,5,12,6,7,14,16,17,24,18,19,26,20,21}
  35. #define RGB_INDEX2 {12,6,7,14,16,17,24,18,19,26,20,21,28,22,23,30}
  36. #include "jdcolext-altivec.c"
  37. #undef RGB_PIXELSIZE
  38. #define RGB_PIXELSIZE EXT_RGB_PIXELSIZE
  39. #define jsimd_ycc_rgb_convert_altivec jsimd_ycc_extrgb_convert_altivec
  40. #include "jdcolext-altivec.c"
  41. #undef RGB_PIXELSIZE
  42. #undef RGB_INDEX0
  43. #undef RGB_INDEX1
  44. #undef RGB_INDEX2
  45. #undef jsimd_ycc_rgb_convert_altivec
  46. #define RGB_PIXELSIZE EXT_RGBX_PIXELSIZE
  47. #define RGB_INDEX {0,1,8,9,2,3,10,11,4,5,12,13,6,7,14,15}
  48. #define jsimd_ycc_rgb_convert_altivec jsimd_ycc_extrgbx_convert_altivec
  49. #include "jdcolext-altivec.c"
  50. #undef RGB_PIXELSIZE
  51. #undef RGB_INDEX
  52. #undef jsimd_ycc_rgb_convert_altivec
  53. #define RGB_PIXELSIZE EXT_BGR_PIXELSIZE
  54. #define RGB_INDEX0 {8,1,0,10,3,2,12,5,4,14,7,6,24,17,16,26}
  55. #define RGB_INDEX1 {3,2,12,5,4,14,7,6,24,17,16,26,19,18,28,21}
  56. #define RGB_INDEX2 {4,14,7,6,24,17,16,26,19,18,28,21,20,30,23,22}
  57. #define jsimd_ycc_rgb_convert_altivec jsimd_ycc_extbgr_convert_altivec
  58. #include "jdcolext-altivec.c"
  59. #undef RGB_PIXELSIZE
  60. #undef RGB_INDEX0
  61. #undef RGB_INDEX1
  62. #undef RGB_INDEX2
  63. #undef jsimd_ycc_rgb_convert_altivec
  64. #define RGB_PIXELSIZE EXT_BGRX_PIXELSIZE
  65. #define RGB_INDEX {8,1,0,9,10,3,2,11,12,5,4,13,14,7,6,15}
  66. #define jsimd_ycc_rgb_convert_altivec jsimd_ycc_extbgrx_convert_altivec
  67. #include "jdcolext-altivec.c"
  68. #undef RGB_PIXELSIZE
  69. #undef RGB_INDEX
  70. #undef jsimd_ycc_rgb_convert_altivec
  71. #define RGB_PIXELSIZE EXT_XBGR_PIXELSIZE
  72. #define RGB_INDEX {9,8,1,0,11,10,3,2,13,12,5,4,15,14,7,6}
  73. #define jsimd_ycc_rgb_convert_altivec jsimd_ycc_extxbgr_convert_altivec
  74. #include "jdcolext-altivec.c"
  75. #undef RGB_PIXELSIZE
  76. #undef RGB_INDEX
  77. #undef jsimd_ycc_rgb_convert_altivec
  78. #define RGB_PIXELSIZE EXT_XRGB_PIXELSIZE
  79. #define RGB_INDEX {9,0,1,8,11,2,3,10,13,4,5,12,15,6,7,14}
  80. #define jsimd_ycc_rgb_convert_altivec jsimd_ycc_extxrgb_convert_altivec
  81. #include "jdcolext-altivec.c"
  82. #undef RGB_PIXELSIZE
  83. #undef RGB_INDEX
  84. #undef jsimd_ycc_rgb_convert_altivec