Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/indeo4.c
Line
Count
Source
1
/*
2
 * Indeo Video Interactive v4 compatible decoder
3
 * Copyright (c) 2009-2011 Maxim Poliakovski
4
 *
5
 * This file is part of FFmpeg.
6
 *
7
 * FFmpeg is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
 */
21
22
/**
23
 * @file
24
 * Indeo Video Interactive version 4 decoder
25
 *
26
 * Indeo 4 data is usually transported within .avi or .mov files.
27
 * Known FOURCCs: 'IV41'
28
 */
29
30
#define BITSTREAM_READER_LE
31
#include "avcodec.h"
32
#include "codec_internal.h"
33
#include "get_bits.h"
34
#include "libavutil/imgutils.h"
35
#include "indeo4data.h"
36
#include "ivi.h"
37
#include "ivi_dsp.h"
38
39
39.5k
#define IVI4_PIC_SIZE_ESC   7
40
41
42
static const struct {
43
    InvTransformPtr *inv_trans;
44
    DCTransformPtr  *dc_trans;
45
    int             is_2d_trans;
46
} transforms[18] = {
47
    { ff_ivi_inverse_haar_8x8,  ff_ivi_dc_haar_2d,       1 },
48
    { ff_ivi_row_haar8,         ff_ivi_dc_haar_2d,       0 },
49
    { ff_ivi_col_haar8,         ff_ivi_dc_haar_2d,       0 },
50
    { ff_ivi_put_pixels_8x8,    ff_ivi_put_dc_pixel_8x8, 1 },
51
    { ff_ivi_inverse_slant_8x8, ff_ivi_dc_slant_2d,      1 },
52
    { ff_ivi_row_slant8,        ff_ivi_dc_row_slant,     1 },
53
    { ff_ivi_col_slant8,        ff_ivi_dc_col_slant,     1 },
54
    { NULL, NULL, 0 }, /* inverse DCT 8x8 */
55
    { NULL, NULL, 0 }, /* inverse DCT 8x1 */
56
    { NULL, NULL, 0 }, /* inverse DCT 1x8 */
57
    { ff_ivi_inverse_haar_4x4,  ff_ivi_dc_haar_2d,       1 },
58
    { ff_ivi_inverse_slant_4x4, ff_ivi_dc_slant_2d,      1 },
59
    { NULL, NULL, 0 }, /* no transform 4x4 */
60
    { ff_ivi_row_haar4,         ff_ivi_dc_haar_2d,       0 },
61
    { ff_ivi_col_haar4,         ff_ivi_dc_haar_2d,       0 },
62
    { ff_ivi_row_slant4,        ff_ivi_dc_row_slant,     0 },
63
    { ff_ivi_col_slant4,        ff_ivi_dc_col_slant,     0 },
64
    { NULL, NULL, 0 }, /* inverse DCT 4x4 */
65
};
66
67
/**
68
 *  Decode subdivision of a plane.
69
 *  This is a simplified version that checks for two supported subdivisions:
70
 *  - 1 wavelet band  per plane, size factor 1:1, code pattern: 3
71
 *  - 4 wavelet bands per plane, size factor 1:4, code pattern: 2,3,3,3,3
72
 *  Anything else is either unsupported or corrupt.
73
 *
74
 *  @param[in,out] gb    the GetBit context
75
 *  @return        number of wavelet bands or 0 on error
76
 */
77
static int decode_plane_subdivision(GetBitContext *gb)
78
74.6k
{
79
74.6k
    int i;
80
81
74.6k
    switch (get_bits(gb, 2)) {
82
67.6k
    case 3:
83
67.6k
        return 1;
84
3.91k
    case 2:
85
18.7k
        for (i = 0; i < 4; i++)
86
15.2k
            if (get_bits(gb, 2) != 3)
87
409
                return 0;
88
3.50k
        return 4;
89
3.07k
    default:
90
3.07k
        return 0;
91
74.6k
    }
92
74.6k
}
93
94
static inline int scale_tile_size(int def_size, int size_factor)
95
23.4k
{
96
23.4k
    return size_factor == 15 ? def_size : (size_factor + 1) << 5;
97
23.4k
}
98
99
/**
100
 *  Decode Indeo 4 picture header.
101
 *
102
 *  @param[in,out] ctx       pointer to the decoder context
103
 *  @param[in]     avctx     pointer to the AVCodecContext
104
 *  @return        result code: 0 = OK, negative number = error
105
 */
