dirac_dwt.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (C) 2004-2010 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 AVCODEC_DIRAC_DWT_H
  21. #define AVCODEC_DIRAC_DWT_H
  22. #include <stdint.h>
  23. typedef int DWTELEM;
  24. typedef short IDWTELEM;
  25. #define MAX_DWT_SUPPORT 8
  26. #define MAX_DECOMPOSITIONS 8
  27. typedef struct DWTCompose {
  28. uint8_t *b[MAX_DWT_SUPPORT];
  29. int y;
  30. } DWTCompose;
  31. typedef struct DWTPlane {
  32. int width;
  33. int height;
  34. int stride;
  35. uint8_t *buf;
  36. uint8_t *buf_base;
  37. uint8_t *tmp;
  38. } DWTPlane;
  39. struct DWTContext;
  40. // Possible prototypes for vertical_compose functions
  41. typedef void (*vertical_compose_2tap)(uint8_t *b0, uint8_t *b1, int width);
  42. typedef void (*vertical_compose_3tap)(uint8_t *b0, uint8_t *b1, uint8_t *b2, int width);
  43. typedef void (*vertical_compose_5tap)(uint8_t *b0, uint8_t *b1, uint8_t *b2, uint8_t *b3, uint8_t *b4, int width);
  44. typedef void (*vertical_compose_9tap)(uint8_t *dst, uint8_t *b[8], int width);
  45. typedef struct DWTContext {
  46. uint8_t *buffer;
  47. uint8_t *temp;
  48. int width;
  49. int height;
  50. int stride;
  51. int decomposition_count;
  52. int support;
  53. void (*spatial_compose)(struct DWTContext *cs, int level, int width, int height, int stride);
  54. void (*vertical_compose_l0)(void);
  55. void (*vertical_compose_h0)(void);
  56. void (*vertical_compose_l1)(void);
  57. void (*vertical_compose_h1)(void);
  58. void (*vertical_compose)(void); ///< one set of lowpass and highpass combined
  59. void (*horizontal_compose)(uint8_t *b, uint8_t *tmp, int width);
  60. DWTCompose cs[MAX_DECOMPOSITIONS];
  61. } DWTContext;
  62. enum dwt_type {
  63. DWT_SNOW_DAUB9_7,
  64. DWT_SNOW_LEGALL5_3,
  65. DWT_DIRAC_DD9_7,
  66. DWT_DIRAC_LEGALL5_3,
  67. DWT_DIRAC_DD13_7,
  68. DWT_DIRAC_HAAR0,
  69. DWT_DIRAC_HAAR1,
  70. DWT_DIRAC_FIDELITY,
  71. DWT_DIRAC_DAUB9_7,
  72. DWT_NUM_TYPES
  73. };
  74. // -1 if an error occurred, e.g. the dwt_type isn't recognized
  75. int ff_spatial_idwt_init(DWTContext *d, DWTPlane *p, enum dwt_type type,
  76. int decomposition_count, int bit_depth);
  77. void ff_spatial_idwt_init_x86(DWTContext *d, enum dwt_type type);
  78. void ff_spatial_idwt_slice2(DWTContext *d, int y);
  79. // shared stuff for simd optimizations
  80. #define COMPOSE_53iL0(b0, b1, b2)\
  81. (b1 - (unsigned)((int)(b0 + (unsigned)(b2) + 2) >> 2))
  82. #define COMPOSE_DIRAC53iH0(b0, b1, b2)\
  83. (b1 + (unsigned)((int)(b0 + (unsigned)(b2) + 1) >> 1))
  84. #define COMPOSE_DD97iH0(b0, b1, b2, b3, b4)\
  85. (int)(((unsigned)(b2) + ((int)(9U*b1 + 9U*b3 - b4 - b0 + 8) >> 4)))
  86. #define COMPOSE_DD137iL0(b0, b1, b2, b3, b4)\
  87. (int)(((unsigned)(b2) - ((int)(9U*b1 + 9U*b3 - b4 - b0 + 16) >> 5)))
  88. #define COMPOSE_HAARiL0(b0, b1)\
  89. ((int)(b0 - (unsigned)((int)(b1 + 1U) >> 1)))
  90. #define COMPOSE_HAARiH0(b0, b1)\
  91. ((int)(b0 + (unsigned)(b1)))
  92. #define COMPOSE_FIDELITYiL0(b0, b1, b2, b3, b4, b5, b6, b7, b8)\
  93. ((unsigned)b4 - ((int)(-8*(b0+(unsigned)b8) + 21*(b1+(unsigned)b7) - 46*(b2+(unsigned)b6) + 161*(b3+(unsigned)b5) + 128) >> 8))
  94. #define COMPOSE_FIDELITYiH0(b0, b1, b2, b3, b4, b5, b6, b7, b8)\
  95. ((unsigned)b4 + ((int)(-2*(b0+(unsigned)b8) + 10*(b1+(unsigned)b7) - 25*(b2+(unsigned)b6) + 81*(b3+(unsigned)b5) + 128) >> 8))
  96. #define COMPOSE_DAUB97iL1(b0, b1, b2)\
  97. ((unsigned)(b1) - ((int)(1817*(b0 + (unsigned)b2) + 2048) >> 12))
  98. #define COMPOSE_DAUB97iH1(b0, b1, b2)\
  99. ((unsigned)(b1) - ((int)( 113*(b0 + (unsigned)b2) + 64) >> 7))
  100. #define COMPOSE_DAUB97iL0(b0, b1, b2)\
  101. ((unsigned)(b1) + ((int)( 217*(b0 + (unsigned)b2) + 2048) >> 12))
  102. #define COMPOSE_DAUB97iH0(b0, b1, b2)\
  103. ((unsigned)(b1) + ((int)(6497*(b0 + (unsigned)b2) + 2048) >> 12))
  104. #endif /* AVCODEC_DWT_H */