]> git.sesse.net Git - ffmpeg/blob - libavcodec/indeo4.c
indeo4: print an error message if ref_mb is needed but unavailable
[ffmpeg] / libavcodec / indeo4.c
1 /*
2  * Indeo Video Interactive v4 compatible decoder
3  * Copyright (c) 2009-2011 Maxim Poliakovski
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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 "get_bits.h"
33 #include "ivi_dsp.h"
34 #include "ivi_common.h"
35 #include "indeo4data.h"
36
37 /**
38  *  Indeo 4 frame types.
39  */
40 enum {
41     FRAMETYPE_INTRA       = 0,
42     FRAMETYPE_INTRA1      = 1,  ///< intra frame with slightly different bitstream coding
43     FRAMETYPE_INTER       = 2,  ///< non-droppable P-frame
44     FRAMETYPE_BIDIR       = 3,  ///< bidirectional frame
45     FRAMETYPE_INTER_NOREF = 4,  ///< droppable P-frame
46     FRAMETYPE_NULL_FIRST  = 5,  ///< empty frame with no data
47     FRAMETYPE_NULL_LAST   = 6   ///< empty frame with no data
48 };
49
50 #define IVI4_PIC_SIZE_ESC   7
51
52
53 static const struct {
54     InvTransformPtr *inv_trans;
55     DCTransformPtr  *dc_trans;
56     int             is_2d_trans;
57 } transforms[18] = {
58     { ff_ivi_inverse_haar_8x8,  ff_ivi_dc_haar_2d,       1 },
59     { ff_ivi_row_haar8,         ff_ivi_dc_haar_2d,       0 },
60     { ff_ivi_col_haar8,         ff_ivi_dc_haar_2d,       0 },
61     { ff_ivi_put_pixels_8x8,    ff_ivi_put_dc_pixel_8x8, 1 },
62     { ff_ivi_inverse_slant_8x8, ff_ivi_dc_slant_2d,      1 },
63     { ff_ivi_row_slant8,        ff_ivi_dc_row_slant,     1 },
64     { ff_ivi_col_slant8,        ff_ivi_dc_col_slant,     1 },
65     { NULL, NULL, 0 }, /* inverse DCT 8x8 */
66     { NULL, NULL, 0 }, /* inverse DCT 8x1 */
67     { NULL, NULL, 0 }, /* inverse DCT 1x8 */
68     { ff_ivi_inverse_haar_4x4,  ff_ivi_dc_haar_2d,       1 },
69     { ff_ivi_inverse_slant_4x4, ff_ivi_dc_slant_2d,      1 },
70     { NULL, NULL, 0 }, /* no transform 4x4 */
71     { ff_ivi_row_haar4,         ff_ivi_dc_haar_2d,       0 },
72     { ff_ivi_col_haar4,         ff_ivi_dc_haar_2d,       0 },
73     { ff_ivi_row_slant4,        ff_ivi_dc_row_slant,     0 },
74     { ff_ivi_col_slant4,        ff_ivi_dc_col_slant,     0 },
75     { NULL, NULL, 0 }, /* inverse DCT 4x4 */
76 };
77
78 /**
79  *  Decode subdivision of a plane.
80  *  This is a simplified version that checks for two supported subdivisions:
81  *  - 1 wavelet band  per plane, size factor 1:1, code pattern: 3
82  *  - 4 wavelet bands per plane, size factor 1:4, code pattern: 2,3,3,3,3
83  *  Anything else is either unsupported or corrupt.
84  *
85  *  @param[in,out] gb    the GetBit context
86  *  @return        number of wavelet bands or 0 on error
87  */
88 static int decode_plane_subdivision(GetBitContext *gb)
89 {
90     int i;
91
92     switch (get_bits(gb, 2)) {
93     case 3:
94         return 1;
95     case 2:
96         for (i = 0; i < 4; i++)
97             if (get_bits(gb, 2) != 3)
98                 return 0;
99         return 4;
100     default:
101         return 0;
102     }
103 }
104
105 static inline int scale_tile_size(int def_size, int size_factor)
106 {
107     return size_factor == 15 ? def_size : (size_factor + 1) << 5;
108 }
109
110 /**
111  *  Decode Indeo 4 picture header.
112  *
113  *  @param[in,out] ctx       pointer to the decoder context
114  *  @param[in]     avctx     pointer to the AVCodecContext
115  *  @return        result code: 0 = OK, negative number = error
116  */
117 static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx)
118 {
119     int             pic_size_indx, i, p;
120     IVIPicConfig    pic_conf;
121
122     if (get_bits(&ctx->gb, 18) != 0x3FFF8) {
123         av_log(avctx, AV_LOG_ERROR, "Invalid picture start code!\n");
124         return AVERROR_INVALIDDATA;
125     }
126
127     ctx->prev_frame_type = ctx->frame_type;
128     ctx->frame_type      = get_bits(&ctx->gb, 3);
129     if (ctx->frame_type == 7) {
130         av_log(avctx, AV_LOG_ERROR, "Invalid frame type: %d\n", ctx->frame_type);
131         return AVERROR_INVALIDDATA;
132     }
133
134 #if IVI4_STREAM_ANALYSER
135     if (ctx->frame_type == FRAMETYPE_BIDIR)
136         ctx->has_b_frames = 1;
137 #endif
138
139     ctx->transp_status = get_bits1(&ctx->gb);
140 #if IVI4_STREAM_ANALYSER
141     if (ctx->transp_status) {
142         ctx->has_transp = 1;
143     }
144 #endif
145
146     /* unknown bit: Mac decoder ignores this bit, XANIM returns error */
147     if (get_bits1(&ctx->gb)) {
148         av_log(avctx, AV_LOG_ERROR, "Sync bit is set!\n");
149         return AVERROR_INVALIDDATA;
150     }
151
152     ctx->data_size = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 24) : 0;
153
154     /* null frames don't contain anything else so we just return */
155     if (ctx->frame_type >= FRAMETYPE_NULL_FIRST) {
156         av_dlog(avctx, "Null frame encountered!\n");
157         return 0;
158     }
159
160     /* Check key lock status. If enabled - ignore lock word.         */
161     /* Usually we have to prompt the user for the password, but      */
162     /* we don't do that because Indeo 4 videos can be decoded anyway */
163     if (get_bits1(&ctx->gb)) {
164         skip_bits_long(&ctx->gb, 32);
165         av_dlog(avctx, "Password-protected clip!\n");
166     }
167
168     pic_size_indx = get_bits(&ctx->gb, 3);
169     if (pic_size_indx == IVI4_PIC_SIZE_ESC) {
170         pic_conf.pic_height = get_bits(&ctx->gb, 16);
171         pic_conf.pic_width  = get_bits(&ctx->gb, 16);
172     } else {
173         pic_conf.pic_height = ivi4_common_pic_sizes[pic_size_indx * 2 + 1];
174         pic_conf.pic_width  = ivi4_common_pic_sizes[pic_size_indx * 2    ];
175     }
176
177     /* Decode tile dimensions. */
178     if (get_bits1(&ctx->gb)) {
179         pic_conf.tile_height = scale_tile_size(pic_conf.pic_height, get_bits(&ctx->gb, 4));
180         pic_conf.tile_width  = scale_tile_size(pic_conf.pic_width,  get_bits(&ctx->gb, 4));
181 #if IVI4_STREAM_ANALYSER
182         ctx->uses_tiling = 1;
183 #endif
184     } else {
185         pic_conf.tile_height = pic_conf.pic_height;
186         pic_conf.tile_width  = pic_conf.pic_width;
187     }
188
189     /* Decode chroma subsampling. We support only 4:4 aka YVU9. */
190     if (get_bits(&ctx->gb, 2)) {
191         av_log(avctx, AV_LOG_ERROR, "Only YVU9 picture format is supported!\n");
192         return AVERROR_INVALIDDATA;
193     }
194     pic_conf.chroma_height = (pic_conf.pic_height + 3) >> 2;
195     pic_conf.chroma_width  = (pic_conf.pic_width  + 3) >> 2;
196
197     /* decode subdivision of the planes */
198     pic_conf.luma_bands = decode_plane_subdivision(&ctx->gb);
199     pic_conf.chroma_bands = 0;
200     if (pic_conf.luma_bands)
201         pic_conf.chroma_bands = decode_plane_subdivision(&ctx->gb);
202     ctx->is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1;
203     if (ctx->is_scalable && (pic_conf.luma_bands != 4 || pic_conf.chroma_bands != 1)) {
204         av_log(avctx, AV_LOG_ERROR, "Scalability: unsupported subdivision! Luma bands: %d, chroma bands: %d\n",
205                pic_conf.luma_bands, pic_conf.chroma_bands);
206         return AVERROR_INVALIDDATA;
207     }
208
209     /* check if picture layout was changed and reallocate buffers */
210     if (ivi_pic_config_cmp(&pic_conf, &ctx->pic_conf)) {
211         if (ff_ivi_init_planes(ctx->planes, &pic_conf)) {
212             av_log(avctx, AV_LOG_ERROR, "Couldn't reallocate color planes!\n");
213             return AVERROR(ENOMEM);
214         }
215
216         ctx->pic_conf = pic_conf;
217
218         /* set default macroblock/block dimensions */
219         for (p = 0; p <= 2; p++) {
220             for (i = 0; i < (!p ? pic_conf.luma_bands : pic_conf.chroma_bands); i++) {
221                 ctx->planes[p].bands[i].mb_size  = !p ? (!ctx->is_scalable ? 16 : 8) : 4;
222                 ctx->planes[p].bands[i].blk_size = !p ? 8 : 4;
223             }
224         }
225
226         if (ff_ivi_init_tiles(ctx->planes, ctx->pic_conf.tile_width,
227                               ctx->pic_conf.tile_height)) {
228             av_log(avctx, AV_LOG_ERROR,
229                    "Couldn't reallocate internal structures!\n");
230             return AVERROR(ENOMEM);
231         }
232     }
233
234     ctx->frame_num = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 20) : 0;
235
236     /* skip decTimeEst field if present */
237     if (get_bits1(&ctx->gb))
238         skip_bits(&ctx->gb, 8);
239
240     /* decode macroblock and block huffman codebooks */
241     if (ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_MB_HUFF,  &ctx->mb_vlc,  avctx) ||
242         ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_BLK_HUFF, &ctx->blk_vlc, avctx))
243         return AVERROR_INVALIDDATA;
244
245     ctx->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
246
247     ctx->in_imf = get_bits1(&ctx->gb);
248     ctx->in_q   = get_bits1(&ctx->gb);
249
250     ctx->pic_glob_quant = get_bits(&ctx->gb, 5);
251
252     /* TODO: ignore this parameter if unused */
253     ctx->unknown1 = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 0;
254
255     ctx->checksum = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 16) : 0;
256
257     /* skip picture header extension if any */
258     while (get_bits1(&ctx->gb)) {
259         av_dlog(avctx, "Pic hdr extension encountered!\n");
260         skip_bits(&ctx->gb, 8);
261     }
262
263     if (get_bits1(&ctx->gb)) {
264         av_log(avctx, AV_LOG_ERROR, "Bad blocks bits encountered!\n");
265     }
266
267     align_get_bits(&ctx->gb);
268
269     return 0;
270 }
271
272
273 /**
274  *  Decode Indeo 4 band header.
275  *
276  *  @param[in,out] ctx       pointer to the decoder context
277  *  @param[in,out] band      pointer to the band descriptor
278  *  @param[in]     avctx     pointer to the AVCodecContext
279  *  @return        result code: 0 = OK, negative number = error
280  */
281 static int decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *band,
282                            AVCodecContext *avctx)
283 {
284     int plane, band_num, indx, transform_id, scan_indx;
285     int i;
286     int quant_mat;
287
288     plane    = get_bits(&ctx->gb, 2);
289     band_num = get_bits(&ctx->gb, 4);
290     if (band->plane != plane || band->band_num != band_num) {
291         av_log(avctx, AV_LOG_ERROR, "Invalid band header sequence!\n");
292         return AVERROR_INVALIDDATA;
293     }
294
295     band->is_empty = get_bits1(&ctx->gb);
296     if (!band->is_empty) {
297         /* skip header size
298          * If header size is not given, header size is 4 bytes. */
299         if (get_bits1(&ctx->gb))
300             skip_bits(&ctx->gb, 16);
301
302         band->is_halfpel = get_bits(&ctx->gb, 2);
303         if (band->is_halfpel >= 2) {
304             av_log(avctx, AV_LOG_ERROR, "Invalid/unsupported mv resolution: %d!\n",
305                    band->is_halfpel);
306             return AVERROR_INVALIDDATA;
307         }
308 #if IVI4_STREAM_ANALYSER
309         if (!band->is_halfpel)
310             ctx->uses_fullpel = 1;
311 #endif
312
313         band->checksum_present = get_bits1(&ctx->gb);
314         if (band->checksum_present)
315             band->checksum = get_bits(&ctx->gb, 16);
316
317         indx = get_bits(&ctx->gb, 2);
318         if (indx == 3) {
319             av_log(avctx, AV_LOG_ERROR, "Invalid block size!\n");
320             return AVERROR_INVALIDDATA;
321         }
322         band->mb_size  = 16 >> indx;
323         band->blk_size = 8 >> (indx >> 1);
324
325         band->inherit_mv     = get_bits1(&ctx->gb);
326         band->inherit_qdelta = get_bits1(&ctx->gb);
327
328         band->glob_quant = get_bits(&ctx->gb, 5);
329
330         if (!get_bits1(&ctx->gb) || ctx->frame_type == FRAMETYPE_INTRA) {
331             transform_id = get_bits(&ctx->gb, 5);
332             if (transform_id >= FF_ARRAY_ELEMS(transforms) ||
333                 !transforms[transform_id].inv_trans) {
334                 avpriv_request_sample(avctx, "Transform %d", transform_id);
335                 return AVERROR_PATCHWELCOME;
336             }
337             if ((transform_id >= 7 && transform_id <= 9) ||
338                  transform_id == 17) {
339                 avpriv_request_sample(avctx, "DCT transform");
340                 return AVERROR_PATCHWELCOME;
341             }
342
343             if (transform_id < 10 && band->blk_size < 8) {
344                 av_log(avctx, AV_LOG_ERROR, "wrong transform size!\n");
345                 return AVERROR_INVALIDDATA;
346             }
347 #if IVI4_STREAM_ANALYSER
348             if ((transform_id >= 0 && transform_id <= 2) || transform_id == 10)
349                 ctx->uses_haar = 1;
350 #endif
351
352             band->inv_transform = transforms[transform_id].inv_trans;
353             band->dc_transform  = transforms[transform_id].dc_trans;
354             band->is_2d_trans   = transforms[transform_id].is_2d_trans;
355
356             if (transform_id < 10)
357                 band->transform_size = 8;
358             else
359                 band->transform_size = 4;
360
361             if (band->blk_size != band->transform_size) {
362                 av_log(avctx, AV_LOG_ERROR, "transform and block size mismatch (%d != %d)\n", band->transform_size, band->blk_size);
363                 return AVERROR_INVALIDDATA;
364             }
365
366             scan_indx = get_bits(&ctx->gb, 4);
367             if (scan_indx == 15) {
368                 av_log(avctx, AV_LOG_ERROR, "Custom scan pattern encountered!\n");
369                 return AVERROR_INVALIDDATA;
370             }
371             if (scan_indx > 4 && scan_indx < 10) {
372                 if (band->blk_size != 4) {
373                     av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
374                     return AVERROR_INVALIDDATA;
375                 }
376             } else if (band->blk_size != 8) {
377                 av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
378                 return AVERROR_INVALIDDATA;
379             }
380
381             band->scan = scan_index_to_tab[scan_indx];
382             band->scan_size = band->blk_size;
383
384             quant_mat = get_bits(&ctx->gb, 5);
385             if (quant_mat == 31) {
386                 av_log(avctx, AV_LOG_ERROR, "Custom quant matrix encountered!\n");
387                 return AVERROR_INVALIDDATA;
388             }
389             if (quant_mat >= FF_ARRAY_ELEMS(quant_index_to_tab)) {
390                 avpriv_request_sample(avctx, "Quantization matrix %d",
391                                       quant_mat);
392                 return AVERROR_INVALIDDATA;
393             }
394             band->quant_mat = quant_mat;
395         }
396         if (quant_index_to_tab[band->quant_mat] > 4 && band->blk_size == 4) {
397             av_log(avctx, AV_LOG_ERROR, "Invalid quant matrix for 4x4 block encountered!\n");
398             band->quant_mat = 0;
399             return AVERROR_INVALIDDATA;
400         }
401         if (band->scan_size != band->blk_size) {
402             av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
403             return AVERROR_INVALIDDATA;
404         }
405         if (band->transform_size == 8 && band->blk_size < 8) {
406             av_log(avctx, AV_LOG_ERROR, "mismatching transform_size!\n");
407             return AVERROR_INVALIDDATA;
408         }
409
410         /* decode block huffman codebook */
411         if (!get_bits1(&ctx->gb))
412             band->blk_vlc.tab = ctx->blk_vlc.tab;
413         else
414             if (ff_ivi_dec_huff_desc(&ctx->gb, 1, IVI_BLK_HUFF,
415                                      &band->blk_vlc, avctx))
416                 return AVERROR_INVALIDDATA;
417
418         /* select appropriate rvmap table for this band */
419         band->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
420
421         /* decode rvmap probability corrections if any */
422         band->num_corr = 0; /* there is no corrections */
423         if (get_bits1(&ctx->gb)) {
424             band->num_corr = get_bits(&ctx->gb, 8); /* get number of correction pairs */
425             if (band->num_corr > 61) {
426                 av_log(avctx, AV_LOG_ERROR, "Too many corrections: %d\n",
427                        band->num_corr);
428                 return AVERROR_INVALIDDATA;
429             }
430
431             /* read correction pairs */
432             for (i = 0; i < band->num_corr * 2; i++)
433                 band->corr[i] = get_bits(&ctx->gb, 8);
434         }
435     }
436
437     if (band->blk_size == 8) {
438         band->intra_base = &ivi4_quant_8x8_intra[quant_index_to_tab[band->quant_mat]][0];
439         band->inter_base = &ivi4_quant_8x8_inter[quant_index_to_tab[band->quant_mat]][0];
440     } else {
441         band->intra_base = &ivi4_quant_4x4_intra[quant_index_to_tab[band->quant_mat]][0];
442         band->inter_base = &ivi4_quant_4x4_inter[quant_index_to_tab[band->quant_mat]][0];
443     }
444
445     /* Indeo 4 doesn't use scale tables */
446     band->intra_scale = NULL;
447     band->inter_scale = NULL;
448
449     align_get_bits(&ctx->gb);
450
451     if (!band->scan) {
452         av_log(avctx, AV_LOG_ERROR, "band->scan not set\n");
453         return AVERROR_INVALIDDATA;
454     }
455
456     return 0;
457 }
458
459
460 /**
461  *  Decode information (block type, cbp, quant delta, motion vector)
462  *  for all macroblocks in the current tile.
463  *
464  *  @param[in,out] ctx       pointer to the decoder context
465  *  @param[in,out] band      pointer to the band descriptor
466  *  @param[in,out] tile      pointer to the tile descriptor
467  *  @param[in]     avctx     pointer to the AVCodecContext
468  *  @return        result code: 0 = OK, negative number = error
469  */
470 static int decode_mb_info(IVI45DecContext *ctx, IVIBandDesc *band,
471                           IVITile *tile, AVCodecContext *avctx)
472 {
473     int         x, y, mv_x, mv_y, mv_delta, offs, mb_offset, blks_per_mb,
474                 mv_scale, mb_type_bits, s;
475     IVIMbInfo   *mb, *ref_mb;
476     int         row_offset = band->mb_size * band->pitch;
477
478     mb     = tile->mbs;
479     ref_mb = tile->ref_mbs;
480     offs   = tile->ypos * band->pitch + tile->xpos;
481
482     blks_per_mb  = band->mb_size   != band->blk_size  ? 4 : 1;
483     mb_type_bits = ctx->frame_type == FRAMETYPE_BIDIR ? 2 : 1;
484
485     /* scale factor for motion vectors */
486     mv_scale = (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3);
487     mv_x = mv_y = 0;
488
489     if (((tile->width + band->mb_size-1)/band->mb_size) * ((tile->height + band->mb_size-1)/band->mb_size) != tile->num_MBs) {
490         av_log(avctx, AV_LOG_ERROR, "num_MBs mismatch %d %d %d %d\n", tile->width, tile->height, band->mb_size, tile->num_MBs);
491         return -1;
492     }
493
494     for (y = tile->ypos; y < tile->ypos + tile->height; y += band->mb_size) {
495         mb_offset = offs;
496
497         for (x = tile->xpos; x < tile->xpos + tile->width; x += band->mb_size) {
498             mb->xpos     = x;
499             mb->ypos     = y;
500             mb->buf_offs = mb_offset;
501
502             if (get_bits1(&ctx->gb)) {
503                 if (ctx->frame_type == FRAMETYPE_INTRA) {
504                     av_log(avctx, AV_LOG_ERROR, "Empty macroblock in an INTRA picture!\n");
505                     return AVERROR_INVALIDDATA;
506                 }
507                 mb->type = 1; /* empty macroblocks are always INTER */
508                 mb->cbp  = 0; /* all blocks are empty */
509
510                 mb->q_delta = 0;
511                 if (!band->plane && !band->band_num && ctx->in_q) {
512                     mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
513                                            IVI_VLC_BITS, 1);
514                     mb->q_delta = IVI_TOSIGNED(mb->q_delta);
515                 }
516
517                 mb->mv_x = mb->mv_y = 0; /* no motion vector coded */
518                 if (band->inherit_mv && ref_mb) {
519                     /* motion vector inheritance */
520                     if (mv_scale) {
521                         mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
522                         mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
523                     } else {
524                         mb->mv_x = ref_mb->mv_x;
525                         mb->mv_y = ref_mb->mv_y;
526                     }
527                 }
528             } else {
529                 if (band->inherit_mv) {
530                     /* copy mb_type from corresponding reference mb */
531                     if (!ref_mb) {
532                         av_log(avctx, AV_LOG_ERROR, "ref_mb unavailable\n");
533                         return AVERROR_INVALIDDATA;
534                     }
535                     mb->type = ref_mb->type;
536                 } else if (ctx->frame_type == FRAMETYPE_INTRA ||
537                            ctx->frame_type == FRAMETYPE_INTRA1) {
538                     mb->type = 0; /* mb_type is always INTRA for intra-frames */
539                 } else {
540                     mb->type = get_bits(&ctx->gb, mb_type_bits);
541                 }
542
543                 mb->cbp = get_bits(&ctx->gb, blks_per_mb);
544
545                 mb->q_delta = 0;
546                 if (band->inherit_qdelta) {
547                     if (ref_mb) mb->q_delta = ref_mb->q_delta;
548                 } else if (mb->cbp || (!band->plane && !band->band_num &&
549                            ctx->in_q)) {
550                     mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
551                                            IVI_VLC_BITS, 1);
552                     mb->q_delta = IVI_TOSIGNED(mb->q_delta);
553                 }
554
555                 if (!mb->type) {
556                     mb->mv_x = mb->mv_y = 0; /* there is no motion vector in intra-macroblocks */
557                 } else {
558                     if (band->inherit_mv) {
559                         if (ref_mb)
560                             /* motion vector inheritance */
561                             if (mv_scale) {
562                                 mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
563                                 mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
564                             } else {
565                                 mb->mv_x = ref_mb->mv_x;
566                                 mb->mv_y = ref_mb->mv_y;
567                             }
568                     } else {
569                         /* decode motion vector deltas */
570                         mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
571                                             IVI_VLC_BITS, 1);
572                         mv_y += IVI_TOSIGNED(mv_delta);
573                         mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
574                                             IVI_VLC_BITS, 1);
575                         mv_x += IVI_TOSIGNED(mv_delta);
576                         mb->mv_x = mv_x;
577                         mb->mv_y = mv_y;
578                     }
579                 }
580             }
581
582             s= band->is_halfpel;
583             if (mb->type)
584             if ( x +  (mb->mv_x   >>s) +                 (y+               (mb->mv_y   >>s))*band->pitch < 0 ||
585                  x + ((mb->mv_x+s)>>s) + band->mb_size - 1
586                    + (y+band->mb_size - 1 +((mb->mv_y+s)>>s))*band->pitch > band->bufsize -1) {
587                 av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mb->mv_x, y*s + mb->mv_y);
588                 return AVERROR_INVALIDDATA;
589             }
590
591             mb++;
592             if (ref_mb)
593                 ref_mb++;
594             mb_offset += band->mb_size;
595         }
596
597         offs += row_offset;
598     }
599
600     align_get_bits(&ctx->gb);
601
602     return 0;
603 }
604
605
606 /**
607  *  Rearrange decoding and reference buffers.
608  *
609  *  @param[in,out] ctx       pointer to the decoder context
610  */
611 static void switch_buffers(IVI45DecContext *ctx)
612 {
613     switch (ctx->prev_frame_type) {
614     case FRAMETYPE_INTRA:
615     case FRAMETYPE_INTRA1:
616     case FRAMETYPE_INTER:
617         ctx->buf_switch ^= 1;
618         ctx->dst_buf     = ctx->buf_switch;
619         ctx->ref_buf     = ctx->buf_switch ^ 1;
620         break;
621     case FRAMETYPE_INTER_NOREF:
622         break;
623     }
624
625     switch (ctx->frame_type) {
626     case FRAMETYPE_INTRA:
627     case FRAMETYPE_INTRA1:
628         ctx->buf_switch = 0;
629         /* FALLTHROUGH */
630     case FRAMETYPE_INTER:
631         ctx->dst_buf = ctx->buf_switch;
632         ctx->ref_buf = ctx->buf_switch ^ 1;
633         break;
634     case FRAMETYPE_INTER_NOREF:
635     case FRAMETYPE_NULL_FIRST:
636     case FRAMETYPE_NULL_LAST:
637         break;
638     }
639 }
640
641
642 static int is_nonnull_frame(IVI45DecContext *ctx)
643 {
644     return ctx->frame_type < FRAMETYPE_NULL_FIRST;
645 }
646
647
648 static av_cold int decode_init(AVCodecContext *avctx)
649 {
650     IVI45DecContext *ctx = avctx->priv_data;
651
652     ff_ivi_init_static_vlc();
653
654     /* copy rvmap tables in our context so we can apply changes to them */
655     memcpy(ctx->rvmap_tabs, ff_ivi_rvmap_tabs, sizeof(ff_ivi_rvmap_tabs));
656
657     /* Force allocation of the internal buffers */
658     /* during picture header decoding.          */
659     ctx->pic_conf.pic_width  = 0;
660     ctx->pic_conf.pic_height = 0;
661
662     avctx->pix_fmt = AV_PIX_FMT_YUV410P;
663
664     ctx->decode_pic_hdr   = decode_pic_hdr;
665     ctx->decode_band_hdr  = decode_band_hdr;
666     ctx->decode_mb_info   = decode_mb_info;
667     ctx->switch_buffers   = switch_buffers;
668     ctx->is_nonnull_frame = is_nonnull_frame;
669
670     return 0;
671 }
672
673
674 AVCodec ff_indeo4_decoder = {
675     .name           = "indeo4",
676     .type           = AVMEDIA_TYPE_VIDEO,
677     .id             = AV_CODEC_ID_INDEO4,
678     .priv_data_size = sizeof(IVI45DecContext),
679     .init           = decode_init,
680     .close          = ff_ivi_decode_close,
681     .decode         = ff_ivi_decode_frame,
682     .long_name      = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 4"),
683     .capabilities   = CODEC_CAP_DR1,
684 };