106
static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx)
107
151k
{
108
151k
    int             pic_size_indx, i, p;
109
151k
    IVIPicConfig    pic_conf;
110
111
151k
    if (get_bits(&ctx->gb, 18) != 0x3FFF8) {
112
12.7k
        av_log(avctx, AV_LOG_ERROR, "Invalid picture start code!\n");
113
12.7k
        return AVERROR_INVALIDDATA;
114
12.7k
    }
115
116
138k
    ctx->prev_frame_type = ctx->frame_type;
117
138k
    ctx->frame_type      = get_bits(&ctx->gb, 3);
118
138k
    if (ctx->frame_type == 7) {
119
232
        av_log(avctx, AV_LOG_ERROR, "Invalid frame type: %d\n", ctx->frame_type);
120
232
        return AVERROR_INVALIDDATA;
121
232
    }
122
123
138k
    if (ctx->frame_type == IVI4_FRAMETYPE_BIDIR)
124
12.3k
        ctx->has_b_frames = 1;
125
126
138k
    ctx->has_transp = get_bits1(&ctx->gb);
127
128
    /* unknown bit: Mac decoder ignores this bit, XANIM returns error */
129
138k
    if (get_bits1(&ctx->gb)) {
130
386
        av_log(avctx, AV_LOG_ERROR, "Sync bit is set!\n");
131
386
        return AVERROR_INVALIDDATA;
132
386
    }
133
134
138k
    ctx->data_size = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 24) : 0;
135
136
    /* null frames don't contain anything else so we just return */
137
138k
    if (ctx->frame_type >= IVI4_FRAMETYPE_NULL_FIRST) {
138
98.5k
        ff_dlog(avctx, "Null frame encountered!\n");
139
98.5k
        return 0;
140
98.5k
    }
141
142
    /* Check key lock status. If enabled - ignore lock word.         */
143
    /* Usually we have to prompt the user for the password, but      */
144
    /* we don't do that because Indeo 4 videos can be decoded anyway */
145
39.5k
    if (get_bits1(&ctx->gb)) {
146
1.04k
        skip_bits_long(&ctx->gb, 32);
147
1.04k
        ff_dlog(avctx, "Password-protected clip!\n");
148
1.04k
    }
149
150
39.5k
    pic_size_indx = get_bits(&ctx->gb, 3);
151
39.5k
    if (pic_size_indx == IVI4_PIC_SIZE_ESC) {
152
3.47k
        pic_conf.pic_height = get_bits(&ctx->gb, 16);
153
3.47k
        pic_conf.pic_width  = get_bits(&ctx->gb, 16);
154
36.0k
    } else {
155
36.0k
        pic_conf.pic_height = ivi4_common_pic_sizes[pic_size_indx * 2 + 1];
156
36.0k
        pic_conf.pic_width  = ivi4_common_pic_sizes[pic_size_indx * 2    ];
157
36.0k
    }
158
159
    /* Decode tile dimensions. */
160
39.5k
    ctx->uses_tiling = get_bits1(&ctx->gb);
161
39.5k
    if (ctx->uses_tiling) {
162
11.7k
        pic_conf.tile_height = scale_tile_size(pic_conf.pic_height, get_bits(&ctx->gb, 4));
163
11.7k
        pic_conf.tile_width  = scale_tile_size(pic_conf.pic_width,  get_bits(&ctx->gb, 4));
164
27.8k
    } else {
165
27.8k
        pic_conf.tile_height = pic_conf.pic_height;
166
27.8k
        pic_conf.tile_width  = pic_conf.pic_width;
167
27.8k
    }
168
169
    /* Decode chroma subsampling. We support only 4:4 aka YVU9. */
170
39.5k
    if (get_bits(&ctx->gb, 2)) {
171
576
        av_log(avctx, AV_LOG_ERROR, "Only YVU9 picture format is supported!\n");
172
576
        return AVERROR_INVALIDDATA;
173
576
    }
174
38.9k
    pic_conf.chroma_height = (pic_conf.pic_height + 3) >> 2;
175
38.9k
    pic_conf.chroma_width  = (pic_conf.pic_width  + 3) >> 2;
176
177
    /* decode subdivision of the planes */
178
38.9k
    pic_conf.luma_bands = decode_plane_subdivision(&ctx->gb);
179
38.9k
    pic_conf.chroma_bands = 0;
180
38.9k
    if (pic_conf.luma_bands)
181
35.7k
        pic_conf.chroma_bands = decode_plane_subdivision(&ctx->gb);
182
183
38.9k
    if (av_image_check_size2(pic_conf.pic_width, pic_conf.pic_height, avctx->max_pixels, AV_PIX_FMT_YUV410P, 0, avctx) < 0) {
184
1.11k
        av_log(avctx, AV_LOG_ERROR, "picture dimensions %d %d cannot be decoded\n",
185
1.11k
               pic_conf.pic_width, pic_conf.pic_height);
186
1.11k
        return AVERROR_INVALIDDATA;
187
1.11k
    }
