FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/cfhd.c
Date: 2026-04-22 18:56:46
Exec Total Coverage
Lines: 474 1020 46.5%
Functions: 9 16 56.2%
Branches: 309 714 43.3%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2015-2016 Kieran Kunhya <kieran@kunhya.com>
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
21 /**
22 * @file
23 * Cineform HD video decoder
24 */
25
26 #include "libavutil/attributes.h"
27 #include "libavutil/common.h"
28 #include "libavutil/imgutils.h"
29 #include "libavutil/intreadwrite.h"
30 #include "libavutil/mem.h"
31 #include "libavutil/pixdesc.h"
32
33 #include "avcodec.h"
34 #include "bytestream.h"
35 #include "codec_internal.h"
36 #include "decode.h"
37 #include "get_bits.h"
38 #include "internal.h"
39 #include "thread.h"
40 #include "cfhd.h"
41
42 #define ALPHA_COMPAND_DC_OFFSET 256
43 #define ALPHA_COMPAND_GAIN 9400
44
45 6 static av_cold int cfhd_init(AVCodecContext *avctx)
46 {
47 6 CFHDContext *s = avctx->priv_data;
48
49 6 s->avctx = avctx;
50
51
2/2
✓ Branch 0 taken 384 times.
✓ Branch 1 taken 6 times.
390 for (int i = 0; i < 64; i++) {
52 384 int val = i;
53
54
2/2
✓ Branch 0 taken 144 times.
✓ Branch 1 taken 240 times.
384 if (val >= 40) {
55
2/2
✓ Branch 0 taken 60 times.
✓ Branch 1 taken 84 times.
144 if (val >= 54) {
56 60 val -= 54;
57 60 val <<= 2;
58 60 val += 54;
59 }
60
61 144 val -= 40;
62 144 val <<= 2;
63 144 val += 40;
64 }
65
66 384 s->lut[0][i] = val;
67 }
68
69
2/2
✓ Branch 0 taken 1536 times.
✓ Branch 1 taken 6 times.
1542 for (int i = 0; i < 256; i++)
70 1536 s->lut[1][i] = i + ((768LL * i * i * i) / (256 * 256 * 256));
71
72 6 return ff_cfhd_init_vlcs(s);
73 }
74
75 99 static void init_plane_defaults(CFHDContext *s)
76 {
77 99 s->subband_num = 0;
78 99 s->level = 0;
79 99 s->subband_num_actual = 0;
80 99 }
81
82 33 static void init_peak_table_defaults(CFHDContext *s)
83 {
84 33 s->peak.level = 0;
85 33 s->peak.offset = 0;
86 33 memset(&s->peak.base, 0, sizeof(s->peak.base));
87 33 }
88
89 33 static void init_frame_defaults(CFHDContext *s)
90 {
91 33 s->coded_width = 0;
92 33 s->coded_height = 0;
93 33 s->coded_format = AV_PIX_FMT_YUV422P10;
94 33 s->cropped_height = 0;
95 33 s->bpc = 10;
96 33 s->channel_cnt = 3;
97 33 s->subband_cnt = SUBBAND_COUNT;
98 33 s->channel_num = 0;
99 33 s->lowpass_precision = 16;
100 33 s->quantisation = 1;
101 33 s->codebook = 0;
102 33 s->difference_coding = 0;
103 33 s->frame_type = 0;
104 33 s->sample_type = 0;
105
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 if (s->transform_type != 2)
106 33 s->transform_type = -1;
107 33 init_plane_defaults(s);
108 33 init_peak_table_defaults(s);
109 33 }
110
111 3522977 static inline int dequant_and_decompand(CFHDContext *s, int level, int quantisation, int codebook)
112 {
113
2/4
✓ Branch 0 taken 3522977 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 3522977 times.
✗ Branch 3 not taken.
3522977 if (codebook == 0 || codebook == 1) {
114
2/2
✓ Branch 0 taken 856386 times.
✓ Branch 1 taken 2666591 times.
3522977 return s->lut[codebook][abs(level)] * FFSIGN(level) * quantisation;
115 } else
116 return level * quantisation;
117 }
118
119 static inline void difference_coding(int16_t *band, int width, int height)
120 {
121 for (int i = 0; i < height; i++) {
122 for (int j = 1; j < width; j++) {
123 band[j] += band[j-1];
124 }
125 band += width;
126 }
127 }
128
129 static inline void peak_table(int16_t *band, Peak *peak, int length)
130 {
131 for (int i = 0; i < length; i++)
132 if (abs(band[i]) > peak->level)
133 band[i] = bytestream2_get_le16(&peak->base);
134 }
135
136 static inline void process_alpha(int16_t *alpha, int width)
137 {
138 for (int i = 0; i < width; i++) {
139 int channel = alpha[i];
140 channel -= ALPHA_COMPAND_DC_OFFSET;
141 channel <<= 3;
142 channel *= ALPHA_COMPAND_GAIN;
143 channel >>= 16;
144 channel = av_clip_uintp2(channel, 12);
145 alpha[i] = channel;
146 }
147 }
148
149 static inline void process_bayer(AVFrame *frame, int bpc)
150 {
151 const int linesize = frame->linesize[0];
152 uint16_t *r = (uint16_t *)frame->data[0];
153 uint16_t *g1 = (uint16_t *)(frame->data[0] + 2);
154 uint16_t *g2 = (uint16_t *)(frame->data[0] + frame->linesize[0]);
155 uint16_t *b = (uint16_t *)(frame->data[0] + frame->linesize[0] + 2);
156 const int mid = 1 << (bpc - 1);
157 const int factor = 1 << (16 - bpc);
158
159 for (int y = 0; y < frame->height >> 1; y++) {
160 for (int x = 0; x < frame->width; x += 2) {
161 int R, G1, G2, B;
162 int g, rg, bg, gd;
163
164 g = r[x];
165 rg = g1[x];
166 bg = g2[x];
167 gd = b[x];
168 gd -= mid;
169
170 R = (rg - mid) * 2 + g;
171 G1 = g + gd;
172 G2 = g - gd;
173 B = (bg - mid) * 2 + g;
174
175 R = av_clip_uintp2(R * factor, 16);
176 G1 = av_clip_uintp2(G1 * factor, 16);
177 G2 = av_clip_uintp2(G2 * factor, 16);
178 B = av_clip_uintp2(B * factor, 16);
179
180 r[x] = R;
181 g1[x] = G1;
182 g2[x] = G2;
183 b[x] = B;
184 }
185
186 r += linesize;
187 g1 += linesize;
188 g2 += linesize;
189 b += linesize;
190 }
191 }
192
193 static inline void interlaced_vertical_filter(int16_t *output, int16_t *low, int16_t *high,
194 int width, int linesize, int plane)
195 {
196 for (int i = 0; i < width; i++) {
197 int16_t even = (low[i] - high[i])/2;
198 int16_t odd = (low[i] + high[i])/2;
199 output[i] = av_clip_uintp2(even, 10);
200 output[i + linesize] = av_clip_uintp2(odd, 10);
201 }
202 }
203
204 static inline void inverse_temporal_filter(int16_t *low, int16_t *high, int width)
205 {
206 for (int i = 0; i < width; i++) {
207 int even = (low[i] - high[i]) / 2;
208 int odd = (low[i] + high[i]) / 2;
209
210 low[i] = even;
211 high[i] = odd;
212 }
213 }
214
215 12 static void free_buffers(CFHDContext *s)
216 {
217
2/2
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 12 times.
60 for (size_t i = 0; i < FF_ARRAY_ELEMS(s->plane); i++) {
218 48 Plane *p = &s->plane[i];
219 48 av_freep(&s->plane[i].idwt_buf);
220 48 av_freep(&s->plane[i].idwt_tmp);
221 48 s->plane[i].idwt_size = 0;
222
223
2/2
✓ Branch 0 taken 816 times.
✓ Branch 1 taken 48 times.
864 for (int j = 0; j < SUBBAND_COUNT_3D; j++)
224 816 s->plane[i].subband[j] = NULL;
225
226
2/2
✓ Branch 0 taken 480 times.
✓ Branch 1 taken 48 times.
528 for (int j = 0; j < 10; j++)
227 480 s->plane[i].l_h[j] = NULL;
228
229
2/2
✓ Branch 0 taken 288 times.
✓ Branch 1 taken 48 times.
336 for (int j = 0; j < DWT_LEVELS_3D; j++)
230 288 p->band[j][0].read_ok =
231 288 p->band[j][1].read_ok =
232 288 p->band[j][2].read_ok =
233 288 p->band[j][3].read_ok = 0;
234 }
235 12 s->a_height = 0;
236 12 s->a_width = 0;
237 12 s->a_transform_type = INT_MIN;
238 12 }
239
240 6 static int alloc_buffers(AVCodecContext *avctx)
241 {
242 6 CFHDContext *s = avctx->priv_data;
243 6 int ret, planes, bayer = 0;
244 int chroma_x_shift, chroma_y_shift;
245
246
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 6 times.
6 if ((ret = ff_set_dimensions(avctx, s->coded_width, s->coded_height)) < 0)
247 return ret;
248 6 avctx->pix_fmt = s->coded_format;
249
250 6 ff_cfhddsp_init(&s->dsp, s->bpc, avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16);
251
252
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 6 times.
6 if ((ret = av_pix_fmt_get_chroma_sub_sample(s->coded_format,
253 &chroma_x_shift,
254 &chroma_y_shift)) < 0)
255 return ret;
256 6 planes = av_pix_fmt_count_planes(s->coded_format);
257
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6 times.
6 if (s->coded_format == AV_PIX_FMT_BAYER_RGGB16) {
258 planes = 4;
259 chroma_x_shift = 1;
260 chroma_y_shift = 1;
261 bayer = 1;
262 }
263
264
2/2
✓ Branch 0 taken 18 times.
✓ Branch 1 taken 6 times.
24 for (int i = 0; i < planes; i++) {
265 int w8, h8, w4, h4, w2, h2;
266
3/4
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
18 int width = (i || bayer) ? s->coded_width >> chroma_x_shift : s->coded_width;
267
3/4
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 12 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
18 int height = (i || bayer) ? s->coded_height >> chroma_y_shift : s->coded_height;
268 18 ptrdiff_t stride = (FFALIGN(width / 8, 8) + 64) * 8;
269
270
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 18 times.
18 if ((ret = av_image_check_size2(stride, height, avctx->max_pixels, s->coded_format, 0, avctx)) < 0)
271 return ret;
272
273
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 18 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
18 if (chroma_y_shift && !bayer)
274 height = FFALIGN(height / 8, 2) * 8;
275 18 s->plane[i].width = width;
276 18 s->plane[i].height = height;
277 18 s->plane[i].stride = stride;
278
279 18 w8 = FFALIGN(s->plane[i].width / 8, 8) + 64;
280 18 h8 = FFALIGN(height, 8) / 8;
281 18 w4 = w8 * 2;
282 18 h4 = h8 * 2;
283 18 w2 = w4 * 2;
284 18 h2 = h4 * 2;
285
286
1/2
✓ Branch 0 taken 18 times.
✗ Branch 1 not taken.
18 if (s->transform_type == 0) {
287 18 s->plane[i].idwt_size = FFALIGN(height, 8) * stride;
288 18 s->plane[i].idwt_buf =
289 18 av_calloc(s->plane[i].idwt_size, sizeof(*s->plane[i].idwt_buf));
290 18 s->plane[i].idwt_tmp =
291 18 av_malloc_array(s->plane[i].idwt_size, sizeof(*s->plane[i].idwt_tmp));
292 } else {
293 s->plane[i].idwt_size = FFALIGN(height, 8) * stride * 2;
294 s->plane[i].idwt_buf =
295 av_calloc(s->plane[i].idwt_size, sizeof(*s->plane[i].idwt_buf));
296 s->plane[i].idwt_tmp =
297 av_malloc_array(s->plane[i].idwt_size, sizeof(*s->plane[i].idwt_tmp));
298 }
299
300
2/4
✓ Branch 0 taken 18 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 18 times.
18 if (!s->plane[i].idwt_buf || !s->plane[i].idwt_tmp)
301 return AVERROR(ENOMEM);
302
303 18 s->plane[i].subband[0] = s->plane[i].idwt_buf;
304 18 s->plane[i].subband[1] = s->plane[i].idwt_buf + 2 * w8 * h8;
305 18 s->plane[i].subband[2] = s->plane[i].idwt_buf + 1 * w8 * h8;
306 18 s->plane[i].subband[3] = s->plane[i].idwt_buf + 3 * w8 * h8;
307 18 s->plane[i].subband[4] = s->plane[i].idwt_buf + 2 * w4 * h4;
308 18 s->plane[i].subband[5] = s->plane[i].idwt_buf + 1 * w4 * h4;
309 18 s->plane[i].subband[6] = s->plane[i].idwt_buf + 3 * w4 * h4;
310
1/2
✓ Branch 0 taken 18 times.
✗ Branch 1 not taken.
18 if (s->transform_type == 0) {
311 18 s->plane[i].subband[7] = s->plane[i].idwt_buf + 2 * w2 * h2;
312 18 s->plane[i].subband[8] = s->plane[i].idwt_buf + 1 * w2 * h2;
313 18 s->plane[i].subband[9] = s->plane[i].idwt_buf + 3 * w2 * h2;
314 } else {
315 int16_t *frame2 =
316 s->plane[i].subband[7] = s->plane[i].idwt_buf + 4 * w2 * h2;
317 s->plane[i].subband[8] = frame2 + 2 * w4 * h4;
318 s->plane[i].subband[9] = frame2 + 1 * w4 * h4;
319 s->plane[i].subband[10] = frame2 + 3 * w4 * h4;
320 s->plane[i].subband[11] = frame2 + 2 * w2 * h2;
321 s->plane[i].subband[12] = frame2 + 1 * w2 * h2;
322 s->plane[i].subband[13] = frame2 + 3 * w2 * h2;
323 s->plane[i].subband[14] = s->plane[i].idwt_buf + 2 * w2 * h2;
324 s->plane[i].subband[15] = s->plane[i].idwt_buf + 1 * w2 * h2;
325 s->plane[i].subband[16] = s->plane[i].idwt_buf + 3 * w2 * h2;
326 }
327
328
1/2
✓ Branch 0 taken 18 times.
✗ Branch 1 not taken.
18 if (s->transform_type == 0) {
329
2/2
✓ Branch 0 taken 54 times.
✓ Branch 1 taken 18 times.
72 for (int j = 0; j < DWT_LEVELS; j++) {
330
2/2
✓ Branch 0 taken 216 times.
✓ Branch 1 taken 54 times.
270 for (unsigned k = 0; k < FF_ARRAY_ELEMS(s->plane[i].band[j]); k++) {
331 216 s->plane[i].band[j][k].a_width = w8 << j;
332 216 s->plane[i].band[j][k].a_height = h8 << j;
333 }
334 }
335 } else {
336 for (int j = 0; j < DWT_LEVELS_3D; j++) {
337 int t = j < 1 ? 0 : (j < 3 ? 1 : 2);
338
339 for (unsigned k = 0; k < FF_ARRAY_ELEMS(s->plane[i].band[j]); k++) {
340 s->plane[i].band[j][k].a_width = w8 << t;
341 s->plane[i].band[j][k].a_height = h8 << t;
342 }
343 }
344 }
345
346 /* ll2 and ll1 commented out because they are done in-place */
347 18 s->plane[i].l_h[0] = s->plane[i].idwt_tmp;
348 18 s->plane[i].l_h[1] = s->plane[i].idwt_tmp + 2 * w8 * h8;
349 // s->plane[i].l_h[2] = ll2;
350 18 s->plane[i].l_h[3] = s->plane[i].idwt_tmp;
351 18 s->plane[i].l_h[4] = s->plane[i].idwt_tmp + 2 * w4 * h4;
352 // s->plane[i].l_h[5] = ll1;
353 18 s->plane[i].l_h[6] = s->plane[i].idwt_tmp;
354 18 s->plane[i].l_h[7] = s->plane[i].idwt_tmp + 2 * w2 * h2;
355
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 18 times.
18 if (s->transform_type != 0) {
356 int16_t *frame2 = s->plane[i].idwt_tmp + 4 * w2 * h2;
357
358 s->plane[i].l_h[8] = frame2;
359 s->plane[i].l_h[9] = frame2 + 2 * w2 * h2;
360 }
361 }
362
363 6 s->a_transform_type = s->transform_type;
364 6 s->a_height = s->coded_height;
365 6 s->a_width = s->coded_width;
366 6 s->a_format = s->coded_format;
367
368 6 return 0;
369 }
370
371 33 static int cfhd_decode(AVCodecContext *avctx, AVFrame *pic,
372 int *got_frame, AVPacket *avpkt)
373 {
374 33 CFHDContext *s = avctx->priv_data;
375 33 CFHDDSPContext *dsp = &s->dsp;
376 GetByteContext gb;
377 33 int ret = 0, got_buffer = 0;
378
379 33 init_frame_defaults(s);
380 33 s->planes = av_pix_fmt_count_planes(s->coded_format);
381
382 33 bytestream2_init(&gb, avpkt->data, avpkt->size);
383
384
2/2
✓ Branch 1 taken 17193 times.
✓ Branch 2 taken 33 times.
17226 while (bytestream2_get_bytes_left(&gb) >= 4) {
385 /* Bit weird but implement the tag parsing as the spec says */
386 17193 uint16_t tagu = bytestream2_get_be16(&gb);
387 17193 int16_t tag = (int16_t)tagu;
388 17193 int8_t tag8 = (int8_t)(tagu >> 8);
389 17193 uint16_t abstag = abs(tag);
390 17193 int8_t abs_tag8 = abs(tag8);
391 17193 uint16_t data = bytestream2_get_be16(&gb);
392 int16_t *coeff_data;
393
394
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 17193 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
17193 if (abs_tag8 >= 0x60 && abs_tag8 <= 0x6f) {
395 av_log(avctx, AV_LOG_DEBUG, "large len %x\n", ((tagu & 0xff) << 16) | data);
396
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 17160 times.
17193 } else if (tag == SampleFlags) {
397 33 av_log(avctx, AV_LOG_DEBUG, "Progressive? %"PRIu16"\n", data);
398 33 s->progressive = data & 0x0001;
399
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17160 times.
17160 } else if (tag == FrameType) {
400 s->frame_type = data;
401 av_log(avctx, AV_LOG_DEBUG, "Frame type %"PRIu16"\n", data);
402
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17160 times.
17160 } else if (abstag == VersionMajor) {
403 av_log(avctx, AV_LOG_DEBUG, "Version major %"PRIu16"\n", data);
404
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17160 times.
17160 } else if (abstag == VersionMinor) {
405 av_log(avctx, AV_LOG_DEBUG, "Version minor %"PRIu16"\n", data);
406
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17160 times.
17160 } else if (abstag == VersionRevision) {
407 av_log(avctx, AV_LOG_DEBUG, "Version revision %"PRIu16"\n", data);
408
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17160 times.
17160 } else if (abstag == VersionEdit) {
409 av_log(avctx, AV_LOG_DEBUG, "Version edit %"PRIu16"\n", data);
410
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 17127 times.
17160 } else if (abstag == Version) {
411 33 av_log(avctx, AV_LOG_DEBUG, "Version %"PRIu16"\n", data);
412
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 17094 times.
17127 } else if (tag == ImageWidth) {
413 33 av_log(avctx, AV_LOG_DEBUG, "Width %"PRIu16"\n", data);
414 33 s->coded_width = data;
415
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 17061 times.
17094 } else if (tag == ImageHeight) {
416 33 av_log(avctx, AV_LOG_DEBUG, "Height %"PRIu16"\n", data);
417 33 s->coded_height = data;
418
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 17028 times.
17061 } else if (tag == ChannelCount) {
419 33 av_log(avctx, AV_LOG_DEBUG, "Channel Count: %"PRIu16"\n", data);
420 33 s->channel_cnt = data;
421
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (data > 4) {
422 av_log(avctx, AV_LOG_ERROR, "Channel Count of %"PRIu16" is unsupported\n", data);
423 ret = AVERROR_PATCHWELCOME;
424 goto end;
425 }
426
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 16995 times.
17028 } else if (tag == SubbandCount) {
427 33 av_log(avctx, AV_LOG_DEBUG, "Subband Count: %"PRIu16"\n", data);
428
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
33 if (data != SUBBAND_COUNT && data != SUBBAND_COUNT_3D) {
429 av_log(avctx, AV_LOG_ERROR, "Subband Count of %"PRIu16" is unsupported\n", data);
430 ret = AVERROR_PATCHWELCOME;
431 goto end;
432 }
433
2/2
✓ Branch 0 taken 66 times.
✓ Branch 1 taken 16929 times.
16995 } else if (tag == ChannelNumber) {
434 66 s->channel_num = data;
435 66 av_log(avctx, AV_LOG_DEBUG, "Channel number %"PRIu16"\n", data);
436
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 66 times.
66 if (s->channel_num >= s->planes) {
437 av_log(avctx, AV_LOG_ERROR, "Invalid channel number\n");
438 ret = AVERROR(EINVAL);
439 goto end;
440 }
441 66 init_plane_defaults(s);
442
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 16038 times.
16929 } else if (tag == SubbandNumber) {
443
5/8
✓ Branch 0 taken 792 times.
✓ Branch 1 taken 99 times.
✓ Branch 2 taken 198 times.
✓ Branch 3 taken 594 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 198 times.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
891 if (s->subband_num != 0 && data == 1 && (s->transform_type == 0 || s->transform_type == 2)) // hack
444 198 s->level++;
445 891 av_log(avctx, AV_LOG_DEBUG, "Subband number %"PRIu16"\n", data);
446 891 s->subband_num = data;
447
2/4
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 891 times.
✗ Branch 3 not taken.
891 if ((s->transform_type == 0 && s->level >= DWT_LEVELS) ||
448
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
891 (s->transform_type == 2 && s->level >= DWT_LEVELS_3D)) {
449 av_log(avctx, AV_LOG_ERROR, "Invalid level\n");
450 ret = AVERROR(EINVAL);
451 goto end;
452 }
453
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (s->subband_num > 3) {
454 av_log(avctx, AV_LOG_ERROR, "Invalid subband number\n");
455 ret = AVERROR(EINVAL);
456 goto end;
457 }
458
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 15147 times.
16038 } else if (tag == SubbandBand) {
459 891 av_log(avctx, AV_LOG_DEBUG, "Subband number actual %"PRIu16"\n", data);
460
2/4
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 891 times.
✗ Branch 3 not taken.
891 if ((s->transform_type == 0 && data >= SUBBAND_COUNT) ||
461
1/6
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
891 (s->transform_type == 2 && data >= SUBBAND_COUNT_3D && data != 255)) {
462 av_log(avctx, AV_LOG_ERROR, "Invalid subband number actual\n");
463 ret = AVERROR(EINVAL);
464 goto end;
465 }
466
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
891 if (s->transform_type == 0 || s->transform_type == 2)
467 891 s->subband_num_actual = data;
468 else
469 av_log(avctx, AV_LOG_WARNING, "Ignoring subband num actual %"PRIu16"\n", data);
470
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 15048 times.
15147 } else if (tag == LowpassPrecision)
471 99 av_log(avctx, AV_LOG_DEBUG, "Lowpass precision bits: %"PRIu16"\n", data);
472
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 14157 times.
15048 else if (tag == Quantization) {
473 891 s->quantisation = data;
474 891 av_log(avctx, AV_LOG_DEBUG, "Quantisation: %"PRIu16"\n", data);
475
2/2
✓ Branch 0 taken 11 times.
✓ Branch 1 taken 14146 times.
14157 } else if (tag == PrescaleTable) {
476
2/2
✓ Branch 0 taken 88 times.
✓ Branch 1 taken 11 times.
99 for (int i = 0; i < 8; i++)
477 88 s->prescale_table[i] = (data >> (14 - i * 2)) & 0x3;
478 11 av_log(avctx, AV_LOG_DEBUG, "Prescale table: %x\n", data);
479
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 13255 times.
14146 } else if (tag == BandEncoding) {
480
2/4
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 891 times.
891 if (!data || data > 5) {
481 av_log(avctx, AV_LOG_ERROR, "Invalid band encoding\n");
482 ret = AVERROR(EINVAL);
483 goto end;
484 }
485 891 s->band_encoding = data;
486 891 av_log(avctx, AV_LOG_DEBUG, "Encode Method for Subband %d : %x\n", s->subband_num_actual, data);
487
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 13156 times.
13255 } else if (tag == LowpassWidth) {
488 99 av_log(avctx, AV_LOG_DEBUG, "Lowpass width %"PRIu16"\n", data);
489 99 s->plane[s->channel_num].band[0][0].width = data;
490 99 s->plane[s->channel_num].band[0][0].stride = data;
491
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 13057 times.
13156 } else if (tag == LowpassHeight) {
492 99 av_log(avctx, AV_LOG_DEBUG, "Lowpass height %"PRIu16"\n", data);
493 99 s->plane[s->channel_num].band[0][0].height = data;
494
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 12958 times.
13057 } else if (tag == SampleType) {
495 99 s->sample_type = data;
496 99 av_log(avctx, AV_LOG_DEBUG, "Sample type? %"PRIu16"\n", data);
497
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 12925 times.
12958 } else if (tag == TransformType) {
498
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (data > 2) {
499 av_log(avctx, AV_LOG_ERROR, "Invalid transform type\n");
500 ret = AVERROR(EINVAL);
501 goto end;
502
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 } else if (data == 1) {
503 av_log(avctx, AV_LOG_ERROR, "unsupported transform type\n");
504 ret = AVERROR_PATCHWELCOME;
505 goto end;
506 }
507
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 if (s->transform_type == -1) {
508 33 s->transform_type = data;
509 33 av_log(avctx, AV_LOG_DEBUG, "Transform type %"PRIu16"\n", data);
510 } else {
511 av_log(avctx, AV_LOG_DEBUG, "Ignoring additional transform type %"PRIu16"\n", data);
512 }
513
3/4
✓ Branch 0 taken 66 times.
✓ Branch 1 taken 12859 times.
✓ Branch 2 taken 66 times.
✗ Branch 3 not taken.
12925 } else if (abstag >= 0x4000 && abstag <= 0x40ff) {
514
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 66 times.
66 if (abstag == 0x4001)
515 s->peak.level = 0;
516
1/2
✓ Branch 0 taken 66 times.
✗ Branch 1 not taken.
66 av_log(avctx, AV_LOG_DEBUG, "Small chunk length %d %s\n", data * 4, tag < 0 ? "optional" : "required");
517 66 bytestream2_skipu(&gb, data * 4);
518
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 12859 times.
12859 } else if (tag == FrameIndex) {
519 av_log(avctx, AV_LOG_DEBUG, "Frame index %"PRIu16"\n", data);
520 s->frame_index = data;
521
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 12826 times.
12859 } else if (tag == SampleIndexTable) {
522 33 av_log(avctx, AV_LOG_DEBUG, "Sample index table - skipping %i values\n", data);
523
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 33 times.
33 if (data > bytestream2_get_bytes_left(&gb) / 4) {
524 av_log(avctx, AV_LOG_ERROR, "too many values (%d)\n", data);
525 ret = AVERROR_INVALIDDATA;
526 goto end;
527 }
528
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 33 times.
132 for (int i = 0; i < data; i++) {
529 99 uint32_t offset = bytestream2_get_be32(&gb);
530 99 av_log(avctx, AV_LOG_DEBUG, "Offset = %"PRIu32"\n", offset);
531 }
532
2/2
✓ Branch 0 taken 297 times.
✓ Branch 1 taken 12529 times.
12826 } else if (tag == HighpassWidth) {
533 297 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);
534
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 297 times.
297 if (data < 3) {
535 av_log(avctx, AV_LOG_ERROR, "Invalid highpass width\n");
536 ret = AVERROR(EINVAL);
537 goto end;
538 }
539 297 s->plane[s->channel_num].band[s->level][s->subband_num].width = data;
540 297 s->plane[s->channel_num].band[s->level][s->subband_num].stride = FFALIGN(data, 8);
541
2/2
✓ Branch 0 taken 297 times.
✓ Branch 1 taken 12232 times.
12529 } else if (tag == HighpassHeight) {
542 297 av_log(avctx, AV_LOG_DEBUG, "Highpass height %i\n", data);
543
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 297 times.
297 if (data < 3) {
544 av_log(avctx, AV_LOG_ERROR, "Invalid highpass height\n");
545 ret = AVERROR(EINVAL);
546 goto end;
547 }
548 297 s->plane[s->channel_num].band[s->level][s->subband_num].height = data;
549
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 11341 times.
12232 } else if (tag == BandWidth) {
550 891 av_log(avctx, AV_LOG_DEBUG, "Highpass width2 %i\n", data);
551
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (data < 3) {
552 av_log(avctx, AV_LOG_ERROR, "Invalid highpass width2\n");
553 ret = AVERROR(EINVAL);
554 goto end;
555 }
556 891 s->plane[s->channel_num].band[s->level][s->subband_num].width = data;
557 891 s->plane[s->channel_num].band[s->level][s->subband_num].stride = FFALIGN(data, 8);
558
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 10450 times.
11341 } else if (tag == BandHeight) {
559 891 av_log(avctx, AV_LOG_DEBUG, "Highpass height2 %i\n", data);
560
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (data < 3) {
561 av_log(avctx, AV_LOG_ERROR, "Invalid highpass height2\n");
562 ret = AVERROR(EINVAL);
563 goto end;
564 }
565 891 s->plane[s->channel_num].band[s->level][s->subband_num].height = data;
566
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10450 times.
10450 } else if (tag == InputFormat) {
567 av_log(avctx, AV_LOG_DEBUG, "Input format %i\n", data);
568 if (s->coded_format == AV_PIX_FMT_NONE ||
569 s->coded_format == AV_PIX_FMT_YUV422P10) {
570 if (data >= 100 && data <= 105) {
571 s->coded_format = AV_PIX_FMT_BAYER_RGGB16;
572 } else if (data >= 122 && data <= 128) {
573 s->coded_format = AV_PIX_FMT_GBRP12;
574 } else if (data == 30) {
575 s->coded_format = AV_PIX_FMT_GBRAP12;
576 } else {
577 s->coded_format = AV_PIX_FMT_YUV422P10;
578 }
579 s->planes = s->coded_format == AV_PIX_FMT_BAYER_RGGB16 ? 4 : av_pix_fmt_count_planes(s->coded_format);
580 }
581
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 9559 times.
10450 } else if (tag == BandCodingFlags) {
582 891 s->codebook = data & 0xf;
583 891 s->difference_coding = (data >> 4) & 1;
584 891 av_log(avctx, AV_LOG_DEBUG, "Other codebook? %i\n", s->codebook);
585
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 9526 times.
9559 } else if (tag == Precision) {
586 33 av_log(avctx, AV_LOG_DEBUG, "Precision %i\n", data);
587
3/4
✓ Branch 0 taken 11 times.
✓ Branch 1 taken 22 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 11 times.
33 if (!(data == 10 || data == 12)) {
588 av_log(avctx, AV_LOG_ERROR, "Invalid bits per channel\n");
589 ret = AVERROR(EINVAL);
590 goto end;
591 }
592 33 avctx->bits_per_raw_sample = s->bpc = data;
593
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 9493 times.
9526 } else if (tag == EncodedFormat) {
594 33 av_log(avctx, AV_LOG_DEBUG, "Sample format? %i\n", data);
595
2/2
✓ Branch 0 taken 22 times.
✓ Branch 1 taken 11 times.
33 if (data == 1) {
596 22 s->coded_format = AV_PIX_FMT_YUV422P10;
597
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11 times.
11 } else if (data == 2) {
598 s->coded_format = AV_PIX_FMT_BAYER_RGGB16;
599
1/2
✓ Branch 0 taken 11 times.
✗ Branch 1 not taken.
11 } else if (data == 3) {
600 11 s->coded_format = AV_PIX_FMT_GBRP12;
601 } else if (data == 4) {
602 s->coded_format = AV_PIX_FMT_GBRAP12;
603 } else {
604 avpriv_report_missing_feature(avctx, "Sample format of %"PRIu16, data);
605 ret = AVERROR_PATCHWELCOME;
606 goto end;
607 }
608
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 s->planes = data == 2 ? 4 : av_pix_fmt_count_planes(s->coded_format);
609
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 9460 times.
9493 } else if (tag == -DisplayHeight) {
610 33 av_log(avctx, AV_LOG_DEBUG, "Cropped height %"PRIu16"\n", data);
611 33 s->cropped_height = data;
612
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 9460 times.
9460 } else if (tag == -PeakOffsetLow) {
613 s->peak.offset &= ~0xffff;
614 s->peak.offset |= (data & 0xffff);
615 s->peak.base = gb;
616 s->peak.level = 0;
617
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 9460 times.
9460 } else if (tag == -PeakOffsetHigh) {
618 s->peak.offset &= 0xffff;
619 s->peak.offset |= (data & 0xffffU)<<16;
620 s->peak.base = gb;
621 s->peak.level = 0;
622
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 9460 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
9460 } else if (tag == -PeakLevel && s->peak.offset) {
623 s->peak.level = data;
624 if (s->peak.offset < 4 - bytestream2_tell(&s->peak.base) ||
625 s->peak.offset > 4 + bytestream2_get_bytes_left(&s->peak.base)
626 ) {
627 ret = AVERROR_INVALIDDATA;
628 goto end;
629 }
630 bytestream2_seek(&s->peak.base, s->peak.offset - 4, SEEK_CUR);
631 } else
632 9460 av_log(avctx, AV_LOG_DEBUG, "Unknown tag %i data %x\n", tag, data);
633
634
4/4
✓ Branch 0 taken 1782 times.
✓ Branch 1 taken 15411 times.
✓ Branch 2 taken 99 times.
✓ Branch 3 taken 1683 times.
17193 if (tag == BitstreamMarker && data == CoefficientSegment &&
635
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 66 times.
99 s->coded_format != AV_PIX_FMT_NONE) {
636 33 int lowpass_height = s->plane[s->channel_num].band[0][0].height;
637 33 int lowpass_width = s->plane[s->channel_num].band[0][0].width;
638
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 int factor = s->coded_format == AV_PIX_FMT_BAYER_RGGB16 ? 2 : 1;
639
640
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 if (s->coded_width) {
641 33 s->coded_width *= factor;
642 }
643
644
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 if (s->coded_height) {
645 33 s->coded_height *= factor;
646 }
647
648
3/4
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 27 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
33 if (!s->a_width && !s->coded_width) {
649 s->coded_width = lowpass_width * factor * 8;
650 }
651
652
3/4
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 27 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
33 if (!s->a_height && !s->coded_height) {
653 s->coded_height = lowpass_height * factor * 8;
654 }
655
656
3/4
✓ Branch 0 taken 27 times.
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 27 times.
33 if (s->a_width && !s->coded_width)
657 s->coded_width = s->a_width;
658
3/4
✓ Branch 0 taken 27 times.
✓ Branch 1 taken 6 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 27 times.
33 if (s->a_height && !s->coded_height)
659 s->coded_height = s->a_height;
660
661
3/4
✓ Branch 0 taken 27 times.
✓ Branch 1 taken 6 times.
✓ Branch 2 taken 27 times.
✗ Branch 3 not taken.
33 if (s->a_width != s->coded_width || s->a_height != s->coded_height ||
662
1/2
✓ Branch 0 taken 27 times.
✗ Branch 1 not taken.
27 s->a_format != s->coded_format ||
663
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 27 times.
27 s->transform_type != s->a_transform_type) {
664 6 free_buffers(s);
665
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 6 times.
6 if ((ret = alloc_buffers(avctx)) < 0) {
666 free_buffers(s);
667 return ret;
668 }
669 }
670 33 ret = ff_set_dimensions(avctx, s->coded_width, s->coded_height);
671
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (ret < 0)
672 return ret;
673
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 if (s->cropped_height) {
674 33 unsigned height = s->cropped_height << (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16);
675
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (avctx->height < height)
676 return AVERROR_INVALIDDATA;
677 33 avctx->height = height;
678 }
679 33 pic->width = pic->height = 0;
680
681
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 33 times.
33 if ((ret = ff_thread_get_buffer(avctx, pic, 0)) < 0)
682 return ret;
683
684 33 s->coded_width = 0;
685 33 s->coded_height = 0;
686 33 s->coded_format = AV_PIX_FMT_NONE;
687 33 got_buffer = 1;
688
1/8
✗ Branch 0 not taken.
✓ Branch 1 taken 17160 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
17160 } else if (tag == FrameIndex && data == 1 && s->sample_type == 1 && s->frame_type == 2) {
689 pic->width = pic->height = 0;
690
691 if ((ret = ff_thread_get_buffer(avctx, pic, 0)) < 0)
692 return ret;
693 s->coded_width = 0;
694 s->coded_height = 0;
695 s->coded_format = AV_PIX_FMT_NONE;
696 got_buffer = 1;
697 }
698
699
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17193 times.
17193 if (s->subband_num_actual == 255)
700 goto finish;
701
702
8/10
✓ Branch 0 taken 1782 times.
✓ Branch 1 taken 15411 times.
✓ Branch 2 taken 1683 times.
✓ Branch 3 taken 99 times.
✓ Branch 4 taken 16203 times.
✓ Branch 5 taken 891 times.
✓ Branch 6 taken 16203 times.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✓ Branch 9 taken 16203 times.
17193 if (tag == BitstreamMarker && data == CoefficientSegment || tag == BandHeader || tag == BandSecondPass || s->peak.level)
703
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 990 times.
990 if (s->transform_type != s->a_transform_type)
704 return AVERROR_PATCHWELCOME;
705
706 17193 coeff_data = s->plane[s->channel_num].subband[s->subband_num_actual];
707
708 /* Lowpass coefficients */
709
4/4
✓ Branch 0 taken 1782 times.
✓ Branch 1 taken 15411 times.
✓ Branch 2 taken 99 times.
✓ Branch 3 taken 1683 times.
17193 if (tag == BitstreamMarker && data == CoefficientSegment) {
710 int lowpass_height, lowpass_width, lowpass_a_height, lowpass_a_width;
711
712
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 99 times.
99 if (!s->a_width || !s->a_height) {
713 ret = AVERROR_INVALIDDATA;
714 goto end;
715 }
716
717 99 lowpass_height = s->plane[s->channel_num].band[0][0].height;
718 99 lowpass_width = s->plane[s->channel_num].band[0][0].width;
719 99 lowpass_a_height = s->plane[s->channel_num].band[0][0].a_height;
720 99 lowpass_a_width = s->plane[s->channel_num].band[0][0].a_width;
721
722
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 99 times.
99 if (lowpass_width < 3 ||
723 lowpass_width > lowpass_a_width) {
724 av_log(avctx, AV_LOG_ERROR, "Invalid lowpass width\n");
725 ret = AVERROR(EINVAL);
726 goto end;
727 }
728
729
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 99 times.
99 if (lowpass_height < 3 ||
730 lowpass_height > lowpass_a_height) {
731 av_log(avctx, AV_LOG_ERROR, "Invalid lowpass height\n");
732 ret = AVERROR(EINVAL);
733 goto end;
734 }
735
736
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 99 times.
99 if (!got_buffer) {
737 av_log(avctx, AV_LOG_ERROR, "No end of header tag found\n");
738 ret = AVERROR(EINVAL);
739 goto end;
740 }
741
742
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
99 if (lowpass_height > lowpass_a_height || lowpass_width > lowpass_a_width ||
743
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
99 lowpass_width * lowpass_height * sizeof(int16_t) > bytestream2_get_bytes_left(&gb)) {
744 av_log(avctx, AV_LOG_ERROR, "Too many lowpass coefficients\n");
745 ret = AVERROR(EINVAL);
746 goto end;
747 }
748
749 99 av_log(avctx, AV_LOG_DEBUG, "Start of lowpass coeffs component %d height:%d, width:%d\n", s->channel_num, lowpass_height, lowpass_width);
750
2/2
✓ Branch 0 taken 4983 times.
✓ Branch 1 taken 99 times.
5082 for (int i = 0; i < lowpass_height; i++) {
751
2/2
✓ Branch 0 taken 339284 times.
✓ Branch 1 taken 4983 times.
344267 for (int j = 0; j < lowpass_width; j++)
752 339284 coeff_data[j] = bytestream2_get_be16u(&gb);
753
754 4983 coeff_data += lowpass_width;
755 }
756
757 /* Align to mod-4 position to continue reading tags */
758 99 bytestream2_seek(&gb, bytestream2_tell(&gb) & 3, SEEK_CUR);
759
760 /* Copy last line of coefficients if odd height */
761
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 66 times.
99 if (lowpass_height & 1) {
762 33 memcpy(&coeff_data[lowpass_height * lowpass_width],
763 33 &coeff_data[(lowpass_height - 1) * lowpass_width],
764 lowpass_width * sizeof(*coeff_data));
765 }
766
767 99 s->plane[s->channel_num].band[0][0].read_ok = 1;
768
769 99 av_log(avctx, AV_LOG_DEBUG, "Lowpass coefficients %d\n", lowpass_width * lowpass_height);
770 }
771
772
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17193 times.
17193 av_assert0(s->subband_num_actual != 255);
773
3/4
✓ Branch 0 taken 16302 times.
✓ Branch 1 taken 891 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 16302 times.
17193 if (tag == BandHeader || tag == BandSecondPass) {
774 int highpass_height, highpass_width, highpass_a_width, highpass_a_height, highpass_stride, a_expected;
775 int expected;
776 GetBitContext gbit;
777 891 int count = 0, bytes;
778
779
2/4
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 891 times.
891 if (!s->a_width || !s->a_height) {
780 ret = AVERROR_INVALIDDATA;
781 goto end;
782 }
783
784 891 highpass_height = s->plane[s->channel_num].band[s->level][s->subband_num].height;
785 891 highpass_width = s->plane[s->channel_num].band[s->level][s->subband_num].width;
786 891 highpass_a_width = s->plane[s->channel_num].band[s->level][s->subband_num].a_width;
787 891 highpass_a_height = s->plane[s->channel_num].band[s->level][s->subband_num].a_height;
788 891 highpass_stride = s->plane[s->channel_num].band[s->level][s->subband_num].stride;
789 891 a_expected = highpass_a_height * highpass_a_width;
790
791
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (!got_buffer) {
792 av_log(avctx, AV_LOG_ERROR, "No end of header tag found\n");
793 ret = AVERROR(EINVAL);
794 goto end;
795 }
796
797
3/6
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 891 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 891 times.
891 if (highpass_height > highpass_a_height || highpass_width > highpass_a_width || a_expected < highpass_height * (uint64_t)highpass_stride) {
798 av_log(avctx, AV_LOG_ERROR, "Too many highpass coefficients\n");
799 ret = AVERROR(EINVAL);
800 goto end;
801 }
802 891 expected = highpass_height * highpass_stride;
803
804 891 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);
805
806 891 ret = init_get_bits8(&gbit, gb.buffer, bytestream2_get_bytes_left(&gb));
807
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (ret < 0)
808 goto end;
809 {
810 891 OPEN_READER(re, &gbit);
811
812 891 const int lossless = s->band_encoding == 5;
813
814
1/6
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
891 if (s->codebook == 0 && s->transform_type == 2 && s->subband_num_actual == 7)
815 s->codebook = 1;
816
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (!s->codebook) {
817 while (1) {
818 int level, run, coeff;
819
820 UPDATE_CACHE(re, &gbit);
821 GET_RL_VLC(level, run, re, &gbit, s->table_9_rl_vlc,
822 VLC_BITS, 3, 1);
823
824 /* escape */
825 if (!run)
826 break;
827
828 count += run;
829
830 if (count > expected)
831 break;
832
833 if (!lossless)
834 coeff = dequant_and_decompand(s, level, s->quantisation, 0);
835 else
836 coeff = level;
837 if (tag == BandSecondPass) {
838 const uint16_t q = s->quantisation;
839
840 for (int i = 0; i < run; i++) {
841 *coeff_data |= coeff * 256U;
842 *coeff_data++ *= q;
843 }
844 } else {
845 for (int i = 0; i < run; i++)
846 *coeff_data++ = coeff;
847 }
848 }
849 } else {
850 3522977 while (1) {
851 int level, run, coeff;
852
853 3523868 UPDATE_CACHE(re, &gbit);
854
4/4
✓ Branch 1 taken 268732 times.
✓ Branch 2 taken 3255136 times.
✓ Branch 4 taken 17281 times.
✓ Branch 5 taken 251451 times.
3523868 GET_RL_VLC(level, run, re, &gbit, s->table_18_rl_vlc,
855 VLC_BITS, 3, 1);
856
857 /* escape */
858
2/2
✓ Branch 0 taken 891 times.
✓ Branch 1 taken 3522977 times.
3523868 if (!run)
859 891 break;
860
861 3522977 count += run;
862
863
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3522977 times.
3522977 if (count > expected)
864 break;
865
866
1/2
✓ Branch 0 taken 3522977 times.
✗ Branch 1 not taken.
3522977 if (!lossless)
867 3522977 coeff = dequant_and_decompand(s, level, s->quantisation, s->codebook);
868 else
869 coeff = level;
870
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3522977 times.
3522977 if (tag == BandSecondPass) {
871 const uint16_t q = s->quantisation;
872
873 for (int i = 0; i < run; i++) {
874 *coeff_data |= coeff * 256U;
875 *coeff_data++ *= q;
876 }
877 } else {
878
2/2
✓ Branch 0 taken 21661728 times.
✓ Branch 1 taken 3522977 times.
25184705 for (int i = 0; i < run; i++)
879 21661728 *coeff_data++ = coeff;
880 }
881 }
882 }
883 891 CLOSE_READER(re, &gbit);
884 }
885
886
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (count > expected) {
887 av_log(avctx, AV_LOG_ERROR, "Escape codeword not found, probably corrupt data\n");
888 ret = AVERROR(EINVAL);
889 goto end;
890 }
891
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (s->peak.level)
892 peak_table(coeff_data - count, &s->peak, count);
893
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 891 times.
891 if (s->difference_coding)
894 difference_coding(s->plane[s->channel_num].subband[s->subband_num_actual], highpass_width, highpass_height);
895
896 891 bytes = FFALIGN(AV_CEIL_RSHIFT(get_bits_count(&gbit), 3), 4);
897
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 891 times.
891 if (bytes > bytestream2_get_bytes_left(&gb)) {
898 av_log(avctx, AV_LOG_ERROR, "Bitstream overread error\n");
899 ret = AVERROR(EINVAL);
900 goto end;
901 } else
902 891 bytestream2_seek(&gb, bytes, SEEK_CUR);
903
904 891 av_log(avctx, AV_LOG_DEBUG, "End subband coeffs %i extra %i\n", count, count - expected);
905 891 s->plane[s->channel_num].band[s->level][s->subband_num].read_ok = 1;
906 891 finish:
907
1/2
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
891 if (s->subband_num_actual != 255)
908 891 s->codebook = 0;
909 }
910 }
911
912 33 s->planes = av_pix_fmt_count_planes(avctx->pix_fmt);
913
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
914 s->progressive = 1;
915 s->planes = 4;
916 }
917
918 33 ff_thread_finish_setup(avctx);
919
920
3/6
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 33 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 33 times.
✗ Branch 5 not taken.
33 if (!s->a_width || !s->a_height || s->a_format == AV_PIX_FMT_NONE ||
921
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 s->a_transform_type == INT_MIN ||
922
3/6
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 33 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 33 times.
33 s->coded_width || s->coded_height || s->coded_format != AV_PIX_FMT_NONE) {
923 av_log(avctx, AV_LOG_ERROR, "Invalid dimensions\n");
924 ret = AVERROR(EINVAL);
925 goto end;
926 }
927
928
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (!got_buffer) {
929 av_log(avctx, AV_LOG_ERROR, "No end of header tag found\n");
930 ret = AVERROR(EINVAL);
931 goto end;
932 }
933
934
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 33 times.
132 for (int plane = 0; plane < s->planes; plane++) {
935
3/4
✓ Branch 0 taken 396 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 297 times.
✓ Branch 3 taken 99 times.
396 for (int level = 0; level < (s->transform_type == 0 ? DWT_LEVELS : DWT_LEVELS_3D) ; level++) {
936
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 297 times.
297 if (s->transform_type == 2)
937 if (level == 2 || level == 5)
938 continue;
939
2/2
✓ Branch 0 taken 990 times.
✓ Branch 1 taken 297 times.
1287 for (int o = !!level; o < 4 ; o++) {
940
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 990 times.
990 if (!s->plane[plane].band[level][o].read_ok) {
941 ret = AVERROR_INVALIDDATA;
942 goto end;
943 }
944 }
945 }
946 }
947
948
2/4
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 33 times.
✗ Branch 3 not taken.
33 if (s->transform_type == 0 && s->sample_type != 1) {
949
3/4
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 33 times.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
132 for (int plane = 0; plane < s->planes && !ret; plane++) {
950 /* level 1 */
951 99 int lowpass_height = s->plane[plane].band[0][0].height;
952 99 int output_stride = s->plane[plane].band[0][0].a_width;
953 99 int lowpass_width = s->plane[plane].band[0][0].width;
954 99 int highpass_stride = s->plane[plane].band[0][1].stride;
955
4/4
✓ Branch 0 taken 66 times.
✓ Branch 1 taken 33 times.
✓ Branch 2 taken 33 times.
✓ Branch 3 taken 33 times.
99 int act_plane = plane == 1 ? 2 : plane == 2 ? 1 : plane;
956 ptrdiff_t dst_linesize;
957 int16_t *low, *high, *output, *dst;
958
959
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 99 times.
99 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
960 act_plane = 0;
961 dst_linesize = pic->linesize[act_plane];
962 } else {
963 99 dst_linesize = pic->linesize[act_plane] / 2;
964 }
965
966
3/6
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 99 times.
✗ Branch 5 not taken.
99 if (lowpass_height > s->plane[plane].band[0][0].a_height || lowpass_width > s->plane[plane].band[0][0].a_width ||
967
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
99 !highpass_stride || s->plane[plane].band[0][1].width > s->plane[plane].band[0][1].a_width ||
968
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 99 times.
99 lowpass_width < 3 || lowpass_height < 3) {
969 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
970 ret = AVERROR(EINVAL);
971 goto end;
972 }
973
974 99 av_log(avctx, AV_LOG_DEBUG, "Decoding level 1 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
975
976 99 low = s->plane[plane].subband[0];
977 99 high = s->plane[plane].subband[2];
978 99 output = s->plane[plane].l_h[0];
979 99 dsp->vert_filter(output, output_stride, low, lowpass_width, high, highpass_stride, lowpass_width, lowpass_height);
980
981 99 low = s->plane[plane].subband[1];
982 99 high = s->plane[plane].subband[3];
983 99 output = s->plane[plane].l_h[1];
984
985 99 dsp->vert_filter(output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
986
987 99 low = s->plane[plane].l_h[0];
988 99 high = s->plane[plane].l_h[1];
989 99 output = s->plane[plane].subband[0];
990 99 dsp->horiz_filter(output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
991
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 66 times.
99 if (s->bpc == 12) {
992 33 output = s->plane[plane].subband[0];
993
2/2
✓ Branch 0 taken 3960 times.
✓ Branch 1 taken 33 times.
3993 for (int i = 0; i < lowpass_height * 2; i++) {
994
2/2
✓ Branch 0 taken 712800 times.
✓ Branch 1 taken 3960 times.
716760 for (int j = 0; j < lowpass_width * 2; j++)
995 712800 output[j] *= 4;
996
997 3960 output += output_stride * 2;
998 }
999 }
1000
1001 /* level 2 */
1002 99 lowpass_height = s->plane[plane].band[1][1].height;
1003 99 output_stride = s->plane[plane].band[1][1].a_width;
1004 99 lowpass_width = s->plane[plane].band[1][1].width;
1005 99 highpass_stride = s->plane[plane].band[1][1].stride;
1006
1007
3/6
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 99 times.
✗ Branch 5 not taken.
99 if (lowpass_height > s->plane[plane].band[1][1].a_height || lowpass_width > s->plane[plane].band[1][1].a_width ||
1008
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
99 !highpass_stride || s->plane[plane].band[1][1].width > s->plane[plane].band[1][1].a_width ||
1009
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 99 times.
99 lowpass_width < 3 || lowpass_height < 3) {
1010 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
1011 ret = AVERROR(EINVAL);
1012 goto end;
1013 }
1014
1015 99 av_log(avctx, AV_LOG_DEBUG, "Level 2 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1016
1017 99 low = s->plane[plane].subband[0];
1018 99 high = s->plane[plane].subband[5];
1019 99 output = s->plane[plane].l_h[3];
1020 99 dsp->vert_filter(output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1021
1022 99 low = s->plane[plane].subband[4];
1023 99 high = s->plane[plane].subband[6];
1024 99 output = s->plane[plane].l_h[4];
1025 99 dsp->vert_filter(output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1026
1027 99 low = s->plane[plane].l_h[3];
1028 99 high = s->plane[plane].l_h[4];
1029 99 output = s->plane[plane].subband[0];
1030 99 dsp->horiz_filter(output, output_stride, low, output_stride, high, output_stride, lowpass_width, lowpass_height * 2);
1031
1032 99 output = s->plane[plane].subband[0];
1033
2/2
✓ Branch 0 taken 19932 times.
✓ Branch 1 taken 99 times.
20031 for (int i = 0; i < lowpass_height * 2; i++) {
1034
2/2
✓ Branch 0 taken 5428544 times.
✓ Branch 1 taken 19932 times.
5448476 for (int j = 0; j < lowpass_width * 2; j++)
1035 5428544 output[j] *= 4;
1036
1037 19932 output += output_stride * 2;
1038 }
1039
1040 /* level 3 */
1041 99 lowpass_height = s->plane[plane].band[2][1].height;
1042 99 output_stride = s->plane[plane].band[2][1].a_width;
1043 99 lowpass_width = s->plane[plane].band[2][1].width;
1044 99 highpass_stride = s->plane[plane].band[2][1].stride;
1045
1046
3/6
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 99 times.
✗ Branch 5 not taken.
99 if (lowpass_height > s->plane[plane].band[2][1].a_height || lowpass_width > s->plane[plane].band[2][1].a_width ||
1047
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 99 times.
✗ Branch 3 not taken.
99 !highpass_stride || s->plane[plane].band[2][1].width > s->plane[plane].band[2][1].a_width ||
1048
2/4
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 99 times.
99 lowpass_height < 3 || lowpass_width < 3 || lowpass_width * 2 > s->plane[plane].width) {
1049 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
1050 ret = AVERROR(EINVAL);
1051 goto end;
1052 }
1053
1054 99 av_log(avctx, AV_LOG_DEBUG, "Level 3 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1055
1/2
✓ Branch 0 taken 99 times.
✗ Branch 1 not taken.
99 if (s->progressive) {
1056 99 low = s->plane[plane].subband[0];
1057 99 high = s->plane[plane].subband[8];
1058 99 output = s->plane[plane].l_h[6];
1059 99 dsp->vert_filter(output, output_stride, low, output_stride, high, highpass_stride, lowpass_width, lowpass_height);
1060
1061 99 low = s->plane[plane].subband[7];
1062 99 high = s->plane[plane].subband[9];
1063 99 output = s->plane[plane].l_h[7];
1064 99 dsp->vert_filter(output, output_stride, low, highpass_stride, high, highpass_stride, lowpass_width, lowpass_height);
1065
1066 99 dst = (int16_t *)pic->data[act_plane];
1067
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 99 times.
99 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
1068 if (plane & 1)
1069 dst++;
1070 if (plane > 1)
1071 dst += pic->linesize[act_plane] >> 1;
1072 }
1073 99 low = s->plane[plane].l_h[6];
1074 99 high = s->plane[plane].l_h[7];
1075
1076
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 99 times.
99 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16 &&
1077 (lowpass_height * 2 > avctx->coded_height / 2 ||
1078 lowpass_width * 2 > avctx->coded_width / 2 )
1079 ) {
1080 ret = AVERROR_INVALIDDATA;
1081 goto end;
1082 }
1083
1084
2/2
✓ Branch 0 taken 39864 times.
✓ Branch 1 taken 99 times.
39963 for (int i = 0; i < s->plane[act_plane].height; i++) {
1085 39864 dsp->horiz_filter_clip(dst, low, high, lowpass_width, s->bpc);
1086
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 39864 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
39864 if (avctx->pix_fmt == AV_PIX_FMT_GBRAP12 && act_plane == 3)
1087 process_alpha(dst, lowpass_width * 2);
1088 39864 low += output_stride;
1089 39864 high += output_stride;
1090 39864 dst += dst_linesize;
1091 }
1092 } else {
1093 av_log(avctx, AV_LOG_DEBUG, "interlaced frame ? %d", !!(pic->flags & AV_FRAME_FLAG_INTERLACED));
1094 pic->flags |= AV_FRAME_FLAG_INTERLACED;
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);
1099
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);
1104
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 (int i = 0; i < s->plane[act_plane].height / 2; i++) {
1109 interlaced_vertical_filter(dst, low, high, lowpass_width * 2, pic->linesize[act_plane]/2, act_plane);
1110 low += output_stride * 2;
1111 high += output_stride * 2;
1112 dst += pic->linesize[act_plane];
1113 }
1114 }
1115 }
1116 } else if (s->transform_type == 2 && (avctx->internal->is_copy || s->frame_index == 1 || s->sample_type != 1)) {
1117 for (int 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;
1125
1126 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
1127 act_plane = 0;
1128 dst_linesize = pic->linesize[act_plane];
1129 } else {
1130 dst_linesize = pic->linesize[act_plane] / 2;
1131 }
1132
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) {
1136 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
1137 ret = AVERROR(EINVAL);
1138 goto end;
1139 }
1140
1141 av_log(avctx, AV_LOG_DEBUG, "Decoding level 1 plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1142
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);
1147
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);
1152
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);
1157 if (s->bpc == 12) {
1158 output = s->plane[plane].l_h[7];
1159 for (int i = 0; i < lowpass_height * 2; i++) {
1160 for (int j = 0; j < lowpass_width * 2; j++)
1161 output[j] *= 4;
1162
1163 output += output_stride * 2;
1164 }
1165 }
1166
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;
1171
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) {
1175 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
1176 ret = AVERROR(EINVAL);
1177 goto end;
1178 }
1179
1180 av_log(avctx, AV_LOG_DEBUG, "Level 2 lowpass plane %i %i %i %i\n", plane, lowpass_height, lowpass_width, highpass_stride);
1181
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);
1186
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);
1191
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);
1196
1197 output = s->plane[plane].l_h[7];
1198 for (int i = 0; i < lowpass_height * 2; i++) {
1199 for (int j = 0; j < lowpass_width * 2; j++)
1200 output[j] *= 4;
1201 output += output_stride * 2;
1202 }
1203
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);
1208
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);
1213
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);
1218
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);
1224
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) {
1228 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
1229 ret = AVERROR(EINVAL);
1230 goto end;
1231 }
1232
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 (int i = 0; i < lowpass_height; i++) {
1237 inverse_temporal_filter(low, high, lowpass_width);
1238 low += output_stride;
1239 high += output_stride;
1240 }
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);
1246
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);
1251
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);
1256
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);
1261
1262 if (s->sample_type == 1)
1263 continue;
1264
1265 dst = (int16_t *)pic->data[act_plane];
1266 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
1267 if (plane & 1)
1268 dst++;
1269 if (plane > 1)
1270 dst += pic->linesize[act_plane] >> 1;
1271 }
1272
1273 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16 &&
1274 (lowpass_height * 2 > avctx->coded_height / 2 ||
1275 lowpass_width * 2 > avctx->coded_width / 2 )
1276 ) {
1277 ret = AVERROR_INVALIDDATA;
1278 goto end;
1279 }
1280
1281 low = s->plane[plane].l_h[6];
1282 high = s->plane[plane].l_h[7];
1283 for (int i = 0; i < s->plane[act_plane].height; i++) {
1284 dsp->horiz_filter_clip(dst, low, high, lowpass_width, s->bpc);
1285 low += output_stride;
1286 high += output_stride;
1287 dst += dst_linesize;
1288 }
1289 } else {
1290 pic->flags |= AV_FRAME_FLAG_INTERLACED;
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);
1295
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);
1300
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);
1305
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);
1310
1311 if (s->sample_type == 1)
1312 continue;
1313
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 (int i = 0; i < s->plane[act_plane].height / 2; i++) {
1318 interlaced_vertical_filter(dst, low, high, lowpass_width * 2, pic->linesize[act_plane]/2, act_plane);
1319 low += output_stride * 2;
1320 high += output_stride * 2;
1321 dst += pic->linesize[act_plane];
1322 }
1323 }
1324 }
1325 }
1326
1327
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
33 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;
1331
1332 for (int plane = 0; plane < s->planes; plane++) {
1333 int act_plane = plane == 1 ? 2 : plane == 2 ? 1 : plane;
1334
1335 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
1336 act_plane = 0;
1337 dst_linesize = pic->linesize[act_plane];
1338 } else {
1339 dst_linesize = pic->linesize[act_plane] / 2;
1340 }
1341
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;
1345
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) {
1349 av_log(avctx, AV_LOG_ERROR, "Invalid plane dimensions\n");
1350 ret = AVERROR(EINVAL);
1351 goto end;
1352 }
1353
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];
1358
1359 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16) {
1360 if (plane & 1)
1361 dst++;
1362 if (plane > 1)
1363 dst += pic->linesize[act_plane] >> 1;
1364 }
1365
1366 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16 &&
1367 (lowpass_height * 2 > avctx->coded_height / 2 ||
1368 lowpass_width * 2 > avctx->coded_width / 2 )
1369 ) {
1370 ret = AVERROR_INVALIDDATA;
1371 goto end;
1372 }
1373
1374 for (int i = 0; i < s->plane[act_plane].height; i++) {
1375 dsp->horiz_filter_clip(dst, low, high, lowpass_width, s->bpc);
1376 low += output_stride;
1377 high += output_stride;
1378 dst += dst_linesize;
1379 }
1380 } else {
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 (int i = 0; i < s->plane[act_plane].height / 2; i++) {
1385 interlaced_vertical_filter(dst, low, high, lowpass_width * 2, pic->linesize[act_plane]/2, act_plane);
1386 low += output_stride * 2;
1387 high += output_stride * 2;
1388 dst += pic->linesize[act_plane];
1389 }
1390 }
1391 }
1392 }
1393
1394
1/2
✓ Branch 0 taken 33 times.
✗ Branch 1 not taken.
33 if (avctx->pix_fmt == AV_PIX_FMT_BAYER_RGGB16)
1395 process_bayer(pic, s->bpc);
1396 33 end:
1397
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33 times.
33 if (ret < 0)
1398 return ret;
1399
1400 33 *got_frame = 1;
1401 33 return avpkt->size;
1402 }
1403
1404 6 static av_cold int cfhd_close(AVCodecContext *avctx)
1405 {
1406 6 CFHDContext *s = avctx->priv_data;
1407
1408 6 free_buffers(s);
1409
1410 6 return 0;
1411 }
1412
1413 #if HAVE_THREADS
1414 static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
1415 {
1416 CFHDContext *psrc = src->priv_data;
1417 CFHDContext *pdst = dst->priv_data;
1418 int ret;
1419
1420 if (dst == src || psrc->transform_type == 0)
1421 return 0;
1422
1423 if (pdst->plane[0].idwt_size != psrc->plane[0].idwt_size ||
1424 pdst->a_format != psrc->a_format ||
1425 pdst->a_width != psrc->a_width ||
1426 pdst->a_height != psrc->a_height ||
1427 pdst->a_transform_type != psrc->a_transform_type)
1428 free_buffers(pdst);
1429
1430 pdst->a_format = psrc->a_format;
1431 pdst->a_width = psrc->a_width;
1432 pdst->a_height = psrc->a_height;
1433 pdst->a_transform_type = psrc->a_transform_type;
1434 pdst->transform_type = psrc->transform_type;
1435 pdst->progressive = psrc->progressive;
1436 pdst->planes = psrc->planes;
1437
1438 if (!pdst->plane[0].idwt_buf) {
1439 pdst->coded_width = pdst->a_width;
1440 pdst->coded_height = pdst->a_height;
1441 pdst->coded_format = pdst->a_format;
1442 pdst->transform_type = pdst->a_transform_type;
1443 ret = alloc_buffers(dst);
1444 if (ret < 0)
1445 return ret;
1446 }
1447
1448 for (int plane = 0; plane < pdst->planes; plane++) {
1449 memcpy(pdst->plane[plane].band, psrc->plane[plane].band, sizeof(pdst->plane[plane].band));
1450 memcpy(pdst->plane[plane].idwt_buf, psrc->plane[plane].idwt_buf,
1451 pdst->plane[plane].idwt_size * sizeof(int16_t));
1452 }
1453
1454 return 0;
1455 }
1456 #endif
1457
1458 const FFCodec ff_cfhd_decoder = {
1459 .p.name = "cfhd",
1460 CODEC_LONG_NAME("GoPro CineForm HD"),
1461 .p.type = AVMEDIA_TYPE_VIDEO,
1462 .p.id = AV_CODEC_ID_CFHD,
1463 .priv_data_size = sizeof(CFHDContext),
1464 .init = cfhd_init,
1465 .close = cfhd_close,
1466 FF_CODEC_DECODE_CB(cfhd_decode),
1467 UPDATE_THREAD_CONTEXT(update_thread_context),
1468 .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
1469 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1470 };
1471