2 * Copyright (C) 2004-2010 Michael Niedermayer <michaelni@gmx.at>
3 * Copyright (C) 2008 David Conrad
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/attributes.h"
23 #include "libavutil/avassert.h"
24 #include "libavutil/common.h"
28 int ff_slice_buffer_init(slice_buffer *buf, int line_count,
29 int max_allocated_lines, int line_width,
30 IDWTELEM *base_buffer)
34 buf->base_buffer = base_buffer;
35 buf->line_count = line_count;
36 buf->line_width = line_width;
37 buf->data_count = max_allocated_lines;
38 buf->line = av_mallocz_array(line_count, sizeof(IDWTELEM *));
40 return AVERROR(ENOMEM);
41 buf->data_stack = av_malloc_array(max_allocated_lines, sizeof(IDWTELEM *));
42 if (!buf->data_stack) {
44 return AVERROR(ENOMEM);
47 for (i = 0; i < max_allocated_lines; i++) {
48 buf->data_stack[i] = av_malloc_array(line_width, sizeof(IDWTELEM));
49 if (!buf->data_stack[i]) {
51 av_freep(&buf->data_stack[i]);
52 av_freep(&buf->data_stack);
54 return AVERROR(ENOMEM);
58 buf->data_stack_top = max_allocated_lines - 1;
62 IDWTELEM *ff_slice_buffer_load_line(slice_buffer *buf, int line)
66 av_assert0(buf->data_stack_top >= 0);
67 // av_assert1(!buf->line[line]);
69 return buf->line[line];
71 buffer = buf->data_stack[buf->data_stack_top];
72 buf->data_stack_top--;
73 buf->line[line] = buffer;
78 void ff_slice_buffer_release(slice_buffer *buf, int line)
82 av_assert1(line >= 0 && line < buf->line_count);
83 av_assert1(buf->line[line]);
85 buffer = buf->line[line];
86 buf->data_stack_top++;
87 buf->data_stack[buf->data_stack_top] = buffer;
88 buf->line[line] = NULL;
91 void ff_slice_buffer_flush(slice_buffer *buf)
98 for (i = 0; i < buf->line_count; i++)
100 ff_slice_buffer_release(buf, i);
103 void ff_slice_buffer_destroy(slice_buffer *buf)
106 ff_slice_buffer_flush(buf);
109 for (i = buf->data_count - 1; i >= 0; i--)
110 av_freep(&buf->data_stack[i]);
111 av_freep(&buf->data_stack);
112 av_freep(&buf->line);
115 static av_always_inline void lift(DWTELEM *dst, DWTELEM *src, DWTELEM *ref,
116 int dst_step, int src_step, int ref_step,
117 int width, int mul, int add, int shift,
118 int highpass, int inverse)
120 const int mirror_left = !highpass;
121 const int mirror_right = (width & 1) ^ highpass;
122 const int w = (width >> 1) - 1 + (highpass & width);
125 #define LIFT(src, ref, inv) ((src) + ((inv) ? -(ref) : +(ref)))
127 dst[0] = LIFT(src[0], ((mul * 2 * ref[0] + add) >> shift), inverse);
132 for (i = 0; i < w; i++)
133 dst[i * dst_step] = LIFT(src[i * src_step],
134 ((mul * (ref[i * ref_step] +
135 ref[(i + 1) * ref_step]) +
140 dst[w * dst_step] = LIFT(src[w * src_step],
141 ((mul * 2 * ref[w * ref_step] + add) >> shift),
145 static av_always_inline void liftS(DWTELEM *dst, DWTELEM *src, DWTELEM *ref,
146 int dst_step, int src_step, int ref_step,
147 int width, int mul, int add, int shift,
148 int highpass, int inverse)
150 const int mirror_left = !highpass;
151 const int mirror_right = (width & 1) ^ highpass;
152 const int w = (width >> 1) - 1 + (highpass & width);
155 av_assert1(shift == 4);
156 #define LIFTS(src, ref, inv) \
157 ((inv) ? (src) + (((ref) + 4 * (src)) >> shift) \
158 : -((-16 * (src) + (ref) + add / \
159 4 + 1 + (5 << 25)) / (5 * 4) - (1 << 23)))
161 dst[0] = LIFTS(src[0], mul * 2 * ref[0] + add, inverse);
166 for (i = 0; i < w; i++)
167 dst[i * dst_step] = LIFTS(src[i * src_step],
168 mul * (ref[i * ref_step] +
169 ref[(i + 1) * ref_step]) + add,
173 dst[w * dst_step] = LIFTS(src[w * src_step],
174 mul * 2 * ref[w * ref_step] + add,
178 static void horizontal_decompose53i(DWTELEM *b, DWTELEM *temp, int width)
180 const int width2 = width >> 1;
182 const int w2 = (width + 1) >> 1;
184 for (x = 0; x < width2; x++) {
186 temp[x + w2] = b[2 * x + 1];
190 lift(b + w2, temp + w2, temp, 1, 1, 1, width, -1, 0, 1, 1, 0);
191 lift(b, temp, b + w2, 1, 1, 1, width, 1, 2, 2, 0, 0);
194 static void vertical_decompose53iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2,
199 for (i = 0; i < width; i++)
200 b1[i] -= (b0[i] + b2[i]) >> 1;
203 static void vertical_decompose53iL0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2,
208 for (i = 0; i < width; i++)
209 b1[i] += (b0[i] + b2[i] + 2) >> 2;
212 static void spatial_decompose53i(DWTELEM *buffer, DWTELEM *temp,
213 int width, int height, int stride)
216 DWTELEM *b0 = buffer + avpriv_mirror(-2 - 1, height - 1) * stride;
217 DWTELEM *b1 = buffer + avpriv_mirror(-2, height - 1) * stride;
219 for (y = -2; y < height; y += 2) {
220 DWTELEM *b2 = buffer + avpriv_mirror(y + 1, height - 1) * stride;
221 DWTELEM *b3 = buffer + avpriv_mirror(y + 2, height - 1) * stride;
223 if (y + 1 < (unsigned)height)
224 horizontal_decompose53i(b2, temp, width);
225 if (y + 2 < (unsigned)height)
226 horizontal_decompose53i(b3, temp, width);
228 if (y + 1 < (unsigned)height)
229 vertical_decompose53iH0(b1, b2, b3, width);
230 if (y + 0 < (unsigned)height)
231 vertical_decompose53iL0(b0, b1, b2, width);
238 static void horizontal_decompose97i(DWTELEM *b, DWTELEM *temp, int width)
240 const int w2 = (width + 1) >> 1;
242 lift(temp + w2, b + 1, b, 1, 2, 2, width, W_AM, W_AO, W_AS, 1, 1);
243 liftS(temp, b, temp + w2, 1, 2, 1, width, W_BM, W_BO, W_BS, 0, 0);
244 lift(b + w2, temp + w2, temp, 1, 1, 1, width, W_CM, W_CO, W_CS, 1, 0);
245 lift(b, temp, b + w2, 1, 1, 1, width, W_DM, W_DO, W_DS, 0, 0);
248 static void vertical_decompose97iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2,
253 for (i = 0; i < width; i++)
254 b1[i] -= (W_AM * (b0[i] + b2[i]) + W_AO) >> W_AS;
257 static void vertical_decompose97iH1(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2,
262 for (i = 0; i < width; i++)
263 b1[i] += (W_CM * (b0[i] + b2[i]) + W_CO) >> W_CS;
266 static void vertical_decompose97iL0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2,
271 for (i = 0; i < width; i++)
272 b1[i] = (16 * 4 * b1[i] - 4 * (b0[i] + b2[i]) + W_BO * 5 + (5 << 27)) /
273 (5 * 16) - (1 << 23);
276 static void vertical_decompose97iL1(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2,
281 for (i = 0; i < width; i++)
282 b1[i] += (W_DM * (b0[i] + b2[i]) + W_DO) >> W_DS;
285 static void spatial_decompose97i(DWTELEM *buffer, DWTELEM *temp,
286 int width, int height, int stride)
289 DWTELEM *b0 = buffer + avpriv_mirror(-4 - 1, height - 1) * stride;
290 DWTELEM *b1 = buffer + avpriv_mirror(-4, height - 1) * stride;
291 DWTELEM *b2 = buffer + avpriv_mirror(-4 + 1, height - 1) * stride;
292 DWTELEM *b3 = buffer + avpriv_mirror(-4 + 2, height - 1) * stride;
294 for (y = -4; y < height; y += 2) {
295 DWTELEM *b4 = buffer + avpriv_mirror(y + 3, height - 1) * stride;
296 DWTELEM *b5 = buffer + avpriv_mirror(y + 4, height - 1) * stride;
298 if (y + 3 < (unsigned)height)
299 horizontal_decompose97i(b4, temp, width);
300 if (y + 4 < (unsigned)height)
301 horizontal_decompose97i(b5, temp, width);
303 if (y + 3 < (unsigned)height)
304 vertical_decompose97iH0(b3, b4, b5, width);
305 if (y + 2 < (unsigned)height)
306 vertical_decompose97iL0(b2, b3, b4, width);
307 if (y + 1 < (unsigned)height)
308 vertical_decompose97iH1(b1, b2, b3, width);
309 if (y + 0 < (unsigned)height)
310 vertical_decompose97iL1(b0, b1, b2, width);
319 void ff_spatial_dwt(DWTELEM *buffer, DWTELEM *temp, int width, int height,
320 int stride, int type, int decomposition_count)
324 for (level = 0; level < decomposition_count; level++) {
327 spatial_decompose97i(buffer, temp,
328 width >> level, height >> level,
332 spatial_decompose53i(buffer, temp,
333 width >> level, height >> level,
340 static void horizontal_compose53i(IDWTELEM *b, IDWTELEM *temp, int width)
342 const int width2 = width >> 1;
343 const int w2 = (width + 1) >> 1;
346 for (x = 0; x < width2; x++) {
348 temp[2 * x + 1] = b[x + w2];
353 b[0] = temp[0] - ((temp[1] + 1) >> 1);
354 for (x = 2; x < width - 1; x += 2) {
355 b[x] = temp[x] - ((temp[x - 1] + temp[x + 1] + 2) >> 2);
356 b[x - 1] = temp[x - 1] + ((b[x - 2] + b[x] + 1) >> 1);
359 b[x] = temp[x] - ((temp[x - 1] + 1) >> 1);
360 b[x - 1] = temp[x - 1] + ((b[x - 2] + b[x] + 1) >> 1);
362 b[x - 1] = temp[x - 1] + b[x - 2];
365 static void vertical_compose53iH0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
370 for (i = 0; i < width; i++)
371 b1[i] += (b0[i] + b2[i]) >> 1;
374 static void vertical_compose53iL0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
379 for (i = 0; i < width; i++)
380 b1[i] -= (b0[i] + b2[i] + 2) >> 2;
383 static void spatial_compose53i_buffered_init(DWTCompose *cs, slice_buffer *sb,
384 int height, int stride_line)
386 cs->b0 = slice_buffer_get_line(sb,
387 avpriv_mirror(-1 - 1, height - 1) * stride_line);
388 cs->b1 = slice_buffer_get_line(sb, avpriv_mirror(-1, height - 1) * stride_line);
392 static void spatial_compose53i_init(DWTCompose *cs, IDWTELEM *buffer,
393 int height, int stride)
395 cs->b0 = buffer + avpriv_mirror(-1 - 1, height - 1) * stride;
396 cs->b1 = buffer + avpriv_mirror(-1, height - 1) * stride;
400 static void spatial_compose53i_dy_buffered(DWTCompose *cs, slice_buffer *sb,
402 int width, int height,
407 IDWTELEM *b0 = cs->b0;
408 IDWTELEM *b1 = cs->b1;
409 IDWTELEM *b2 = slice_buffer_get_line(sb,
410 avpriv_mirror(y + 1, height - 1) *
412 IDWTELEM *b3 = slice_buffer_get_line(sb,
413 avpriv_mirror(y + 2, height - 1) *
416 if (y + 1 < (unsigned)height && y < (unsigned)height) {
419 for (x = 0; x < width; x++) {
420 b2[x] -= (b1[x] + b3[x] + 2) >> 2;
421 b1[x] += (b0[x] + b2[x]) >> 1;
424 if (y + 1 < (unsigned)height)
425 vertical_compose53iL0(b1, b2, b3, width);
426 if (y + 0 < (unsigned)height)
427 vertical_compose53iH0(b0, b1, b2, width);
430 if (y - 1 < (unsigned)height)
431 horizontal_compose53i(b0, temp, width);
432 if (y + 0 < (unsigned)height)
433 horizontal_compose53i(b1, temp, width);
440 static void spatial_compose53i_dy(DWTCompose *cs, IDWTELEM *buffer,
441 IDWTELEM *temp, int width, int height,
445 IDWTELEM *b0 = cs->b0;
446 IDWTELEM *b1 = cs->b1;
447 IDWTELEM *b2 = buffer + avpriv_mirror(y + 1, height - 1) * stride;
448 IDWTELEM *b3 = buffer + avpriv_mirror(y + 2, height - 1) * stride;
450 if (y + 1 < (unsigned)height)
451 vertical_compose53iL0(b1, b2, b3, width);
452 if (y + 0 < (unsigned)height)
453 vertical_compose53iH0(b0, b1, b2, width);
455 if (y - 1 < (unsigned)height)
456 horizontal_compose53i(b0, temp, width);
457 if (y + 0 < (unsigned)height)
458 horizontal_compose53i(b1, temp, width);
465 void ff_snow_horizontal_compose97i(IDWTELEM *b, IDWTELEM *temp, int width)
467 const int w2 = (width + 1) >> 1;
470 temp[0] = b[0] - ((3 * b[w2] + 2) >> 2);
471 for (x = 1; x < (width >> 1); x++) {
472 temp[2 * x] = b[x] - ((3 * (b[x + w2 - 1] + b[x + w2]) + 4) >> 3);
473 temp[2 * x - 1] = b[x + w2 - 1] - temp[2 * x - 2] - temp[2 * x];
476 temp[2 * x] = b[x] - ((3 * b[x + w2 - 1] + 2) >> 2);
477 temp[2 * x - 1] = b[x + w2 - 1] - temp[2 * x - 2] - temp[2 * x];
479 temp[2 * x - 1] = b[x + w2 - 1] - 2 * temp[2 * x - 2];
481 b[0] = temp[0] + ((2 * temp[0] + temp[1] + 4) >> 3);
482 for (x = 2; x < width - 1; x += 2) {
483 b[x] = temp[x] + ((4 * temp[x] + temp[x - 1] + temp[x + 1] + 8) >> 4);
484 b[x - 1] = temp[x - 1] + ((3 * (b[x - 2] + b[x])) >> 1);
487 b[x] = temp[x] + ((2 * temp[x] + temp[x - 1] + 4) >> 3);
488 b[x - 1] = temp[x - 1] + ((3 * (b[x - 2] + b[x])) >> 1);
490 b[x - 1] = temp[x - 1] + 3 * b[x - 2];
493 static void vertical_compose97iH0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
498 for (i = 0; i < width; i++)
499 b1[i] += (W_AM * (b0[i] + b2[i]) + W_AO) >> W_AS;
502 static void vertical_compose97iH1(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
507 for (i = 0; i < width; i++)
508 b1[i] -= (W_CM * (b0[i] + b2[i]) + W_CO) >> W_CS;
511 static void vertical_compose97iL0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
516 for (i = 0; i < width; i++)
517 b1[i] += (W_BM * (b0[i] + b2[i]) + 4 * b1[i] + W_BO) >> W_BS;
520 static void vertical_compose97iL1(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
525 for (i = 0; i < width; i++)
526 b1[i] -= (W_DM * (b0[i] + b2[i]) + W_DO) >> W_DS;
529 void ff_snow_vertical_compose97i(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2,
530 IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5,
535 for (i = 0; i < width; i++) {
536 b4[i] -= (W_DM * (b3[i] + b5[i]) + W_DO) >> W_DS;
537 b3[i] -= (W_CM * (b2[i] + b4[i]) + W_CO) >> W_CS;
538 b2[i] += (W_BM * (b1[i] + b3[i]) + 4 * b2[i] + W_BO) >> W_BS;
539 b1[i] += (W_AM * (b0[i] + b2[i]) + W_AO) >> W_AS;
543 static void spatial_compose97i_buffered_init(DWTCompose *cs, slice_buffer *sb,
544 int height, int stride_line)
546 cs->b0 = slice_buffer_get_line(sb, avpriv_mirror(-3 - 1, height - 1) * stride_line);
547 cs->b1 = slice_buffer_get_line(sb, avpriv_mirror(-3, height - 1) * stride_line);
548 cs->b2 = slice_buffer_get_line(sb, avpriv_mirror(-3 + 1, height - 1) * stride_line);
549 cs->b3 = slice_buffer_get_line(sb, avpriv_mirror(-3 + 2, height - 1) * stride_line);
553 static void spatial_compose97i_init(DWTCompose *cs, IDWTELEM *buffer, int height,
556 cs->b0 = buffer + avpriv_mirror(-3 - 1, height - 1) * stride;
557 cs->b1 = buffer + avpriv_mirror(-3, height - 1) * stride;
558 cs->b2 = buffer + avpriv_mirror(-3 + 1, height - 1) * stride;
559 cs->b3 = buffer + avpriv_mirror(-3 + 2, height - 1) * stride;
563 static void spatial_compose97i_dy_buffered(SnowDWTContext *dsp, DWTCompose *cs,
564 slice_buffer * sb, IDWTELEM *temp,
565 int width, int height,
570 IDWTELEM *b0 = cs->b0;
571 IDWTELEM *b1 = cs->b1;
572 IDWTELEM *b2 = cs->b2;
573 IDWTELEM *b3 = cs->b3;
574 IDWTELEM *b4 = slice_buffer_get_line(sb,
575 avpriv_mirror(y + 3, height - 1) *
577 IDWTELEM *b5 = slice_buffer_get_line(sb,
578 avpriv_mirror(y + 4, height - 1) *
581 if (y > 0 && y + 4 < height) {
582 dsp->vertical_compose97i(b0, b1, b2, b3, b4, b5, width);
584 if (y + 3 < (unsigned)height)
585 vertical_compose97iL1(b3, b4, b5, width);
586 if (y + 2 < (unsigned)height)
587 vertical_compose97iH1(b2, b3, b4, width);
588 if (y + 1 < (unsigned)height)
589 vertical_compose97iL0(b1, b2, b3, width);
590 if (y + 0 < (unsigned)height)
591 vertical_compose97iH0(b0, b1, b2, width);
594 if (y - 1 < (unsigned)height)
595 dsp->horizontal_compose97i(b0, temp, width);
596 if (y + 0 < (unsigned)height)
597 dsp->horizontal_compose97i(b1, temp, width);
606 static void spatial_compose97i_dy(DWTCompose *cs, IDWTELEM *buffer,
607 IDWTELEM *temp, int width, int height,
611 IDWTELEM *b0 = cs->b0;
612 IDWTELEM *b1 = cs->b1;
613 IDWTELEM *b2 = cs->b2;
614 IDWTELEM *b3 = cs->b3;
615 IDWTELEM *b4 = buffer + avpriv_mirror(y + 3, height - 1) * stride;
616 IDWTELEM *b5 = buffer + avpriv_mirror(y + 4, height - 1) * stride;
618 if (y + 3 < (unsigned)height)
619 vertical_compose97iL1(b3, b4, b5, width);
620 if (y + 2 < (unsigned)height)
621 vertical_compose97iH1(b2, b3, b4, width);
622 if (y + 1 < (unsigned)height)
623 vertical_compose97iL0(b1, b2, b3, width);
624 if (y + 0 < (unsigned)height)
625 vertical_compose97iH0(b0, b1, b2, width);
627 if (y - 1 < (unsigned)height)
628 ff_snow_horizontal_compose97i(b0, temp, width);
629 if (y + 0 < (unsigned)height)
630 ff_snow_horizontal_compose97i(b1, temp, width);
639 void ff_spatial_idwt_buffered_init(DWTCompose *cs, slice_buffer *sb, int width,
640 int height, int stride_line, int type,
641 int decomposition_count)
644 for (level = decomposition_count - 1; level >= 0; level--) {
647 spatial_compose97i_buffered_init(cs + level, sb, height >> level,
648 stride_line << level);
651 spatial_compose53i_buffered_init(cs + level, sb, height >> level,
652 stride_line << level);
658 void ff_spatial_idwt_buffered_slice(SnowDWTContext *dsp, DWTCompose *cs,
659 slice_buffer *slice_buf, IDWTELEM *temp,
660 int width, int height, int stride_line,
661 int type, int decomposition_count, int y)
663 const int support = type == 1 ? 3 : 5;
668 for (level = decomposition_count - 1; level >= 0; level--)
669 while (cs[level].y <= FFMIN((y >> level) + support, height >> level)) {
672 spatial_compose97i_dy_buffered(dsp, cs + level, slice_buf, temp,
675 stride_line << level);
678 spatial_compose53i_dy_buffered(cs + level, slice_buf, temp,
681 stride_line << level);
687 static void spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width,
688 int height, int stride, int type,
689 int decomposition_count)
692 for (level = decomposition_count - 1; level >= 0; level--) {
695 spatial_compose97i_init(cs + level, buffer, height >> level,
699 spatial_compose53i_init(cs + level, buffer, height >> level,
706 static void spatial_idwt_slice(DWTCompose *cs, IDWTELEM *buffer,
707 IDWTELEM *temp, int width, int height,
708 int stride, int type,
709 int decomposition_count, int y)
711 const int support = type == 1 ? 3 : 5;
716 for (level = decomposition_count - 1; level >= 0; level--)
717 while (cs[level].y <= FFMIN((y >> level) + support, height >> level)) {
720 spatial_compose97i_dy(cs + level, buffer, temp, width >> level,
721 height >> level, stride << level);
724 spatial_compose53i_dy(cs + level, buffer, temp, width >> level,
725 height >> level, stride << level);
731 void ff_spatial_idwt(IDWTELEM *buffer, IDWTELEM *temp, int width, int height,
732 int stride, int type, int decomposition_count)
734 DWTCompose cs[MAX_DECOMPOSITIONS];
736 spatial_idwt_init(cs, buffer, width, height, stride, type,
737 decomposition_count);
738 for (y = 0; y < height; y += 4)
739 spatial_idwt_slice(cs, buffer, temp, width, height, stride, type,
740 decomposition_count, y);
743 static inline int w_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size,
744 int w, int h, int type)
747 const int dec_count = w == 8 ? 3 : 4;
748 int tmp[32 * 32], tmp2[32];
750 static const int scale[2][2][4][4] = {
753 { 268, 239, 239, 213 },
754 { 0, 224, 224, 152 },
755 { 0, 135, 135, 110 },
757 { // 9/7 16x16 or 32x32 dec=4
758 { 344, 310, 310, 280 },
759 { 0, 320, 320, 228 },
760 { 0, 175, 175, 136 },
761 { 0, 129, 129, 102 },
766 { 275, 245, 245, 218 },
767 { 0, 230, 230, 156 },
768 { 0, 138, 138, 113 },
770 { // 5/3 16x16 or 32x32 dec=4
771 { 352, 317, 317, 286 },
772 { 0, 328, 328, 233 },
773 { 0, 180, 180, 140 },
774 { 0, 132, 132, 105 },
779 for (i = 0; i < h; i++) {
780 for (j = 0; j < w; j += 4) {
781 tmp[32 * i + j + 0] = (pix1[j + 0] - pix2[j + 0]) << 4;
782 tmp[32 * i + j + 1] = (pix1[j + 1] - pix2[j + 1]) << 4;
783 tmp[32 * i + j + 2] = (pix1[j + 2] - pix2[j + 2]) << 4;
784 tmp[32 * i + j + 3] = (pix1[j + 3] - pix2[j + 3]) << 4;
790 ff_spatial_dwt(tmp, tmp2, w, h, 32, type, dec_count);
794 for (level = 0; level < dec_count; level++)
795 for (ori = level ? 1 : 0; ori < 4; ori++) {
796 int size = w >> (dec_count - level);
797 int sx = (ori & 1) ? size : 0;
798 int stride = 32 << (dec_count - level);
799 int sy = (ori & 2) ? stride >> 1 : 0;
801 for (i = 0; i < size; i++)
802 for (j = 0; j < size; j++) {
803 int v = tmp[sx + sy + i * stride + j] *
804 scale[type][dec_count - 3][level][ori];
812 static int w53_8_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size, int h)
814 return w_c(v, pix1, pix2, line_size, 8, h, 1);
817 static int w97_8_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size, int h)
819 return w_c(v, pix1, pix2, line_size, 8, h, 0);
822 static int w53_16_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size, int h)
824 return w_c(v, pix1, pix2, line_size, 16, h, 1);
827 static int w97_16_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size, int h)
829 return w_c(v, pix1, pix2, line_size, 16, h, 0);
832 int ff_w53_32_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size, int h)
834 return w_c(v, pix1, pix2, line_size, 32, h, 1);
837 int ff_w97_32_c(struct MpegEncContext *v, uint8_t *pix1, uint8_t *pix2, ptrdiff_t line_size, int h)
839 return w_c(v, pix1, pix2, line_size, 32, h, 0);
842 av_cold void ff_dsputil_init_dwt(MECmpContext *c)
844 c->w53[0] = w53_16_c;
846 c->w97[0] = w97_16_c;
850 av_cold void ff_dwt_init(SnowDWTContext *c)
852 c->vertical_compose97i = ff_snow_vertical_compose97i;
853 c->horizontal_compose97i = ff_snow_horizontal_compose97i;
854 c->inner_add_yblock = ff_snow_inner_add_yblock;