188
189
37.8k
    ctx->is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1;
190
37.8k
    if (ctx->is_scalable && (pic_conf.luma_bands != 4 || pic_conf.chroma_bands != 1)) {
191
2.63k
        av_log(avctx, AV_LOG_ERROR, "Scalability: unsupported subdivision! Luma bands: %d, chroma bands: %d\n",
192
2.63k
               pic_conf.luma_bands, pic_conf.chroma_bands);
193
2.63k
        return AVERROR_INVALIDDATA;
194
2.63k
    }
195
196
    /* check if picture layout was changed and reallocate buffers */
197
35.2k
    if (ivi_pic_config_cmp(&pic_conf, &ctx->pic_conf)) {
198
11.7k
        if (ff_ivi_init_planes(avctx, ctx->planes, &pic_conf, 1)) {
199
0
            av_log(avctx, AV_LOG_ERROR, "Couldn't reallocate color planes!\n");
200
0
            ctx->pic_conf.luma_bands = 0;
201
0
            return AVERROR(ENOMEM);
202
0
        }
203
204
11.7k
        ctx->pic_conf = pic_conf;
205
206
        /* set default macroblock/block dimensions */
207
47.0k
        for (p = 0; p <= 2; p++) {
208
76.9k
            for (i = 0; i < (!p ? pic_conf.luma_bands : pic_conf.chroma_bands); i++) {
209
41.6k
                ctx->planes[p].bands[i].mb_size  = !p ? (!ctx->is_scalable ? 16 : 8) : 4;
210
41.6k
                ctx->planes[p].bands[i].blk_size = !p ? 8 : 4;
211
41.6k
            }
212
35.2k
        }
213
214
11.7k
        if (ff_ivi_init_tiles(ctx->planes, ctx->pic_conf.tile_width,
215
11.7k
                              ctx->pic_conf.tile_height)) {
216
879
            av_log(avctx, AV_LOG_ERROR,
217
879
                   "Couldn't reallocate internal structures!\n");
218
879
            return AVERROR(ENOMEM);
219
879
        }
220
11.7k
    }
221
222
34.3k
    ctx->frame_num = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 20) : 0;
223
224
    /* skip decTimeEst field if present */
225
34.3k
    if (get_bits1(&ctx->gb))
226
3.36k
        skip_bits(&ctx->gb, 8);
227
228
    /* decode macroblock and block huffman codebooks */
229
34.3k
    if (ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_MB_HUFF,  &ctx->mb_vlc,  avctx) ||
230
34.0k
        ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_BLK_HUFF, &ctx->blk_vlc, avctx))
231
675
        return AVERROR_INVALIDDATA;
232
233
33.6k
    ctx->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
234
235
33.6k
    ctx->in_imf = get_bits1(&ctx->gb);
236
33.6k
    ctx->in_q   = get_bits1(&ctx->gb);
237
238
33.6k
    ctx->pic_glob_quant = get_bits(&ctx->gb, 5);
239
240
    /* TODO: ignore this parameter if unused */
241
33.6k
    ctx->unknown1 = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 0;
242
243
33.6k
    ctx->checksum = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 16) : 0;
244
245
    /* skip picture header extension if any */
246
48.9k
    while (get_bits1(&ctx->gb)) {
247
15.5k
        ff_dlog(avctx, "Pic hdr extension encountered!\n");
248
15.5k
        if (get_bits_left(&ctx->gb) < 10)
249
248
            return AVERROR_INVALIDDATA;
250
15.2k
        skip_bits(&ctx->gb, 8);
251
15.2k
    }
252
253
33.4k
    if (get_bits1(&ctx->gb)) {
254
1.81k
        av_log(avctx, AV_LOG_ERROR, "Bad blocks bits encountered!\n");
255
1.81k
    }
256
257
33.4k
    align_get_bits(&ctx->gb);
258
259
33.4k
    return 0;
260
33.6k
}
261
262
263
/**
264
 *  Decode Indeo 4 band header.
265
 *
266
 *  @param[in,out] ctx       pointer to the decoder context
267
 *  @param[in,out] band      pointer to the band descriptor
268
 *  @param[in]     avctx     pointer to the AVCodecContext
269
 *  @return        result code: 0 = OK, negative number = error
270
 */
271
static int decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *arg_band,
272
                           AVCodecContext *avctx)
