postprocess_internal.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:5k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.     Copyright (C) 2001-2002 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. /**
  16.  * @file postprocess_internal.h
  17.  * internal api header.
  18.  */
  19. #define V_DEBLOCK 0x01
  20. #define H_DEBLOCK 0x02
  21. #define DERING 0x04
  22. #define LEVEL_FIX 0x08 ///< Brightness & Contrast
  23. #define LUM_V_DEBLOCK V_DEBLOCK //   1
  24. #define LUM_H_DEBLOCK H_DEBLOCK //   2
  25. #define CHROM_V_DEBLOCK (V_DEBLOCK<<4) //  16
  26. #define CHROM_H_DEBLOCK (H_DEBLOCK<<4) //  32
  27. #define LUM_DERING DERING //   4
  28. #define CHROM_DERING (DERING<<4) //  64
  29. #define LUM_LEVEL_FIX LEVEL_FIX //   8
  30. #define CHROM_LEVEL_FIX (LEVEL_FIX<<4) // 128 (not implemented yet)
  31. // Experimental vertical filters
  32. #define V_X1_FILTER 0x0200 // 512
  33. #define V_A_DEBLOCK 0x0400
  34. // Experimental horizontal filters
  35. #define H_X1_FILTER 0x2000 // 8192
  36. #define H_A_DEBLOCK 0x4000
  37. /// select between full y range (255-0) or standart one (234-16)
  38. #define FULL_Y_RANGE 0x8000 // 32768
  39. //Deinterlacing Filters
  40. #define LINEAR_IPOL_DEINT_FILTER 0x10000 // 65536
  41. #define LINEAR_BLEND_DEINT_FILTER 0x20000 // 131072
  42. #define CUBIC_BLEND_DEINT_FILTER 0x8000 // (not implemented yet)
  43. #define CUBIC_IPOL_DEINT_FILTER 0x40000 // 262144
  44. #define MEDIAN_DEINT_FILTER 0x80000 // 524288
  45. #define FFMPEG_DEINT_FILTER 0x400000
  46. #define LOWPASS5_DEINT_FILTER 0x800000
  47. #define TEMP_NOISE_FILTER 0x100000
  48. #define FORCE_QUANT 0x200000
  49. //use if u want a faster postprocessing code
  50. //cant differentiate between chroma & luma filters (both on or both off)
  51. //obviosly the -pp option at the commandline has no effect except turning the here selected
  52. //filters on
  53. //#define COMPILE_TIME_MODE 0x77
  54. #if 1
  55. static inline int CLIP(int a){
  56. if(a&256) return ((a)>>31)^(-1);
  57. else      return a;
  58. }
  59. //#define CLIP(a) (((a)&256) ? ((a)>>31)^(-1) : (a))
  60. #elif 0
  61. #define CLIP(a) clip_tab[a]
  62. #else
  63. #define CLIP(a) (a)
  64. #endif
  65. /**
  66.  * Postprocessng filter.
  67.  */
  68. struct PPFilter{
  69. char *shortName;
  70. char *longName;
  71. int chromDefault;  ///< is chrominance filtering on by default if this filter is manually activated
  72. int minLumQuality;  ///< minimum quality to turn luminance filtering on
  73. int minChromQuality; ///< minimum quality to turn chrominance filtering on
  74. int mask;  ///< Bitmask to turn this filter on
  75. };
  76. /**
  77.  * Postprocessng mode.
  78.  */
  79. typedef struct PPMode{
  80. int lumMode;  ///< acivates filters for luminance
  81. int chromMode;  ///< acivates filters for chrominance
  82. int error;  ///< non zero on error
  83. int minAllowedY;  ///< for brigtness correction
  84. int maxAllowedY;  ///< for brihtness correction
  85. float maxClippedThreshold; ///< amount of "black" u r willing to loose to get a brightness corrected picture
  86. int maxTmpNoise[3];  ///< for Temporal Noise Reducing filter (Maximal sum of abs differences)
  87. int baseDcDiff;
  88. int flatnessThreshold;
  89. int forcedQuant;  ///< quantizer if FORCE_QUANT is used
  90. } PPMode;
  91. /**
  92.  * postprocess context.
  93.  */
  94. typedef struct PPContext{
  95. uint8_t *tempBlocks; ///<used for the horizontal code
  96. /**
  97.  * luma histogram.         
  98.  * we need 64bit here otherwise we'll going to have a problem
  99.  * after watching a black picture for 5 hours
  100.  */
  101. uint64_t *yHistogram;
  102. uint64_t __attribute__((aligned(8))) packedYOffset;
  103. uint64_t __attribute__((aligned(8))) packedYScale;
  104. /** Temporal noise reducing buffers */
  105. uint8_t *tempBlured[3];
  106. int32_t *tempBluredPast[3];
  107. /** Temporary buffers for handling the last row(s) */
  108. uint8_t *tempDst;
  109. uint8_t *tempSrc;
  110. uint8_t *deintTemp;
  111. uint64_t __attribute__((aligned(8))) pQPb;
  112. uint64_t __attribute__((aligned(8))) pQPb2;
  113. uint64_t __attribute__((aligned(8))) mmxDcOffset[64];
  114. uint64_t __attribute__((aligned(8))) mmxDcThreshold[64];
  115. QP_STORE_T *stdQPTable;       ///< used to fix MPEG2 style qscale
  116. QP_STORE_T *nonBQPTable;
  117. QP_STORE_T *forcedQPTable;
  118. int QP;
  119. int nonBQP;
  120. int frameNum;
  121. int cpuCaps;
  122.         
  123. int qpStride; ///<size of qp buffers (needed to realloc them if needed)
  124. int stride;   ///<size of some buffers (needed to realloc them if needed)
  125.         
  126. int hChromaSubSample;
  127. int vChromaSubSample;
  128. PPMode ppMode;
  129. } PPContext;
  130. static inline void linecpy(void *dest, void *src, int lines, int stride)
  131. {
  132. if (stride > 0) {
  133. memcpy(dest, src, lines*stride);
  134. } else {
  135. memcpy(dest+(lines-1)*stride, src+(lines-1)*stride, -lines*stride);
  136. }
  137. }