26#define COMPOSE_VERTICAL(ext, align) \
27void ff_vertical_compose53iL0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int width); \
28void ff_vertical_compose_dirac53iH0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int width); \
29void ff_vertical_compose_dd137iL0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int16_t *b3, int16_t *b4, int width); \
30void ff_vertical_compose_dd97iH0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int16_t *b3, int16_t *b4, int width); \
31void ff_vertical_compose_haar##ext(int16_t *b0, int16_t *b1, int width); \
32void ff_horizontal_compose_haar0i##ext(int16_t *b, int16_t *tmp, int w);\
33void ff_horizontal_compose_haar1i##ext(int16_t *b, int16_t *tmp, int w);\
35static void vertical_compose53iL0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, int width) \
37 int i, width_align = width&~(align-1); \
38 int16_t *b0 = (int16_t *)_b0; \
39 int16_t *b1 = (int16_t *)_b1; \
40 int16_t *b2 = (int16_t *)_b2; \
42 for(i=width_align; i<width; i++) \
43 b1[i] = COMPOSE_53iL0(b0[i], b1[i], b2[i]); \
45 ff_vertical_compose53iL0##ext(b0, b1, b2, width_align); \
48static void vertical_compose_dirac53iH0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, int width) \
50 int i, width_align = width&~(align-1); \
51 int16_t *b0 = (int16_t *)_b0; \
52 int16_t *b1 = (int16_t *)_b1; \
53 int16_t *b2 = (int16_t *)_b2; \
55 for(i=width_align; i<width; i++) \
56 b1[i] = COMPOSE_DIRAC53iH0(b0[i], b1[i], b2[i]); \
58 ff_vertical_compose_dirac53iH0##ext(b0, b1, b2, width_align); \
61static void vertical_compose_dd137iL0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, \
62 uint8_t *_b3, uint8_t *_b4, int width) \
64 int i, width_align = width&~(align-1); \
65 int16_t *b0 = (int16_t *)_b0; \
66 int16_t *b1 = (int16_t *)_b1; \
67 int16_t *b2 = (int16_t *)_b2; \
68 int16_t *b3 = (int16_t *)_b3; \
69 int16_t *b4 = (int16_t *)_b4; \
71 for(i=width_align; i<width; i++) \
72 b2[i] = COMPOSE_DD137iL0(b0[i], b1[i], b2[i], b3[i], b4[i]); \
74 ff_vertical_compose_dd137iL0##ext(b0, b1, b2, b3, b4, width_align); \
77static void vertical_compose_dd97iH0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, \
78 uint8_t *_b3, uint8_t *_b4, int width) \
80 int i, width_align = width&~(align-1); \
81 int16_t *b0 = (int16_t *)_b0; \
82 int16_t *b1 = (int16_t *)_b1; \
83 int16_t *b2 = (int16_t *)_b2; \
84 int16_t *b3 = (int16_t *)_b3; \
85 int16_t *b4 = (int16_t *)_b4; \
87 for(i=width_align; i<width; i++) \
88 b2[i] = COMPOSE_DD97iH0(b0[i], b1[i], b2[i], b3[i], b4[i]); \
90 ff_vertical_compose_dd97iH0##ext(b0, b1, b2, b3, b4, width_align); \
92static void vertical_compose_haar##ext(uint8_t *_b0, uint8_t *_b1, int width) \
94 int i, width_align = width&~(align-1); \
95 int16_t *b0 = (int16_t *)_b0; \
96 int16_t *b1 = (int16_t *)_b1; \
98 for(i=width_align; i<width; i++) { \
99 b0[i] = COMPOSE_HAARiL0(b0[i], b1[i]); \
100 b1[i] = COMPOSE_HAARiH0(b1[i], b0[i]); \
103 ff_vertical_compose_haar##ext(b0, b1, width_align); \
105static void horizontal_compose_haar0i##ext(uint8_t *_b, uint8_t *_tmp, int w)\
108 int x= w2 - (w2&(align-1));\
109 int16_t *b = (int16_t *)_b; \
110 int16_t *tmp = (int16_t *)_tmp; \
112 ff_horizontal_compose_haar0i##ext(b, tmp, w);\
114 for (; x < w2; x++) {\
116 b[2*x+1] = COMPOSE_HAARiH0(b[x+w2], tmp[x]);\
119static void horizontal_compose_haar1i##ext(uint8_t *_b, uint8_t *_tmp, int w)\
122 int x= w2 - (w2&(align-1));\
123 int16_t *b = (int16_t *)_b; \
124 int16_t *tmp = (int16_t *)_tmp; \
126 ff_horizontal_compose_haar1i##ext(b, tmp, w);\
128 for (; x < w2; x++) {\
129 b[2*x ] = (tmp[x] + 1)>>1;\
130 b[2*x+1] = (COMPOSE_HAARiH0(b[x+w2], tmp[x]) + 1)>>1;\
143 int16_t *
b = (int16_t *)_b;
144 int16_t *
tmp = (int16_t *)_tmp;
148 for (; x < w2; x++) {
149 b[2*x ] = (
tmp[x] + 1)>>1;
#define COMPOSE_DD97iH0(b0, b1, b2, b3, b4)
void ff_horizontal_compose_dd97i_ssse3(int16_t *_b, int16_t *_tmp, int w)
#define COMPOSE_VERTICAL(ext, align)
static void horizontal_compose_dd97i_ssse3(uint8_t *_b, uint8_t *_tmp, int w)
void ff_spatial_idwt_init_x86(DWTContext *d, enum dwt_type type)
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
#define AV_CPU_FLAG_SSE2
PIV SSE2 functions.
#define AV_CPU_FLAG_SSSE3
Conroe SSSE3 functions.
vertical_compose_3tap tap3
union DWTContext::@264215211202334351217054014060145273311255047204 vertical_compose_l0
vertical_compose_5tap tap5
union DWTContext::@264215211202334351217054014060145273311255047204 vertical_compose_h0
void(* horizontal_compose)(uint8_t *b, uint8_t *tmp, int width)
vertical_compose_2tap vertical_compose
one set of lowpass and highpass combined