273
49.7k
{
274
49.7k
    int plane, band_num, indx, transform_id, scan_indx;
275
49.7k
    int i;
276
49.7k
    int quant_mat;
277
49.7k
    IVIBandDesc temp_band, *band = &temp_band;
278
49.7k
    memcpy(&temp_band, arg_band, sizeof(temp_band));
279
280
49.7k
    plane    = get_bits(&ctx->gb, 2);
281
49.7k
    band_num = get_bits(&ctx->gb, 4);
282
49.7k
    if (band->plane != plane || band->band_num != band_num) {
283
1.58k
        av_log(avctx, AV_LOG_ERROR, "Invalid band header sequence!\n");
284
1.58k
        return AVERROR_INVALIDDATA;
285
1.58k
    }
286
287
48.1k
    band->is_empty = get_bits1(&ctx->gb);
288
48.1k
    if (!band->is_empty) {
289
47.5k
        int old_blk_size = band->blk_size;
290
        /* skip header size
291
         * If header size is not given, header size is 4 bytes. */
292
47.5k
        if (get_bits1(&ctx->gb))
293
510
            skip_bits(&ctx->gb, 16);
294
295
47.5k
        band->is_halfpel = get_bits(&ctx->gb, 2);
296
47.5k
        if (band->is_halfpel >= 2) {
297
331
            av_log(avctx, AV_LOG_ERROR, "Invalid/unsupported mv resolution: %d!\n",
298
331
                   band->is_halfpel);
299
331
            return AVERROR_INVALIDDATA;
300
331
        }
301
47.1k
        if (!band->is_halfpel)
302
40.7k
            ctx->uses_fullpel = 1;
303
304
47.1k
        band->checksum_present = get_bits1(&ctx->gb);
305
47.1k
        if (band->checksum_present)
306
1.83k
            band->checksum = get_bits(&ctx->gb, 16);
307
308
47.1k
        indx = get_bits(&ctx->gb, 2);
309
47.1k
        if (indx == 3) {
310
258
            av_log(avctx, AV_LOG_ERROR, "Invalid block size!\n");
311
258
            return AVERROR_INVALIDDATA;
312
258
        }
313
46.9k
        band->mb_size  = 16 >> indx;
314
46.9k
        band->blk_size = 8 >> (indx >> 1);
315
316
46.9k
        band->inherit_mv     = get_bits1(&ctx->gb);
317
46.9k
        band->inherit_qdelta = get_bits1(&ctx->gb);
318
319
46.9k
        band->glob_quant = get_bits(&ctx->gb, 5);
320
321
46.9k
        if (!get_bits1(&ctx->gb) || ctx->frame_type == IVI4_FRAMETYPE_INTRA) {
322
37.3k
            transform_id = get_bits(&ctx->gb, 5);
323
37.3k
            if (transform_id >= FF_ARRAY_ELEMS(transforms) ||
324
37.0k
                !transforms[transform_id].inv_trans) {
325
539
                avpriv_request_sample(avctx, "Transform %d", transform_id);
326
539
                return AVERROR_PATCHWELCOME;
327
539
            }
328
36.7k
            if ((transform_id >= 7 && transform_id <= 9) ||
329
36.7k
                 transform_id == 17) {
330
0
                avpriv_request_sample(avctx, "DCT transform");
331
0
                return AVERROR_PATCHWELCOME;
332
0
            }
333
334
36.7k
            if (transform_id < 10 && band->blk_size < 8) {
335
300
                av_log(avctx, AV_LOG_ERROR, "wrong transform size!\n");
336
300
                return AVERROR_INVALIDDATA;
337
300
            }
338
36.4k
            if ((transform_id >= 0 && transform_id <= 2) || transform_id == 10)
339
19.4k
                ctx->uses_haar = 1;
340
341
36.4k
            band->inv_transform = transforms[transform_id].inv_trans;
342
36.4k
            band->dc_transform  = transforms[transform_id].dc_trans;
343
36.4k
            band->is_2d_trans   = transforms[transform_id].is_2d_trans;
344
345
36.4k
            if (transform_id < 10)
346
24.9k
                band->transform_size = 8;
347
11.5k
            else
348
11.5k
                band->transform_size = 4;
349
350
36.4k
            if (band->blk_size != band->transform_size) {
351
262
                av_log(avctx, AV_LOG_ERROR, "transform and block size mismatch (%d != %d)\n", band->transform_size, band->blk_size);
352
262
                return AVERROR_INVALIDDATA;
353
262
            }
354
355
36.2k
            scan_indx = get_bits(&ctx->gb, 4);
356
36.2k
            if (scan_indx == 15) {
357
200
                av_log(avctx, AV_LOG_ERROR, "Custom scan pattern encountered!\n");
358
200
                return AVERROR_INVALIDDATA;
359
200
            }
360
36.0k
            if (scan_indx > 4 && scan_indx < 10) {
361
11.1k
                if (band->blk_size != 4) {
362
198
                    av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
363
198
                    return AVERROR_INVALIDDATA;
364
198
                }
365
24.8k
            } else if (band->blk_size != 8) {
366
340
                av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
367
340
                return AVERROR_INVALIDDATA;
368
340
            }
369
370
35.4k
            band->scan = scan_index_to_tab[scan_indx];
371
35.4k
            band->scan_size = band->blk_size;
372
373
35.4k
            quant_mat = get_bits(&ctx->gb, 5);
374
35.4k
            if (quant_mat == 31) {
375
204
                av_log(avctx, AV_LOG_ERROR, "Custom quant matrix encountered!\n");
376
204
                return AVERROR_INVALIDDATA;
377
204
            }
378
35.2k
            if (quant_mat >= FF_ARRAY_ELEMS(quant_index_to_tab)) {
379
218
                avpriv_request_sample(avctx, "Quantization matrix %d",
380
218
                                      quant_mat);
381
218
                return AVERROR_INVALIDDATA;
382
218
            }
383
35.0k
            band->quant_mat = quant_mat;
384
35.0k
        } else {
385
9.59k
            if (old_blk_size != band->blk_size) {
386
201
                av_log(avctx, AV_LOG_ERROR,
387
201
                       "The band block size does not match the configuration "
388
201
                       "inherited\n");
389
201
                return AVERROR_INVALIDDATA;
390
201
            }
391
9.59k
        }
392
44.4k
        if (quant_index_to_tab[band->quant_mat] > 4 && band->blk_size == 4) {
393
202
            av_log(avctx, AV_LOG_ERROR, "Invalid quant matrix for 4x4 block encountered!\n");
394
202
            band->quant_mat = 0;
395
202
            return AVERROR_INVALIDDATA;
396
202
        }
397
44.2k
        if (band->scan_size != band->blk_size) {
398
675
            av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
399
675
            return AVERROR_INVALIDDATA;
400
675
        }
401
43.5k
        if (band->transform_size == 8 && band->blk_size < 8) {
402
0
            av_log(avctx, AV_LOG_ERROR, "mismatching transform_size!\n");
403
0
            return AVERROR_INVALIDDATA;
404
0
        }
405
406
        /* decode block huffman codebook */
407
43.5k
        if (!get_bits1(&ctx->gb))
408
30.9k
            arg_band->blk_vlc.tab = ctx->blk_vlc.tab;
409
12.6k
        else
410
12.6k
            if (ff_ivi_dec_huff_desc(&ctx->gb, 1, IVI_BLK_HUFF,
411
12.6k
                                     &arg_band->blk_vlc, avctx))
412
210
                return AVERROR_INVALIDDATA;
413
414
        /* select appropriate rvmap table for this band */
415
43.3k
        band->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
416
417
        /* decode rvmap probability corrections if any */
418
43.3k
        band->num_corr = 0; /* there is no corrections */
419
43.3k
        if (get_bits1(&ctx->gb)) {
420
1.37k
            band->num_corr = get_bits(&ctx->gb, 8); /* get number of correction pairs */
421
1.37k
            if (band->num_corr > 61) {
422
266
                av_log(avctx, AV_LOG_ERROR, "Too many corrections: %d\n",
423
266
                       band->num_corr);
424
266
                return AVERROR_INVALIDDATA;
425
266
            }
426
427
            /* read correction pairs */
428
36.6k
            for (i = 0; i < band->num_corr * 2; i++)
429
35.5k
                band->corr[i] = get_bits(&ctx->gb, 8);
430
1.11k
        }
431
43.3k
    }
432
433
43.7k
    if (band->blk_size == 8) {
434
28.9k
        band->intra_base = &ivi4_quant_8x8_intra[quant_index_to_tab[band->quant_mat]][0];
435
28.9k
        band->inter_base = &ivi4_quant_8x8_inter[quant_index_to_tab[band->quant_mat]][0];
436
28.9k
    } else {
437
14.7k
        band->intra_base = &ivi4_quant_4x4_intra[quant_index_to_tab[band->quant_mat]][0];
438
14.7k
        band->inter_base = &ivi4_quant_4x4_inter[quant_index_to_tab[band->quant_mat]][0];
439
14.7k
    }
440
441
    /* Indeo 4 doesn't use scale tables */
442
43.7k
    band->intra_scale = NULL;
443
43.7k
    band->inter_scale = NULL;
444
445
43.7k
    align_get_bits(&ctx->gb);
446
447
43.7k
    if (!band->scan) {
448
430
        av_log(avctx, AV_LOG_ERROR, "band->scan not set\n");
449
430
        return AVERROR_INVALIDDATA;
450
430
    }
451
452
43.3k
    band->blk_vlc = arg_band->blk_vlc;
453
43.3k
    memcpy(arg_band, band, sizeof(*arg_band));
454
455
43.3k
    return 0;
456
43.7k
}
457
458
459
/**
460
 *  Decode information (block type, cbp, quant delta, motion vector)
461
 *  for all macroblocks in the current tile.
462
 *
463
 *  @param[in,out] ctx       pointer to the decoder context
464
 *  @param[in,out] band      pointer to the band descriptor
465
 *  @param[in,out] tile      pointer to the tile descriptor
466
 *  @param[in]     avctx     pointer to the AVCodecContext
467
 *  @return        result code: 0 = OK, negative number = error
468
 */
