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.

276 lines
8.7KB

  1. /*
  2. * Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef FFMPEG_SWSCALE_INTERNAL_H
  21. #define FFMPEG_SWSCALE_INTERNAL_H
  22. #include "config.h"
  23. #ifdef HAVE_ALTIVEC_H
  24. #include <altivec.h>
  25. #endif
  26. #include "avutil.h"
  27. #define MAX_FILTER_SIZE 256
  28. typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
  29. int srcSliceH, uint8_t* dst[], int dstStride[]);
  30. /* this struct should be aligned on at least 32-byte boundary */
  31. typedef struct SwsContext{
  32. /**
  33. * info on struct for av_log
  34. */
  35. AVClass *av_class;
  36. /**
  37. * Note that src, dst, srcStride, dstStride will be copied in the
  38. * sws_scale() wrapper so they can be freely modified here.
  39. */
  40. SwsFunc swScale;
  41. int srcW, srcH, dstH;
  42. int chrSrcW, chrSrcH, chrDstW, chrDstH;
  43. int lumXInc, chrXInc;
  44. int lumYInc, chrYInc;
  45. int dstFormat, srcFormat; ///< format 4:2:0 type is always YV12
  46. int origDstFormat, origSrcFormat; ///< format
  47. int chrSrcHSubSample, chrSrcVSubSample;
  48. int chrIntHSubSample, chrIntVSubSample;
  49. int chrDstHSubSample, chrDstVSubSample;
  50. int vChrDrop;
  51. int sliceDir;
  52. double param[2];
  53. int16_t **lumPixBuf;
  54. int16_t **chrPixBuf;
  55. int16_t *hLumFilter;
  56. int16_t *hLumFilterPos;
  57. int16_t *hChrFilter;
  58. int16_t *hChrFilterPos;
  59. int16_t *vLumFilter;
  60. int16_t *vLumFilterPos;
  61. int16_t *vChrFilter;
  62. int16_t *vChrFilterPos;
  63. uint8_t formatConvBuffer[4000]; //FIXME dynamic alloc, but we have to change a lot of code for this to be useful
  64. int hLumFilterSize;
  65. int hChrFilterSize;
  66. int vLumFilterSize;
  67. int vChrFilterSize;
  68. int vLumBufSize;
  69. int vChrBufSize;
  70. uint8_t *funnyYCode;
  71. uint8_t *funnyUVCode;
  72. int32_t *lumMmx2FilterPos;
  73. int32_t *chrMmx2FilterPos;
  74. int16_t *lumMmx2Filter;
  75. int16_t *chrMmx2Filter;
  76. int canMMX2BeUsed;
  77. int lastInLumBuf;
  78. int lastInChrBuf;
  79. int lumBufIndex;
  80. int chrBufIndex;
  81. int dstY;
  82. int flags;
  83. void * yuvTable; // pointer to the yuv->rgb table start so it can be freed()
  84. uint8_t * table_rV[256];
  85. uint8_t * table_gU[256];
  86. int table_gV[256];
  87. uint8_t * table_bU[256];
  88. //Colorspace stuff
  89. int contrast, brightness, saturation; // for sws_getColorspaceDetails
  90. int srcColorspaceTable[4];
  91. int dstColorspaceTable[4];
  92. int srcRange, dstRange;
  93. #define RED_DITHER "0*8"
  94. #define GREEN_DITHER "1*8"
  95. #define BLUE_DITHER "2*8"
  96. #define Y_COEFF "3*8"
  97. #define VR_COEFF "4*8"
  98. #define UB_COEFF "5*8"
  99. #define VG_COEFF "6*8"
  100. #define UG_COEFF "7*8"
  101. #define Y_OFFSET "8*8"
  102. #define U_OFFSET "9*8"
  103. #define V_OFFSET "10*8"
  104. #define LUM_MMX_FILTER_OFFSET "11*8"
  105. #define CHR_MMX_FILTER_OFFSET "11*8+4*4*256"
  106. #define DSTW_OFFSET "11*8+4*4*256*2" //do not change, it is hardcoded in the asm
  107. #define ESP_OFFSET "11*8+4*4*256*2+8"
  108. #define VROUNDER_OFFSET "11*8+4*4*256*2+16"
  109. #define U_TEMP "11*8+4*4*256*2+24"
  110. #define V_TEMP "11*8+4*4*256*2+32"
  111. uint64_t redDither __attribute__((aligned(8)));
  112. uint64_t greenDither __attribute__((aligned(8)));
  113. uint64_t blueDither __attribute__((aligned(8)));
  114. uint64_t yCoeff __attribute__((aligned(8)));
  115. uint64_t vrCoeff __attribute__((aligned(8)));
  116. uint64_t ubCoeff __attribute__((aligned(8)));
  117. uint64_t vgCoeff __attribute__((aligned(8)));
  118. uint64_t ugCoeff __attribute__((aligned(8)));
  119. uint64_t yOffset __attribute__((aligned(8)));
  120. uint64_t uOffset __attribute__((aligned(8)));
  121. uint64_t vOffset __attribute__((aligned(8)));
  122. int32_t lumMmxFilter[4*MAX_FILTER_SIZE];
  123. int32_t chrMmxFilter[4*MAX_FILTER_SIZE];
  124. int dstW;
  125. uint64_t esp __attribute__((aligned(8)));
  126. uint64_t vRounder __attribute__((aligned(8)));
  127. uint64_t u_temp __attribute__((aligned(8)));
  128. uint64_t v_temp __attribute__((aligned(8)));
  129. #ifdef HAVE_ALTIVEC
  130. vector signed short CY;
  131. vector signed short CRV;
  132. vector signed short CBU;
  133. vector signed short CGU;
  134. vector signed short CGV;
  135. vector signed short OY;
  136. vector unsigned short CSHIFT;
  137. vector signed short *vYCoeffsBank, *vCCoeffsBank;
  138. #endif
  139. #ifdef ARCH_BFIN
  140. uint32_t oy __attribute__((aligned(4)));
  141. uint32_t oc __attribute__((aligned(4)));
  142. uint32_t zero __attribute__((aligned(4)));
  143. uint32_t cy __attribute__((aligned(4)));
  144. uint32_t crv __attribute__((aligned(4)));
  145. uint32_t rmask __attribute__((aligned(4)));
  146. uint32_t cbu __attribute__((aligned(4)));
  147. uint32_t bmask __attribute__((aligned(4)));
  148. uint32_t cgu __attribute__((aligned(4)));
  149. uint32_t cgv __attribute__((aligned(4)));
  150. uint32_t gmask __attribute__((aligned(4)));
  151. #endif
  152. #ifdef HAVE_VIS
  153. uint64_t sparc_coeffs[10] __attribute__((aligned(8)));
  154. #endif
  155. } SwsContext;
  156. //FIXME check init (where 0)
  157. SwsFunc yuv2rgb_get_func_ptr (SwsContext *c);
  158. int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation);
  159. void yuv2rgb_altivec_init_tables (SwsContext *c, const int inv_table[4],int brightness,int contrast, int saturation);
  160. SwsFunc yuv2rgb_init_altivec (SwsContext *c);
  161. void altivec_yuv2packedX (SwsContext *c,
  162. int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize,
  163. int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize,
  164. uint8_t *dest, int dstW, int dstY);
  165. char *sws_format_name(int format);
  166. //FIXME replace this with something faster
  167. #define isPlanarYUV(x) ( \
  168. (x)==PIX_FMT_YUV410P \
  169. || (x)==PIX_FMT_YUV420P \
  170. || (x)==PIX_FMT_YUV411P \
  171. || (x)==PIX_FMT_YUV422P \
  172. || (x)==PIX_FMT_YUV444P \
  173. || (x)==PIX_FMT_YUV440P \
  174. || (x)==PIX_FMT_NV12 \
  175. || (x)==PIX_FMT_NV21 \
  176. )
  177. #define isYUV(x) ( \
  178. (x)==PIX_FMT_UYVY422 \
  179. || (x)==PIX_FMT_YUYV422 \
  180. || isPlanarYUV(x) \
  181. )
  182. #define isGray(x) ( \
  183. (x)==PIX_FMT_GRAY8 \
  184. || (x)==PIX_FMT_GRAY16BE \
  185. || (x)==PIX_FMT_GRAY16LE \
  186. )
  187. #define isGray16(x) ( \
  188. (x)==PIX_FMT_GRAY16BE \
  189. || (x)==PIX_FMT_GRAY16LE \
  190. )
  191. #define isRGB(x) ( \
  192. (x)==PIX_FMT_BGR32 \
  193. || (x)==PIX_FMT_RGB24 \
  194. || (x)==PIX_FMT_RGB565 \
  195. || (x)==PIX_FMT_RGB555 \
  196. || (x)==PIX_FMT_RGB8 \
  197. || (x)==PIX_FMT_RGB4 \
  198. || (x)==PIX_FMT_RGB4_BYTE \
  199. || (x)==PIX_FMT_MONOBLACK \
  200. )
  201. #define isBGR(x) ( \
  202. (x)==PIX_FMT_RGB32 \
  203. || (x)==PIX_FMT_BGR24 \
  204. || (x)==PIX_FMT_BGR565 \
  205. || (x)==PIX_FMT_BGR555 \
  206. || (x)==PIX_FMT_BGR8 \
  207. || (x)==PIX_FMT_BGR4 \
  208. || (x)==PIX_FMT_BGR4_BYTE \
  209. || (x)==PIX_FMT_MONOBLACK \
  210. )
  211. static inline int fmt_depth(int fmt)
  212. {
  213. switch(fmt) {
  214. case PIX_FMT_BGRA:
  215. case PIX_FMT_ABGR:
  216. case PIX_FMT_RGBA:
  217. case PIX_FMT_ARGB:
  218. return 32;
  219. case PIX_FMT_BGR24:
  220. case PIX_FMT_RGB24:
  221. return 24;
  222. case PIX_FMT_BGR565:
  223. case PIX_FMT_RGB565:
  224. case PIX_FMT_GRAY16BE:
  225. case PIX_FMT_GRAY16LE:
  226. return 16;
  227. case PIX_FMT_BGR555:
  228. case PIX_FMT_RGB555:
  229. return 15;
  230. case PIX_FMT_BGR8:
  231. case PIX_FMT_RGB8:
  232. return 8;
  233. case PIX_FMT_BGR4:
  234. case PIX_FMT_RGB4:
  235. case PIX_FMT_BGR4_BYTE:
  236. case PIX_FMT_RGB4_BYTE:
  237. return 4;
  238. case PIX_FMT_MONOBLACK:
  239. return 1;
  240. default:
  241. return 0;
  242. }
  243. }
  244. #endif /* FFMPEG_SWSCALE_INTERNAL_H */