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.

131 lines
4.0KB

  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_H
  16. #define SWSCALE_H
  17. /**
  18. * @file swscale.h
  19. * @brief
  20. * external api for the swscale stuff
  21. */
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* values for the flags, the stuff on the command line is different */
  26. #define SWS_FAST_BILINEAR 1
  27. #define SWS_BILINEAR 2
  28. #define SWS_BICUBIC 4
  29. #define SWS_X 8
  30. #define SWS_POINT 0x10
  31. #define SWS_AREA 0x20
  32. #define SWS_BICUBLIN 0x40
  33. #define SWS_GAUSS 0x80
  34. #define SWS_SINC 0x100
  35. #define SWS_LANCZOS 0x200
  36. #define SWS_SPLINE 0x400
  37. #define SWS_SRC_V_CHR_DROP_MASK 0x30000
  38. #define SWS_SRC_V_CHR_DROP_SHIFT 16
  39. #define SWS_PARAM_MASK 0x3FC0000
  40. #define SWS_PARAM_SHIFT 18
  41. #define SWS_PRINT_INFO 0x1000
  42. //the following 3 flags are not completly implemented
  43. //internal chrominace subsamling info
  44. #define SWS_FULL_CHR_H_INT 0x2000
  45. //input subsampling info
  46. #define SWS_FULL_CHR_H_INP 0x4000
  47. #define SWS_DIRECT_BGR 0x8000
  48. #define SWS_CPU_CAPS_MMX 0x80000000
  49. #define SWS_CPU_CAPS_MMX2 0x20000000
  50. #define SWS_CPU_CAPS_3DNOW 0x40000000
  51. #define SWS_CPU_CAPS_ALTIVEC 0x10000000
  52. #define SWS_MAX_REDUCE_CUTOFF 0.002
  53. #define SWS_CS_ITU709 1
  54. #define SWS_CS_FCC 4
  55. #define SWS_CS_ITU601 5
  56. #define SWS_CS_ITU624 5
  57. #define SWS_CS_SMPTE170M 5
  58. #define SWS_CS_SMPTE240M 7
  59. #define SWS_CS_DEFAULT 5
  60. // when used for filters they must have an odd number of elements
  61. // coeffs cannot be shared between vectors
  62. typedef struct {
  63. double *coeff;
  64. int length;
  65. } SwsVector;
  66. // vectors can be shared
  67. typedef struct {
  68. SwsVector *lumH;
  69. SwsVector *lumV;
  70. SwsVector *chrH;
  71. SwsVector *chrV;
  72. } SwsFilter;
  73. struct SwsContext;
  74. void sws_freeContext(struct SwsContext *swsContext);
  75. struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat, int flags,
  76. SwsFilter *srcFilter, SwsFilter *dstFilter);
  77. int sws_scale(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
  78. int srcSliceH, uint8_t* dst[], int dstStride[]);
  79. int sws_scale_ordered(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
  80. int srcSliceH, uint8_t* dst[], int dstStride[]);
  81. int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation);
  82. int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation);
  83. SwsVector *sws_getGaussianVec(double variance, double quality);
  84. SwsVector *sws_getConstVec(double c, int length);
  85. SwsVector *sws_getIdentityVec(void);
  86. void sws_scaleVec(SwsVector *a, double scalar);
  87. void sws_normalizeVec(SwsVector *a, double height);
  88. void sws_convVec(SwsVector *a, SwsVector *b);
  89. void sws_addVec(SwsVector *a, SwsVector *b);
  90. void sws_subVec(SwsVector *a, SwsVector *b);
  91. void sws_shiftVec(SwsVector *a, int shift);
  92. SwsVector *sws_cloneVec(SwsVector *a);
  93. void sws_printVec(SwsVector *a);
  94. void sws_freeVec(SwsVector *a);
  95. SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur,
  96. float lumaSarpen, float chromaSharpen,
  97. float chromaHShift, float chromaVShift,
  98. int verbose);
  99. void sws_freeFilter(SwsFilter *filter);
  100. #ifdef __cplusplus
  101. }
  102. #endif
  103. #endif