469
static int decode_mb_info(IVI45DecContext *ctx, IVIBandDesc *band,
470
                          IVITile *tile, AVCodecContext *avctx)
471
12.2k
{
472
12.2k
    int         x, y, mv_x, mv_y, mv_delta, offs, mb_offset, blks_per_mb,
473
12.2k
                mv_scale, mb_type_bits, s;
474
12.2k
    IVIMbInfo   *mb, *ref_mb;
475
12.2k
    int         row_offset = band->mb_size * band->pitch;
476
477
12.2k
    mb     = tile->mbs;
478
12.2k
    ref_mb = tile->ref_mbs;
479
12.2k
    offs   = tile->ypos * band->pitch + tile->xpos;
480
481
12.2k
    blks_per_mb  = band->mb_size   != band->blk_size  ? 4 : 1;
482
12.2k
    mb_type_bits = ctx->frame_type == IVI4_FRAMETYPE_BIDIR ? 2 : 1;
483
484
    /* scale factor for motion vectors */
485
12.2k
    mv_scale = (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3);
486
12.2k
    mv_x = mv_y = 0;
487
488
12.2k
    if (((tile->width + band->mb_size-1)/band->mb_size) * ((tile->height + band->mb_size-1)/band->mb_size) != tile->num_MBs) {
489
0
        av_log(avctx, AV_LOG_ERROR, "num_MBs mismatch %d %d %d %d\n", tile->width, tile->height, band->mb_size, tile->num_MBs);
490
0
        return -1;
491
0
    }
492
493
184k
    for (y = tile->ypos; y < tile->ypos + tile->height; y += band->mb_size) {
494
174k
        mb_offset = offs;
495
496
2.78M
        for (x = tile->xpos; x < tile->xpos + tile->width; x += band->mb_size) {
497
2.61M
            mb->xpos     = x;
498
2.61M
            mb->ypos     = y;
499
2.61M
            mb->buf_offs = mb_offset;
500
2.61M
            mb->b_mv_x   =
501
2.61M
            mb->b_mv_y   = 0;
502
503
2.61M
            if (get_bits_left(&ctx->gb) < 1) {
504
1.76k
                av_log(avctx, AV_LOG_ERROR, "Insufficient input for mb info\n");
505
1.76k
                return AVERROR_INVALIDDATA;
506
1.76k
            }
507
508
2.61M
            if (get_bits1(&ctx->gb)) {
509
651k
                if (ctx->frame_type == IVI4_FRAMETYPE_INTRA) {
510
339
                    av_log(avctx, AV_LOG_ERROR, "Empty macroblock in an INTRA picture!\n");
511
339
                    return AVERROR_INVALIDDATA;
512
339
                }
513
651k
                mb->type = 1; /* empty macroblocks are always INTER */
514
651k
                mb->cbp  = 0; /* all blocks are empty */
515
516
651k
                mb->q_delta = 0;
517
651k
                if (!band->plane && !band->band_num && ctx->in_q) {
518
243k
                    mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
519
243k
                                           IVI_VLC_BITS, 1);
520
243k
                    mb->q_delta = IVI_TOSIGNED(mb->q_delta);
521
243k
                }
522
523
651k
                mb->mv_x = mb->mv_y = 0; /* no motion vector coded */
524
651k
                if (band->inherit_mv && ref_mb) {
525
                    /* motion vector inheritance */
526
19.9k
                    if (mv_scale) {
527
18.2k
                        mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
528
18.2k
                        mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
529
18.2k
                    } else {
530
1.69k
                        mb->mv_x = ref_mb->mv_x;
531
1.69k
                        mb->mv_y = ref_mb->mv_y;
532
1.69k
                    }
533
19.9k
                }
534
1.96M
            } else {
535
1.96M
                if (band->inherit_mv) {
536
                    /* copy mb_type from corresponding reference mb */
537
17.3k
                    if (!ref_mb) {
538
202
                        av_log(avctx, AV_LOG_ERROR, "ref_mb unavailable\n");
539
202
                        return AVERROR_INVALIDDATA;
540
202
                    }
541
17.1k
                    mb->type = ref_mb->type;
542
1.94M
                } else if (ctx->frame_type == IVI4_FRAMETYPE_INTRA ||
543
1.94M
                           ctx->frame_type == IVI4_FRAMETYPE_INTRA1) {
544
86.8k
                    mb->type = 0; /* mb_type is always INTRA for intra-frames */
545
1.85M
                } else {
546
1.85M
                    mb->type = get_bits(&ctx->gb, mb_type_bits);
547
1.85M
                }
548
549
1.96M
                mb->cbp = get_bits(&ctx->gb, blks_per_mb);
550
551
1.96M
                mb->q_delta = 0;
552
1.96M
                if (band->inherit_qdelta) {
553
61.6k
                    if (ref_mb) mb->q_delta = ref_mb->q_delta;
554
1.90M
                } else if (mb->cbp || (!band->plane && !band->band_num &&
555
1.73M
                           ctx->in_q)) {
556
1.73M
                    mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
557
1.73M
                                           IVI_VLC_BITS, 1);
558
1.73M
                    mb->q_delta = IVI_TOSIGNED(mb->q_delta);
559
1.73M
                }
560
561
1.96M
                if (!mb->type) {
562
710k
                    mb->mv_x = mb->mv_y = 0; /* there is no motion vector in intra-macroblocks */
563
1.25M
                } else {
564
1.25M
                    if (band->inherit_mv) {
565
17.1k
                        if (ref_mb)
566
                            /* motion vector inheritance */
567
17.1k
                            if (mv_scale) {
568
15.5k
                                mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
569
15.5k
                                mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
570
15.5k
                            } else {
571
1.56k
                                mb->mv_x = ref_mb->mv_x;
572
1.56k
                                mb->mv_y = ref_mb->mv_y;
573
1.56k
                            }
574
1.23M
                    } else {
575
                        /* decode motion vector deltas */
576
1.23M
                        mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
577
1.23M
                                            IVI_VLC_BITS, 1);
578
1.23M
                        mv_y += IVI_TOSIGNED(mv_delta);
579
1.23M
                        mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
580
1.23M
                                            IVI_VLC_BITS, 1);
581
1.23M
                        mv_x += IVI_TOSIGNED(mv_delta);
582
1.23M
                        mb->mv_x = mv_x;
583
1.23M
                        mb->mv_y = mv_y;
584
1.23M
                        if (mb->type == 3) {
585
67.8k
                            mv_delta = get_vlc2(&ctx->gb,
586
67.8k
                                                ctx->mb_vlc.tab->table,
587
67.8k
                                                IVI_VLC_BITS, 1);
588
67.8k
                            mv_y += IVI_TOSIGNED(mv_delta);
589
67.8k
                            mv_delta = get_vlc2(&ctx->gb,
590
67.8k
                                                ctx->mb_vlc.tab->table,
591
67.8k
                                                IVI_VLC_BITS, 1);
592
67.8k
                            mv_x += IVI_TOSIGNED(mv_delta);
593
67.8k
                            mb->b_mv_x = -mv_x;
594
67.8k
                            mb->b_mv_y = -mv_y;
595
67.8k
                        }
596
1.23M
                    }
597
1.25M
                    if (mb->type == 2) {
598
74.9k
                        mb->b_mv_x = -mb->mv_x;
599
74.9k
                        mb->b_mv_y = -mb->mv_y;
600
74.9k
                        mb->mv_x = 0;
601
74.9k
                        mb->mv_y = 0;
602
74.9k
                    }
603
1.25M
                }
