swscale_internal.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:5k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*
  2.     Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at>
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. */
  15. #ifndef SWSCALE_INTERNAL_H
  16. #define SWSCALE_INTERNAL_H
  17. #ifdef HAVE_ALTIVEC_H
  18. #include <altivec.h>
  19. #endif
  20. #define MSG_WARN(args...) mp_msg(MSGT_SWS,MSGL_WARN, ##args )
  21. #define MSG_FATAL(args...) mp_msg(MSGT_SWS,MSGL_FATAL, ##args )
  22. #define MSG_ERR(args...) mp_msg(MSGT_SWS,MSGL_ERR, ##args )
  23. #define MSG_V(args...) mp_msg(MSGT_SWS,MSGL_V, ##args )
  24. #define MSG_DBG2(args...) mp_msg(MSGT_SWS,MSGL_DBG2, ##args )
  25. #define MSG_INFO(args...) mp_msg(MSGT_SWS,MSGL_INFO, ##args )
  26. #define MAX_FILTER_SIZE 256
  27. typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
  28.              int srcSliceH, uint8_t* dst[], int dstStride[]);
  29. /* this struct should be aligned on at least 32-byte boundary */
  30. typedef struct SwsContext{
  31. /**
  32.  *
  33.  * Note the src,dst,srcStride,dstStride will be copied, in the sws_scale() warper so they can freely be modified here
  34.  */
  35. SwsFunc swScale;
  36. int srcW, srcH, dstH;
  37. int chrSrcW, chrSrcH, chrDstW, chrDstH;
  38. int lumXInc, chrXInc;
  39. int lumYInc, chrYInc;
  40. int dstFormat, srcFormat;               ///< format 4:2:0 type is allways YV12
  41. int origDstFormat, origSrcFormat;       ///< format
  42. int chrSrcHSubSample, chrSrcVSubSample;
  43. int chrIntHSubSample, chrIntVSubSample;
  44. int chrDstHSubSample, chrDstVSubSample;
  45. int vChrDrop;
  46. int16_t **lumPixBuf;
  47. int16_t **chrPixBuf;
  48. int16_t *hLumFilter;
  49. int16_t *hLumFilterPos;
  50. int16_t *hChrFilter;
  51. int16_t *hChrFilterPos;
  52. int16_t *vLumFilter;
  53. int16_t *vLumFilterPos;
  54. int16_t *vChrFilter;
  55. int16_t *vChrFilterPos;
  56. uint8_t formatConvBuffer[4000]; //FIXME dynamic alloc, but we have to change alot of code for this to be usefull
  57. int hLumFilterSize;
  58. int hChrFilterSize;
  59. int vLumFilterSize;
  60. int vChrFilterSize;
  61. int vLumBufSize;
  62. int vChrBufSize;
  63. uint8_t __attribute__((aligned(32))) funnyYCode[10000];
  64. uint8_t __attribute__((aligned(32))) funnyUVCode[10000];
  65. int32_t *lumMmx2FilterPos;
  66. int32_t *chrMmx2FilterPos;
  67. int16_t *lumMmx2Filter;
  68. int16_t *chrMmx2Filter;
  69. int canMMX2BeUsed;
  70. int lastInLumBuf;
  71. int lastInChrBuf;
  72. int lumBufIndex;
  73. int chrBufIndex;
  74. int dstY;
  75. int flags;
  76. void * yuvTable; // pointer to the yuv->rgb table start so it can be freed()
  77. void * table_rV[256];
  78. void * table_gU[256];
  79. int    table_gV[256];
  80. void * table_bU[256];
  81. //Colorspace stuff
  82. int contrast, brightness, saturation; // for sws_getColorspaceDetails
  83. int srcColorspaceTable[4];
  84. int dstColorspaceTable[4];
  85. int srcRange, dstRange;
  86. #define RED_DITHER   "0*8"
  87. #define GREEN_DITHER "1*8"
  88. #define BLUE_DITHER  "2*8"
  89. #define Y_COEFF      "3*8"
  90. #define VR_COEFF     "4*8"
  91. #define UB_COEFF     "5*8"
  92. #define VG_COEFF     "6*8"
  93. #define UG_COEFF     "7*8"
  94. #define Y_OFFSET     "8*8"
  95. #define U_OFFSET     "9*8"
  96. #define V_OFFSET     "10*8"
  97. #define LUM_MMX_FILTER_OFFSET "11*8"
  98. #define CHR_MMX_FILTER_OFFSET "11*8+4*4*256"
  99. #define DSTW_OFFSET  "11*8+4*4*256*2" //do not change, its hardcoded in the asm
  100. #define ESP_OFFSET  "11*8+4*4*256*2+4"
  101. #define VROUNDER_OFFSET "11*8+4*4*256*2+8"
  102.                   
  103. uint64_t redDither   __attribute__((aligned(8)));
  104. uint64_t greenDither __attribute__((aligned(8)));
  105. uint64_t blueDither  __attribute__((aligned(8)));
  106. uint64_t yCoeff      __attribute__((aligned(8)));
  107. uint64_t vrCoeff     __attribute__((aligned(8)));
  108. uint64_t ubCoeff     __attribute__((aligned(8)));
  109. uint64_t vgCoeff     __attribute__((aligned(8)));
  110. uint64_t ugCoeff     __attribute__((aligned(8)));
  111. uint64_t yOffset     __attribute__((aligned(8)));
  112. uint64_t uOffset     __attribute__((aligned(8)));
  113. uint64_t vOffset     __attribute__((aligned(8)));
  114. int32_t  lumMmxFilter[4*MAX_FILTER_SIZE];
  115. int32_t  chrMmxFilter[4*MAX_FILTER_SIZE];
  116. int dstW;
  117. int esp;
  118. uint64_t vRounder     __attribute__((aligned(8)));
  119. #ifdef HAVE_ALTIVEC
  120.   vector signed short   CY;
  121.   vector signed short   CRV;
  122.   vector signed short   CBU;
  123.   vector signed short   CGU;
  124.   vector signed short   CGV;
  125.   vector signed short   OY;
  126.   vector unsigned short CSHIFT;
  127. #endif
  128. } SwsContext;
  129. //FIXME check init (where 0)
  130. SwsFunc yuv2rgb_get_func_ptr (SwsContext *c);
  131. int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation);
  132. #endif