40 #define ALPHA_COMPAND_DC_OFFSET 256
41 #define ALPHA_COMPAND_GAIN 9400
49 for (
int i = 0;
i < 64;
i++) {
67 for (
int i = 0;
i < 256;
i++)
68 s->lut[1][
i] =
i + ((768LL *
i *
i *
i) / (256 * 256 * 256));
77 s->subband_num_actual = 0;
84 memset(&
s->peak.base, 0,
sizeof(
s->peak.base));
92 s->cropped_height = 0;
97 s->lowpass_precision = 16;
100 s->difference_coding = 0;
103 if (
s->transform_type != 2)
104 s->transform_type = -1;
114 return level * quantisation;
122 for (j = 1; j <
width; j++) {
123 band[j] += band[j-1];
132 for (
i = 0;
i < length;
i++)
134 band[
i] = bytestream2_get_le16(&peak->
base);
153 const int linesize =
frame->linesize[0];
154 uint16_t *
r = (uint16_t *)
frame->data[0];
155 uint16_t *g1 = (uint16_t *)(
frame->data[0] + 2);
156 uint16_t *g2 = (uint16_t *)(
frame->data[0] +
frame->linesize[0]);
157 uint16_t *
b = (uint16_t *)(
frame->data[0] +
frame->linesize[0] + 2);
158 const int mid = 1 << (bpc - 1);
159 const int factor = 1 << (16 - bpc);
161 for (
int y = 0; y <
frame->height >> 1; y++) {
162 for (
int x = 0; x <
frame->width; x += 2) {
172 R = (rg - mid) * 2 +
g;
175 B = (bg - mid) * 2 +
g;
196 int width,
int linesize,
int plane)
201 even = (low[
i] - high[
i])/2;
202 odd = (low[
i] + high[
i])/2;
211 int even = (low[
i] - high[
i]) / 2;
212 int odd = (low[
i] + high[
i]) / 2;
227 s->plane[
i].idwt_size = 0;
230 s->plane[
i].subband[j] =
NULL;
232 for (j = 0; j < 10; j++)
233 s->plane[
i].l_h[j] =
NULL;
243 s->a_transform_type = INT_MIN;
250 int chroma_x_shift, chroma_y_shift;
261 &chroma_y_shift)) < 0)
272 int w8, h8, w4, h4, w2, h2;
273 int width = (
i || bayer) ?
s->coded_width >> chroma_x_shift :
s->coded_width;
274 int height = (
i || bayer) ?
s->coded_height >> chroma_y_shift :
s->coded_height;
277 if (chroma_y_shift && !bayer)
283 w8 =
FFALIGN(
s->plane[
i].width / 8, 8) + 64;
290 if (
s->transform_type == 0) {
292 s->plane[
i].idwt_buf =
293 av_calloc(
s->plane[
i].idwt_size,
sizeof(*
s->plane[
i].idwt_buf));
294 s->plane[
i].idwt_tmp =
298 s->plane[
i].idwt_buf =
299 av_calloc(
s->plane[
i].idwt_size,
sizeof(*
s->plane[
i].idwt_buf));
300 s->plane[
i].idwt_tmp =
304 if (!
s->plane[
i].idwt_buf || !
s->plane[
i].idwt_tmp)
307 s->plane[
i].subband[0] =
s->plane[
i].idwt_buf;
308 s->plane[
i].subband[1] =
s->plane[
i].idwt_buf + 2 * w8 * h8;
309 s->plane[
i].subband[2] =
s->plane[
i].idwt_buf + 1 * w8 * h8;
310 s->plane[
i].subband[3] =
s->plane[
i].idwt_buf + 3 * w8 * h8;
311 s->plane[
i].subband[4] =
s->plane[
i].idwt_buf + 2 * w4 * h4;
312 s->plane[
i].subband[5] =
s->plane[
i].idwt_buf + 1 * w4 * h4;
313 s->plane[
i].subband[6] =
s->plane[
i].idwt_buf + 3 * w4 * h4;
314 if (
s->transform_type == 0) {
315 s->plane[
i].subband[7] =
s->plane[
i].idwt_buf + 2 * w2 * h2;
316 s->plane[
i].subband[8] =
s->plane[
i].idwt_buf + 1 * w2 * h2;
317 s->plane[
i].subband[9] =
s->plane[
i].idwt_buf + 3 * w2 * h2;
320 s->plane[
i].subband[7] =
s->plane[
i].idwt_buf + 4 * w2 * h2;
321 s->plane[
i].subband[8] = frame2 + 2 * w4 * h4;
322 s->plane[
i].subband[9] = frame2 + 1 * w4 * h4;
323 s->plane[
i].subband[10] = frame2 + 3 * w4 * h4;
324 s->plane[
i].subband[11] = frame2 + 2 * w2 * h2;
325 s->plane[
i].subband[12] = frame2 + 1 * w2 * h2;
326 s->plane[
i].subband[13] = frame2 + 3 * w2 * h2;
327 s->plane[
i].subband[14] =
s->plane[
i].idwt_buf + 2 * w2 * h2;
328 s->plane[
i].subband[15] =
s->plane[
i].idwt_buf + 1 * w2 * h2;
329 s->plane[
i].subband[16] =
s->plane[
i].idwt_buf + 3 * w2 * h2;
332 if (
s->transform_type == 0) {
335 s->plane[
i].band[j][k].a_width = w8 << j;
336 s->plane[
i].band[j][k].a_height = h8 << j;
341 int t = j < 1 ? 0 : (j < 3 ? 1 : 2);
344 s->plane[
i].band[j][k].a_width = w8 << t;
345 s->plane[
i].band[j][k].a_height = h8 << t;
351 s->plane[
i].l_h[0] =
s->plane[
i].idwt_tmp;
352 s->plane[
i].l_h[1] =
s->plane[
i].idwt_tmp + 2 * w8 * h8;
354 s->plane[
i].l_h[3] =
s->plane[
i].idwt_tmp;
355 s->plane[
i].l_h[4] =
s->plane[
i].idwt_tmp + 2 * w4 * h4;
357 s->plane[
i].l_h[6] =
s->plane[
i].idwt_tmp;
358 s->plane[
i].l_h[7] =
s->plane[
i].idwt_tmp + 2 * w2 * h2;
359 if (
s->transform_type != 0) {
360 int16_t *frame2 =
s->plane[
i].idwt_tmp + 4 * w2 * h2;
362 s->plane[
i].l_h[8] = frame2;
363 s->plane[
i].l_h[9] = frame2 + 2 * w2 * h2;
367 s->a_transform_type =
s->transform_type;
368 s->a_height =
s->coded_height;
369 s->a_width =
s->coded_width;
370 s->a_format =
s->coded_format;
383 int ret = 0,
i, j, plane, got_buffer = 0;
393 uint16_t tagu = bytestream2_get_be16(&gb);
394 int16_t
tag = (int16_t)tagu;
395 int8_t tag8 = (int8_t)(tagu >> 8);
396 uint16_t abstag =
abs(
tag);
397 int8_t abs_tag8 =
abs(tag8);
398 uint16_t
data = bytestream2_get_be16(&gb);
399 if (abs_tag8 >= 0x60 && abs_tag8 <= 0x6f) {
403 s->progressive =
data & 0x0001;
405 s->frame_type =
data;
415 }
else if (abstag ==
Version) {
419 s->coded_width =
data;
422 s->coded_height =
data;
425 s->channel_cnt =
data;
439 s->channel_num =
data;
441 if (
s->channel_num >=
s->planes) {
448 if (
s->subband_num != 0 &&
data == 1 && (
s->transform_type == 0 ||
s->transform_type == 2))
451 s->subband_num =
data;
452 if ((
s->transform_type == 0 &&
s->level >=
DWT_LEVELS) ||
458 if (
s->subband_num > 3) {
471 if (
s->transform_type == 0 ||
s->transform_type == 2)
472 s->subband_num_actual =
data;
478 s->quantisation =
data;
481 for (
i = 0;
i < 8;
i++)
482 s->prescale_table[
i] = (
data >> (14 -
i * 2)) & 0x3;
490 s->band_encoding =
data;
494 s->plane[
s->channel_num].band[0][0].width =
data;
495 s->plane[
s->channel_num].band[0][0].stride =
data;
498 s->plane[
s->channel_num].band[0][0].height =
data;
500 s->sample_type =
data;
507 }
else if (
data == 1) {
512 if (
s->transform_type == -1) {
513 s->transform_type =
data;
518 }
else if (abstag >= 0x4000 && abstag <= 0x40ff) {
519 if (abstag == 0x4001)
525 s->frame_index =
data;
534 uint32_t
offset = bytestream2_get_be32(&gb);
538 av_log(avctx,
AV_LOG_DEBUG,
"Highpass width %i channel %i level %i subband %i\n",
data,
s->channel_num,
s->level,
s->subband_num);
544 s->plane[
s->channel_num].band[
s->level][
s->subband_num].width =
data;
545 s->plane[
s->channel_num].band[
s->level][
s->subband_num].stride =
FFALIGN(
data, 8);
553 s->plane[
s->channel_num].band[
s->level][
s->subband_num].height =
data;
561 s->plane[
s->channel_num].band[
s->level][
s->subband_num].width =
data;
562 s->plane[
s->channel_num].band[
s->level][
s->subband_num].stride =
FFALIGN(
data, 8);
570 s->plane[
s->channel_num].band[
s->level][
s->subband_num].height =
data;
577 }
else if (
data >= 122 &&
data <= 128) {
579 }
else if (
data == 30) {
587 s->codebook =
data & 0xf;
588 s->difference_coding = (
data >> 4) & 1;
602 }
else if (
data == 2) {
604 }
else if (
data == 3) {
606 }
else if (
data == 4) {
616 s->cropped_height =
data;
618 s->peak.offset &= ~0xffff;
619 s->peak.offset |= (
data & 0xffff);
623 s->peak.offset &= 0xffff;
624 s->peak.offset |= (
data & 0xffff
U)<<16;
628 s->peak.level =
data;
641 int lowpass_height =
s->plane[
s->channel_num].band[0][0].height;
642 int lowpass_width =
s->plane[
s->channel_num].band[0][0].width;
645 if (
s->coded_width) {
649 if (
s->coded_height) {
653 if (!
s->a_width && !
s->coded_width) {
654 s->coded_width = lowpass_width *
factor * 8;
657 if (!
s->a_height && !
s->coded_height) {
658 s->coded_height = lowpass_height *
factor * 8;
661 if (
s->a_width && !
s->coded_width)
662 s->coded_width =
s->a_width;
663 if (
s->a_height && !
s->coded_height)
664 s->coded_height =
s->a_height;
666 if (
s->a_width !=
s->coded_width ||
s->a_height !=
s->coded_height ||
667 s->a_format !=
s->coded_format ||
668 s->transform_type !=
s->a_transform_type) {
678 if (
s->cropped_height) {
706 if (
s->subband_num_actual == 255)
708 coeff_data =
s->plane[
s->channel_num].subband[
s->subband_num_actual];
712 int lowpass_height, lowpass_width, lowpass_a_height, lowpass_a_width;
714 if (!
s->a_width || !
s->a_height) {
719 lowpass_height =
s->plane[
s->channel_num].band[0][0].height;
720 lowpass_width =
s->plane[
s->channel_num].band[0][0].width;
721 lowpass_a_height =
s->plane[
s->channel_num].band[0][0].a_height;
722 lowpass_a_width =
s->plane[
s->channel_num].band[0][0].a_width;
724 if (lowpass_width < 3 ||
725 lowpass_width > lowpass_a_width) {
731 if (lowpass_height < 3 ||
732 lowpass_height > lowpass_a_height) {
744 if (lowpass_height > lowpass_a_height || lowpass_width > lowpass_a_width ||
751 av_log(avctx,
AV_LOG_DEBUG,
"Start of lowpass coeffs component %d height:%d, width:%d\n",
s->channel_num, lowpass_height, lowpass_width);
752 for (
i = 0;
i < lowpass_height;
i++) {
753 for (j = 0; j < lowpass_width; j++)
754 coeff_data[j] = bytestream2_get_be16u(&gb);
756 coeff_data += lowpass_width;
763 if (lowpass_height & 1) {
764 memcpy(&coeff_data[lowpass_height * lowpass_width],
765 &coeff_data[(lowpass_height - 1) * lowpass_width],
766 lowpass_width *
sizeof(*coeff_data));
769 s->plane[
s->channel_num].band[0][0].read_ok = 1;
771 av_log(avctx,
AV_LOG_DEBUG,
"Lowpass coefficients %d\n", lowpass_width * lowpass_height);
776 int highpass_height, highpass_width, highpass_a_width, highpass_a_height, highpass_stride, a_expected;
779 int count = 0, bytes;
781 if (!
s->a_width || !
s->a_height) {
786 highpass_height =
s->plane[
s->channel_num].band[
s->level][
s->subband_num].height;
787 highpass_width =
s->plane[
s->channel_num].band[
s->level][
s->subband_num].width;
788 highpass_a_width =
s->plane[
s->channel_num].band[
s->level][
s->subband_num].a_width;
789 highpass_a_height =
s->plane[
s->channel_num].band[
s->level][
s->subband_num].a_height;
790 highpass_stride =
s->plane[
s->channel_num].band[
s->level][
s->subband_num].stride;
791 a_expected = highpass_a_height * highpass_a_width;
799 if (highpass_height > highpass_a_height || highpass_width > highpass_a_width || a_expected < highpass_height * (uint64_t)highpass_stride) {
804 expected = highpass_height * highpass_stride;
806 av_log(avctx,
AV_LOG_DEBUG,
"Start subband coeffs plane %i level %i codebook %i expected %i\n",
s->channel_num,
s->level,
s->codebook, expected);
814 const int lossless =
s->band_encoding == 5;
816 if (
s->codebook == 0 &&
s->transform_type == 2 &&
s->subband_num_actual == 7)
830 if (count > expected)
838 const uint16_t q =
s->quantisation;
840 for (
i = 0;
i <
run;
i++) {
841 *coeff_data |=
coeff * 256
U;
846 *coeff_data++ =
coeff;
861 if (count > expected)
869 const uint16_t q =
s->quantisation;
871 for (
i = 0;
i <
run;
i++) {
872 *coeff_data |=
coeff * 256
U;
877 *coeff_data++ =
coeff;
884 if (count > expected) {
891 if (
s->difference_coding)
892 difference_coding(
s->plane[
s->channel_num].subband[
s->subband_num_actual], highpass_width, highpass_height);
902 av_log(avctx,
AV_LOG_DEBUG,
"End subband coeffs %i extra %i\n", count, count - expected);
903 s->plane[
s->channel_num].band[
s->level][
s->subband_num].read_ok = 1;
905 if (
s->subband_num_actual != 255)
919 s->a_transform_type == INT_MIN ||
932 for (plane = 0; plane <
s->planes; plane++) {
936 if (
s->transform_type == 2)
939 for (o = !!
level; o < 4 ; o++) {
940 if (!
s->plane[plane].band[
level][o].read_ok) {
948 if (
s->transform_type == 0 &&
s->sample_type != 1) {
949 for (plane = 0; plane <
s->planes && !
ret; plane++) {
951 int lowpass_height =
s->plane[plane].band[0][0].height;
952 int output_stride =
s->plane[plane].band[0][0].a_width;
953 int lowpass_width =
s->plane[plane].band[0][0].width;
954 int highpass_stride =
s->plane[plane].band[0][1].stride;
955 int act_plane = plane == 1 ? 2 : plane == 2 ? 1 : plane;
956 ptrdiff_t dst_linesize;
957 int16_t *low, *high, *
output, *dst;
961 dst_linesize = pic->
linesize[act_plane];
963 dst_linesize = pic->
linesize[act_plane] / 2;
966 if (lowpass_height >
s->plane[plane].band[0][0].a_height || lowpass_width >
s->plane[plane].band[0][0].a_width ||
967 !highpass_stride ||
s->plane[plane].band[0][1].width >
s->plane[plane].band[0][1].a_width ||
968 lowpass_width < 3 || lowpass_height < 3) {
974 av_log(avctx,
AV_LOG_DEBUG,
"Decoding level 1 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
976 low =
s->plane[plane].subband[0];
977 high =
s->plane[plane].subband[2];
978 output =
s->plane[plane].l_h[0];
979 dsp->
vert_filter(
output, output_stride, low, lowpass_width, high, highpass_stride, lowpass_width, lowpass_height);
981 low =
s->plane[plane].subband[1];
982 high =
s->plane[plane].subband[3];
983 output =
s->plane[plane].l_h[1];
985 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
987 low =
s->plane[plane].l_h[0];
988 high =
s->plane[plane].l_h[1];
989 output =
s->plane[plane].subband[0];
990 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
992 output =
s->plane[plane].subband[0];
993 for (
i = 0;
i < lowpass_height * 2;
i++) {
994 for (j = 0; j < lowpass_width * 2; j++)
997 output += output_stride * 2;
1002 lowpass_height =
s->plane[plane].band[1][1].height;
1003 output_stride =
s->plane[plane].band[1][1].a_width;
1004 lowpass_width =
s->plane[plane].band[1][1].width;
1005 highpass_stride =
s->plane[plane].band[1][1].stride;
1007 if (lowpass_height >
s->plane[plane].band[1][1].a_height || lowpass_width >
s->plane[plane].band[1][1].a_width ||
1008 !highpass_stride ||
s->plane[plane].band[1][1].width >
s->plane[plane].band[1][1].a_width ||
1009 lowpass_width < 3 || lowpass_height < 3) {
1015 av_log(avctx,
AV_LOG_DEBUG,
"Level 2 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1017 low =
s->plane[plane].subband[0];
1018 high =
s->plane[plane].subband[5];
1019 output =
s->plane[plane].l_h[3];
1020 dsp->
vert_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1022 low =
s->plane[plane].subband[4];
1023 high =
s->plane[plane].subband[6];
1024 output =
s->plane[plane].l_h[4];
1025 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1027 low =
s->plane[plane].l_h[3];
1028 high =
s->plane[plane].l_h[4];
1029 output =
s->plane[plane].subband[0];
1030 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
1032 output =
s->plane[plane].subband[0];
1033 for (
i = 0;
i < lowpass_height * 2;
i++) {
1034 for (j = 0; j < lowpass_width * 2; j++)
1037 output += output_stride * 2;
1041 lowpass_height =
s->plane[plane].band[2][1].height;
1042 output_stride =
s->plane[plane].band[2][1].a_width;
1043 lowpass_width =
s->plane[plane].band[2][1].width;
1044 highpass_stride =
s->plane[plane].band[2][1].stride;
1046 if (lowpass_height >
s->plane[plane].band[2][1].a_height || lowpass_width >
s->plane[plane].band[2][1].a_width ||
1047 !highpass_stride ||
s->plane[plane].band[2][1].width >
s->plane[plane].band[2][1].a_width ||
1048 lowpass_height < 3 || lowpass_width < 3 || lowpass_width * 2 >
s->plane[plane].width) {
1054 av_log(avctx,
AV_LOG_DEBUG,
"Level 3 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1055 if (
s->progressive) {
1056 low =
s->plane[plane].subband[0];
1057 high =
s->plane[plane].subband[8];
1058 output =
s->plane[plane].l_h[6];
1059 dsp->
vert_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1061 low =
s->plane[plane].subband[7];
1062 high =
s->plane[plane].subband[9];
1063 output =
s->plane[plane].l_h[7];
1064 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1066 dst = (int16_t *)pic->
data[act_plane];
1071 dst += pic->
linesize[act_plane] >> 1;
1073 low =
s->plane[plane].l_h[6];
1074 high =
s->plane[plane].l_h[7];
1084 for (
i = 0;
i <
s->plane[act_plane].height;
i++) {
1088 low += output_stride;
1089 high += output_stride;
1090 dst += dst_linesize;
1095 low =
s->plane[plane].subband[0];
1096 high =
s->plane[plane].subband[7];
1097 output =
s->plane[plane].l_h[6];
1098 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1100 low =
s->plane[plane].subband[8];
1101 high =
s->plane[plane].subband[9];
1102 output =
s->plane[plane].l_h[7];
1103 dsp->
horiz_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1105 dst = (int16_t *)pic->
data[act_plane];
1106 low =
s->plane[plane].l_h[6];
1107 high =
s->plane[plane].l_h[7];
1108 for (
i = 0;
i <
s->plane[act_plane].height / 2;
i++) {
1110 low += output_stride * 2;
1111 high += output_stride * 2;
1116 }
else if (
s->transform_type == 2 && (avctx->
internal->
is_copy ||
s->frame_index == 1 ||
s->sample_type != 1)) {
1117 for (plane = 0; plane <
s->planes && !
ret; plane++) {
1118 int lowpass_height =
s->plane[plane].band[0][0].height;
1119 int output_stride =
s->plane[plane].band[0][0].a_width;
1120 int lowpass_width =
s->plane[plane].band[0][0].width;
1121 int highpass_stride =
s->plane[plane].band[0][1].stride;
1122 int act_plane = plane == 1 ? 2 : plane == 2 ? 1 : plane;
1123 int16_t *low, *high, *
output, *dst;
1124 ptrdiff_t dst_linesize;
1128 dst_linesize = pic->
linesize[act_plane];
1130 dst_linesize = pic->
linesize[act_plane] / 2;
1133 if (lowpass_height >
s->plane[plane].band[0][0].a_height || lowpass_width >
s->plane[plane].band[0][0].a_width ||
1134 !highpass_stride ||
s->plane[plane].band[0][1].width >
s->plane[plane].band[0][1].a_width ||
1135 lowpass_width < 3 || lowpass_height < 3) {
1141 av_log(avctx,
AV_LOG_DEBUG,
"Decoding level 1 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1143 low =
s->plane[plane].subband[0];
1144 high =
s->plane[plane].subband[2];
1145 output =
s->plane[plane].l_h[0];
1146 dsp->
vert_filter(
output, output_stride, low, lowpass_width, high, highpass_stride, lowpass_width, lowpass_height);
1148 low =
s->plane[plane].subband[1];
1149 high =
s->plane[plane].subband[3];
1150 output =
s->plane[plane].l_h[1];
1151 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1153 low =
s->plane[plane].l_h[0];
1154 high =
s->plane[plane].l_h[1];
1155 output =
s->plane[plane].l_h[7];
1156 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
1158 output =
s->plane[plane].l_h[7];
1159 for (
i = 0;
i < lowpass_height * 2;
i++) {
1160 for (j = 0; j < lowpass_width * 2; j++)
1163 output += output_stride * 2;
1167 lowpass_height =
s->plane[plane].band[1][1].height;
1168 output_stride =
s->plane[plane].band[1][1].a_width;
1169 lowpass_width =
s->plane[plane].band[1][1].width;
1170 highpass_stride =
s->plane[plane].band[1][1].stride;
1172 if (lowpass_height >
s->plane[plane].band[1][1].a_height || lowpass_width >
s->plane[plane].band[1][1].a_width ||
1173 !highpass_stride ||
s->plane[plane].band[1][1].width >
s->plane[plane].band[1][1].a_width ||
1174 lowpass_width < 3 || lowpass_height < 3) {
1180 av_log(avctx,
AV_LOG_DEBUG,
"Level 2 lowpass plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1182 low =
s->plane[plane].l_h[7];
1183 high =
s->plane[plane].subband[5];
1184 output =
s->plane[plane].l_h[3];
1185 dsp->
vert_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1187 low =
s->plane[plane].subband[4];
1188 high =
s->plane[plane].subband[6];
1189 output =
s->plane[plane].l_h[4];
1190 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1192 low =
s->plane[plane].l_h[3];
1193 high =
s->plane[plane].l_h[4];
1194 output =
s->plane[plane].l_h[7];
1195 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
1197 output =
s->plane[plane].l_h[7];
1198 for (
i = 0;
i < lowpass_height * 2;
i++) {
1199 for (j = 0; j < lowpass_width * 2; j++)
1201 output += output_stride * 2;
1204 low =
s->plane[plane].subband[7];
1205 high =
s->plane[plane].subband[9];
1206 output =
s->plane[plane].l_h[3];
1207 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1209 low =
s->plane[plane].subband[8];
1210 high =
s->plane[plane].subband[10];
1211 output =
s->plane[plane].l_h[4];
1212 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1214 low =
s->plane[plane].l_h[3];
1215 high =
s->plane[plane].l_h[4];
1216 output =
s->plane[plane].l_h[9];
1217 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
1219 lowpass_height =
s->plane[plane].band[4][1].height;
1220 output_stride =
s->plane[plane].band[4][1].a_width;
1221 lowpass_width =
s->plane[plane].band[4][1].width;
1222 highpass_stride =
s->plane[plane].band[4][1].stride;
1223 av_log(avctx,
AV_LOG_DEBUG,
"temporal level %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1225 if (lowpass_height >
s->plane[plane].band[4][1].a_height || lowpass_width >
s->plane[plane].band[4][1].a_width ||
1226 !highpass_stride ||
s->plane[plane].band[4][1].width >
s->plane[plane].band[4][1].a_width ||
1227 lowpass_width < 3 || lowpass_height < 3) {
1233 low =
s->plane[plane].l_h[7];
1234 high =
s->plane[plane].l_h[9];
1235 output =
s->plane[plane].l_h[7];
1236 for (
i = 0;
i < lowpass_height;
i++) {
1238 low += output_stride;
1239 high += output_stride;
1241 if (
s->progressive) {
1242 low =
s->plane[plane].l_h[7];
1243 high =
s->plane[plane].subband[15];
1244 output =
s->plane[plane].l_h[6];
1245 dsp->
vert_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1247 low =
s->plane[plane].subband[14];
1248 high =
s->plane[plane].subband[16];
1249 output =
s->plane[plane].l_h[7];
1250 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1252 low =
s->plane[plane].l_h[9];
1253 high =
s->plane[plane].subband[12];
1254 output =
s->plane[plane].l_h[8];
1255 dsp->
vert_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1257 low =
s->plane[plane].subband[11];
1258 high =
s->plane[plane].subband[13];
1259 output =
s->plane[plane].l_h[9];
1260 dsp->
vert_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1262 if (
s->sample_type == 1)
1265 dst = (int16_t *)pic->
data[act_plane];
1270 dst += pic->
linesize[act_plane] >> 1;
1281 low =
s->plane[plane].l_h[6];
1282 high =
s->plane[plane].l_h[7];
1283 for (
i = 0;
i <
s->plane[act_plane].height;
i++) {
1285 low += output_stride;
1286 high += output_stride;
1287 dst += dst_linesize;
1291 low =
s->plane[plane].l_h[7];
1292 high =
s->plane[plane].subband[14];
1293 output =
s->plane[plane].l_h[6];
1294 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1296 low =
s->plane[plane].subband[15];
1297 high =
s->plane[plane].subband[16];
1298 output =
s->plane[plane].l_h[7];
1299 dsp->
horiz_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1301 low =
s->plane[plane].l_h[9];
1302 high =
s->plane[plane].subband[11];
1303 output =
s->plane[plane].l_h[8];
1304 dsp->
horiz_filter(
output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1306 low =
s->plane[plane].subband[12];
1307 high =
s->plane[plane].subband[13];
1308 output =
s->plane[plane].l_h[9];
1309 dsp->
horiz_filter(
output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1311 if (
s->sample_type == 1)
1314 dst = (int16_t *)pic->
data[act_plane];
1315 low =
s->plane[plane].l_h[6];
1316 high =
s->plane[plane].l_h[7];
1317 for (
i = 0;
i <
s->plane[act_plane].height / 2;
i++) {
1319 low += output_stride * 2;
1320 high += output_stride * 2;
1327 if (
s->transform_type == 2 &&
s->sample_type == 1) {
1328 int16_t *low, *high, *dst;
1329 int output_stride, lowpass_height, lowpass_width;
1330 ptrdiff_t dst_linesize;
1332 for (plane = 0; plane <
s->planes; plane++) {
1333 int act_plane = plane == 1 ? 2 : plane == 2 ? 1 : plane;
1337 dst_linesize = pic->
linesize[act_plane];
1339 dst_linesize = pic->
linesize[act_plane] / 2;
1342 lowpass_height =
s->plane[plane].band[4][1].height;
1343 output_stride =
s->plane[plane].band[4][1].a_width;
1344 lowpass_width =
s->plane[plane].band[4][1].width;
1346 if (lowpass_height >
s->plane[plane].band[4][1].a_height || lowpass_width >
s->plane[plane].band[4][1].a_width ||
1347 s->plane[plane].band[4][1].width >
s->plane[plane].band[4][1].a_width ||
1348 lowpass_width < 3 || lowpass_height < 3) {
1354 if (
s->progressive) {
1355 dst = (int16_t *)pic->
data[act_plane];
1356 low =
s->plane[plane].l_h[8];
1357 high =
s->plane[plane].l_h[9];
1363 dst += pic->
linesize[act_plane] >> 1;
1374 for (
i = 0;
i <
s->plane[act_plane].height;
i++) {
1376 low += output_stride;
1377 high += output_stride;
1378 dst += dst_linesize;
1381 dst = (int16_t *)pic->
data[act_plane];
1382 low =
s->plane[plane].l_h[8];
1383 high =
s->plane[plane].l_h[9];
1384 for (
i = 0;
i <
s->plane[act_plane].height / 2;
i++) {
1386 low += output_stride * 2;
1387 high += output_stride * 2;
1451 for (
int plane = 0; plane < pdst->
planes; plane++) {