604
1.96M
            }
605
606
2.61M
            s= band->is_halfpel;
607
2.61M
            if (mb->type)
608
1.90M
            if ( x +  (mb->mv_x   >>s) +                 (y+               (mb->mv_y   >>s))*band->pitch < 0 ||
609
1.90M
                 x + ((mb->mv_x+s)>>s) + band->mb_size - 1
610
1.90M
                   + (y+band->mb_size - 1 +((mb->mv_y+s)>>s))*band->pitch > band->bufsize -1) {
611
743
                av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mb->mv_x, y*s + mb->mv_y);
612
743
                return AVERROR_INVALIDDATA;
613
743
            }
614
615
2.61M
            mb++;
616
2.61M
            if (ref_mb)
617
116k
                ref_mb++;
618
2.61M
            mb_offset += band->mb_size;
619
2.61M
        }
620
621
171k
        offs += row_offset;
622
171k
    }
623
624
9.24k
    align_get_bits(&ctx->gb);
625
626
9.24k
    return 0;
627
12.2k
}
628
629
630
/**
631
 *  Rearrange decoding and reference buffers.
632
 *
633
 *  @param[in,out] ctx       pointer to the decoder context
634
 */
635
static void switch_buffers(IVI45DecContext *ctx)
636
34.8k
{
637
34.8k
    int is_prev_ref = 0, is_ref = 0;
638
639
34.8k
    switch (ctx->prev_frame_type) {
640
10.0k
    case IVI4_FRAMETYPE_INTRA:
641
24.1k
    case IVI4_FRAMETYPE_INTRA1:
642
25.1k
    case IVI4_FRAMETYPE_INTER:
643
25.1k
        is_prev_ref = 1;
644
25.1k
        break;
645
34.8k
    }
646
647
34.8k
    switch (ctx->frame_type) {
648
5.29k
    case IVI4_FRAMETYPE_INTRA:
649
20.9k
    case IVI4_FRAMETYPE_INTRA1:
650
23.7k
    case IVI4_FRAMETYPE_INTER:
651
23.7k
        is_ref = 1;
652
23.7k
        break;
653
34.8k
    }
654
655
34.8k
    if (is_prev_ref && is_ref) {
656
22.5k
        FFSWAP(int, ctx->dst_buf, ctx->ref_buf);
657
22.5k
    } else if (is_prev_ref) {
658
2.56k
        FFSWAP(int, ctx->ref_buf, ctx->b_ref_buf);
659
2.56k
        FFSWAP(int, ctx->dst_buf, ctx->ref_buf);
660
2.56k
    }
661
34.8k
}
662
663
664
static int is_nonnull_frame(IVI45DecContext *ctx)
665
40.7k
{
666
40.7k
    return ctx->frame_type < IVI4_FRAMETYPE_NULL_FIRST;
667
40.7k
}
668
669
670
static av_cold int decode_init(AVCodecContext *avctx)
671
6.30k
{
672
6.30k
    IVI45DecContext *ctx = avctx->priv_data;
673
674
6.30k
    ff_ivi_init_static_vlc();
675
676
    /* copy rvmap tables in our context so we can apply changes to them */
677
6.30k
    memcpy(ctx->rvmap_tabs, ff_ivi_rvmap_tabs, sizeof(ff_ivi_rvmap_tabs));
678
679
    /* Force allocation of the internal buffers */
680
    /* during picture header decoding.          */
681
6.30k
    ctx->pic_conf.pic_width  = 0;
682
6.30k
    ctx->pic_conf.pic_height = 0;
683
684
6.30k
    avctx->pix_fmt = AV_PIX_FMT_YUV410P;
685
686
6.30k
    ctx->decode_pic_hdr   = decode_pic_hdr;
687
6.30k
    ctx->decode_band_hdr  = decode_band_hdr;
688
6.30k
    ctx->decode_mb_info   = decode_mb_info;
689
6.30k
    ctx->switch_buffers   = switch_buffers;
690
6.30k
    ctx->is_nonnull_frame = is_nonnull_frame;
691
692
6.30k
    ctx->is_indeo4 = 1;
693
6.30k
    ctx->show_indeo4_info = 1;
694
695
6.30k
    ctx->dst_buf   = 0;
696
6.30k
    ctx->ref_buf   = 1;
697
6.30k
    ctx->b_ref_buf = 3; /* buffer 2 is used for scalability mode */
698
6.30k
    ctx->p_frame = av_frame_alloc();
699
6.30k
    if (!ctx->p_frame)
700
0
        return AVERROR(ENOMEM);
701
702
6.30k
    return 0;
703
6.30k
}
704
705
706
const FFCodec ff_indeo4_decoder = {
707
    .p.name         = "indeo4",
708
    CODEC_LONG_NAME("Intel Indeo Video Interactive 4"),
709
    .p.type         = AVMEDIA_TYPE_VIDEO,
710
    .p.id           = AV_CODEC_ID_INDEO4,
711
    .priv_data_size = sizeof(IVI45DecContext),
712
    .init           = decode_init,
713
    .close          = ff_ivi_decode_close,
714
    FF_CODEC_DECODE_CB(ff_ivi_decode_frame),
715
    .p.capabilities = AV_CODEC_CAP_DR1,
716
};