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.

190 lines
6.0KB

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