00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00030 #define BITSTREAM_READER_LE
00031 #include "avcodec.h"
00032 #include "get_bits.h"
00033 #include "dsputil.h"
00034 #include "ivi_dsp.h"
00035 #include "ivi_common.h"
00036 #include "indeo4data.h"
00037
00041 enum {
00042 FRAMETYPE_INTRA = 0,
00043 FRAMETYPE_BIDIR1 = 1,
00044 FRAMETYPE_INTER = 2,
00045 FRAMETYPE_BIDIR = 3,
00046 FRAMETYPE_INTER_NOREF = 4,
00047 FRAMETYPE_NULL_FIRST = 5,
00048 FRAMETYPE_NULL_LAST = 6
00049 };
00050
00051 #define IVI4_PIC_SIZE_ESC 7
00052
00053
00054 static const struct {
00055 InvTransformPtr *inv_trans;
00056 DCTransformPtr *dc_trans;
00057 int is_2d_trans;
00058 } transforms[18] = {
00059 { ff_ivi_inverse_haar_8x8, ff_ivi_dc_haar_2d, 1 },
00060 { NULL, NULL, 0 },
00061 { NULL, NULL, 0 },
00062 { ff_ivi_put_pixels_8x8, ff_ivi_put_dc_pixel_8x8, 1 },
00063 { ff_ivi_inverse_slant_8x8, ff_ivi_dc_slant_2d, 1 },
00064 { ff_ivi_row_slant8, ff_ivi_dc_row_slant, 1 },
00065 { ff_ivi_col_slant8, ff_ivi_dc_col_slant, 1 },
00066 { NULL, NULL, 0 },
00067 { NULL, NULL, 0 },
00068 { NULL, NULL, 0 },
00069 { NULL, NULL, 0 },
00070 { ff_ivi_inverse_slant_4x4, ff_ivi_dc_slant_2d, 1 },
00071 { NULL, NULL, 0 },
00072 { NULL, NULL, 0 },
00073 { NULL, NULL, 0 },
00074 { NULL, NULL, 0 },
00075 { NULL, NULL, 0 },
00076 { NULL, NULL, 0 },
00077 };
00078
00089 static int decode_plane_subdivision(GetBitContext *gb)
00090 {
00091 int i;
00092
00093 switch (get_bits(gb, 2)) {
00094 case 3:
00095 return 1;
00096 case 2:
00097 for (i = 0; i < 4; i++)
00098 if (get_bits(gb, 2) != 3)
00099 return 0;
00100 return 4;
00101 default:
00102 return 0;
00103 }
00104 }
00105
00106 static inline int scale_tile_size(int def_size, int size_factor)
00107 {
00108 return size_factor == 15 ? def_size : (size_factor + 1) << 5;
00109 }
00110
00118 static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx)
00119 {
00120 int pic_size_indx, i, p;
00121 IVIPicConfig pic_conf;
00122
00123 if (get_bits(&ctx->gb, 18) != 0x3FFF8) {
00124 av_log(avctx, AV_LOG_ERROR, "Invalid picture start code!\n");
00125 return AVERROR_INVALIDDATA;
00126 }
00127
00128 ctx->prev_frame_type = ctx->frame_type;
00129 ctx->frame_type = get_bits(&ctx->gb, 3);
00130 if (ctx->frame_type == 7) {
00131 av_log(avctx, AV_LOG_ERROR, "Invalid frame type: %d\n", ctx->frame_type);
00132 return AVERROR_INVALIDDATA;
00133 }
00134
00135 #if IVI4_STREAM_ANALYSER
00136 if ( ctx->frame_type == FRAMETYPE_BIDIR1
00137 || ctx->frame_type == FRAMETYPE_BIDIR)
00138 ctx->has_b_frames = 1;
00139 #endif
00140
00141 ctx->transp_status = get_bits1(&ctx->gb);
00142 #if IVI4_STREAM_ANALYSER
00143 if (ctx->transp_status) {
00144 ctx->has_transp = 1;
00145 }
00146 #endif
00147
00148
00149 if (get_bits1(&ctx->gb)) {
00150 av_log(avctx, AV_LOG_ERROR, "Sync bit is set!\n");
00151 return AVERROR_INVALIDDATA;
00152 }
00153
00154 ctx->data_size = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 24) : 0;
00155
00156
00157 if (ctx->frame_type >= FRAMETYPE_NULL_FIRST) {
00158 av_dlog(avctx, "Null frame encountered!\n");
00159 return 0;
00160 }
00161
00162
00163
00164
00165 if (get_bits1(&ctx->gb)) {
00166 skip_bits_long(&ctx->gb, 32);
00167 av_dlog(avctx, "Password-protected clip!\n");
00168 }
00169
00170 pic_size_indx = get_bits(&ctx->gb, 3);
00171 if (pic_size_indx == IVI4_PIC_SIZE_ESC) {
00172 pic_conf.pic_height = get_bits(&ctx->gb, 16);
00173 pic_conf.pic_width = get_bits(&ctx->gb, 16);
00174 } else {
00175 pic_conf.pic_height = ivi4_common_pic_sizes[pic_size_indx * 2 + 1];
00176 pic_conf.pic_width = ivi4_common_pic_sizes[pic_size_indx * 2 ];
00177 }
00178
00179
00180 if (get_bits1(&ctx->gb)) {
00181 pic_conf.tile_height = scale_tile_size(pic_conf.pic_height, get_bits(&ctx->gb, 4));
00182 pic_conf.tile_width = scale_tile_size(pic_conf.pic_width, get_bits(&ctx->gb, 4));
00183 #if IVI4_STREAM_ANALYSER
00184 ctx->uses_tiling = 1;
00185 #endif
00186 } else {
00187 pic_conf.tile_height = pic_conf.pic_height;
00188 pic_conf.tile_width = pic_conf.pic_width;
00189 }
00190
00191
00192 if (get_bits(&ctx->gb, 2)) {
00193 av_log(avctx, AV_LOG_ERROR, "Only YVU9 picture format is supported!\n");
00194 return AVERROR_INVALIDDATA;
00195 }
00196 pic_conf.chroma_height = (pic_conf.pic_height + 3) >> 2;
00197 pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2;
00198
00199
00200 pic_conf.luma_bands = decode_plane_subdivision(&ctx->gb);
00201 if (pic_conf.luma_bands)
00202 pic_conf.chroma_bands = decode_plane_subdivision(&ctx->gb);
00203 ctx->is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1;
00204 if (ctx->is_scalable && (pic_conf.luma_bands != 4 || pic_conf.chroma_bands != 1)) {
00205 av_log(avctx, AV_LOG_ERROR, "Scalability: unsupported subdivision! Luma bands: %d, chroma bands: %d\n",
00206 pic_conf.luma_bands, pic_conf.chroma_bands);
00207 return AVERROR_INVALIDDATA;
00208 }
00209
00210
00211 if (ivi_pic_config_cmp(&pic_conf, &ctx->pic_conf)) {
00212 if (ff_ivi_init_planes(ctx->planes, &pic_conf)) {
00213 av_log(avctx, AV_LOG_ERROR, "Couldn't reallocate color planes!\n");
00214 return AVERROR(ENOMEM);
00215 }
00216
00217 ctx->pic_conf = pic_conf;
00218
00219
00220 for (p = 0; p <= 2; p++) {
00221 for (i = 0; i < (!p ? pic_conf.luma_bands : pic_conf.chroma_bands); i++) {
00222 ctx->planes[p].bands[i].mb_size = !p ? (!ctx->is_scalable ? 16 : 8) : 4;
00223 ctx->planes[p].bands[i].blk_size = !p ? 8 : 4;
00224 }
00225 }
00226
00227 if (ff_ivi_init_tiles(ctx->planes, ctx->pic_conf.tile_width,
00228 ctx->pic_conf.tile_height)) {
00229 av_log(avctx, AV_LOG_ERROR,
00230 "Couldn't reallocate internal structures!\n");
00231 return AVERROR(ENOMEM);
00232 }
00233 }
00234
00235 ctx->frame_num = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 20) : 0;
00236
00237
00238 if (get_bits1(&ctx->gb))
00239 skip_bits(&ctx->gb, 8);
00240
00241
00242 if (ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_MB_HUFF, &ctx->mb_vlc, avctx) ||
00243 ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_BLK_HUFF, &ctx->blk_vlc, avctx))
00244 return AVERROR_INVALIDDATA;
00245
00246 ctx->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
00247
00248 ctx->in_imf = get_bits1(&ctx->gb);
00249 ctx->in_q = get_bits1(&ctx->gb);
00250
00251 ctx->pic_glob_quant = get_bits(&ctx->gb, 5);
00252
00253
00254 ctx->unknown1 = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 0;
00255
00256 ctx->checksum = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 16) : 0;
00257
00258
00259 while (get_bits1(&ctx->gb)) {
00260 av_dlog(avctx, "Pic hdr extension encountered!\n");
00261 skip_bits(&ctx->gb, 8);
00262 }
00263
00264 if (get_bits1(&ctx->gb)) {
00265 av_log(avctx, AV_LOG_ERROR, "Bad blocks bits encountered!\n");
00266 }
00267
00268 align_get_bits(&ctx->gb);
00269
00270 return 0;
00271 }
00272
00273
00282 static int decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *band,
00283 AVCodecContext *avctx)
00284 {
00285 int plane, band_num, indx, transform_id, scan_indx;
00286 int i;
00287 int quant_mat;
00288
00289 plane = get_bits(&ctx->gb, 2);
00290 band_num = get_bits(&ctx->gb, 4);
00291 if (band->plane != plane || band->band_num != band_num) {
00292 av_log(avctx, AV_LOG_ERROR, "Invalid band header sequence!\n");
00293 return AVERROR_INVALIDDATA;
00294 }
00295
00296 band->is_empty = get_bits1(&ctx->gb);
00297 if (!band->is_empty) {
00298
00299
00300 if (get_bits1(&ctx->gb))
00301 skip_bits(&ctx->gb, 16);
00302
00303 band->is_halfpel = get_bits(&ctx->gb, 2);
00304 if (band->is_halfpel >= 2) {
00305 av_log(avctx, AV_LOG_ERROR, "Invalid/unsupported mv resolution: %d!\n",
00306 band->is_halfpel);
00307 return AVERROR_INVALIDDATA;
00308 }
00309 #if IVI4_STREAM_ANALYSER
00310 if (!band->is_halfpel)
00311 ctx->uses_fullpel = 1;
00312 #endif
00313
00314 band->checksum_present = get_bits1(&ctx->gb);
00315 if (band->checksum_present)
00316 band->checksum = get_bits(&ctx->gb, 16);
00317
00318 indx = get_bits(&ctx->gb, 2);
00319 if (indx == 3) {
00320 av_log(avctx, AV_LOG_ERROR, "Invalid block size!\n");
00321 return AVERROR_INVALIDDATA;
00322 }
00323 band->mb_size = 16 >> indx;
00324 band->blk_size = 8 >> (indx >> 1);
00325
00326 band->inherit_mv = get_bits1(&ctx->gb);
00327 band->inherit_qdelta = get_bits1(&ctx->gb);
00328
00329 band->glob_quant = get_bits(&ctx->gb, 5);
00330
00331 if (!get_bits1(&ctx->gb) || ctx->frame_type == FRAMETYPE_INTRA) {
00332 transform_id = get_bits(&ctx->gb, 5);
00333 if (transform_id >= FF_ARRAY_ELEMS(transforms) ||
00334 !transforms[transform_id].inv_trans) {
00335 av_log_ask_for_sample(avctx, "Unimplemented transform: %d!\n", transform_id);
00336 return AVERROR_PATCHWELCOME;
00337 }
00338 if ((transform_id >= 7 && transform_id <= 9) ||
00339 transform_id == 17) {
00340 av_log_ask_for_sample(avctx, "DCT transform not supported yet!\n");
00341 return AVERROR_PATCHWELCOME;
00342 }
00343
00344 if (transform_id < 10 && band->blk_size < 8) {
00345 av_log(avctx, AV_LOG_ERROR, "wrong transform size!\n");
00346 return AVERROR_INVALIDDATA;
00347 }
00348 #if IVI4_STREAM_ANALYSER
00349 if ((transform_id >= 0 && transform_id <= 2) || transform_id == 10)
00350 ctx->uses_haar = 1;
00351 #endif
00352
00353 band->inv_transform = transforms[transform_id].inv_trans;
00354 band->dc_transform = transforms[transform_id].dc_trans;
00355 band->is_2d_trans = transforms[transform_id].is_2d_trans;
00356 band->transform_size= (transform_id < 10) ? 8 : 4;
00357
00358 scan_indx = get_bits(&ctx->gb, 4);
00359 if ((scan_indx>4 && scan_indx<10) != (band->blk_size==4)) {
00360 av_log(avctx, AV_LOG_ERROR, "mismatching scan table!\n");
00361 return AVERROR_INVALIDDATA;
00362 }
00363 if (scan_indx == 15) {
00364 av_log(avctx, AV_LOG_ERROR, "Custom scan pattern encountered!\n");
00365 return AVERROR_INVALIDDATA;
00366 }
00367 band->scan = scan_index_to_tab[scan_indx];
00368
00369 quant_mat = get_bits(&ctx->gb, 5);
00370 if (quant_mat == 31) {
00371 av_log(avctx, AV_LOG_ERROR, "Custom quant matrix encountered!\n");
00372 return AVERROR_INVALIDDATA;
00373 }
00374 if (quant_mat > 21) {
00375 av_log(avctx, AV_LOG_ERROR, "Invalid quant matrix encountered!\n");
00376 return AVERROR_INVALIDDATA;
00377 }
00378 band->quant_mat = quant_mat;
00379 }
00380 if (quant_index_to_tab[band->quant_mat] > 4 && band->blk_size == 4) {
00381 av_log(avctx, AV_LOG_ERROR, "Invalid quant matrix for 4x4 block encountered!\n");
00382 band->quant_mat = 0;
00383 return AVERROR_INVALIDDATA;
00384 }
00385
00386 if (ff_ivi_dec_huff_desc(&ctx->gb, get_bits1(&ctx->gb), IVI_BLK_HUFF,
00387 &band->blk_vlc, avctx))
00388 return AVERROR_INVALIDDATA;
00389
00390
00391 band->rvmap_sel = get_bits1(&ctx->gb) ? get_bits(&ctx->gb, 3) : 8;
00392
00393
00394 band->num_corr = 0;
00395 if (get_bits1(&ctx->gb)) {
00396 band->num_corr = get_bits(&ctx->gb, 8);
00397 if (band->num_corr > 61) {
00398 av_log(avctx, AV_LOG_ERROR, "Too many corrections: %d\n",
00399 band->num_corr);
00400 return AVERROR_INVALIDDATA;
00401 }
00402
00403
00404 for (i = 0; i < band->num_corr * 2; i++)
00405 band->corr[i] = get_bits(&ctx->gb, 8);
00406 }
00407 }
00408
00409 if (band->blk_size == 8) {
00410 band->intra_base = &ivi4_quant_8x8_intra[quant_index_to_tab[band->quant_mat]][0];
00411 band->inter_base = &ivi4_quant_8x8_inter[quant_index_to_tab[band->quant_mat]][0];
00412 } else {
00413 band->intra_base = &ivi4_quant_4x4_intra[quant_index_to_tab[band->quant_mat]][0];
00414 band->inter_base = &ivi4_quant_4x4_inter[quant_index_to_tab[band->quant_mat]][0];
00415 }
00416
00417
00418 band->intra_scale = NULL;
00419 band->inter_scale = NULL;
00420
00421 align_get_bits(&ctx->gb);
00422
00423 if (!band->scan) {
00424 av_log(avctx, AV_LOG_ERROR, "band->scan not set\n");
00425 return AVERROR_INVALIDDATA;
00426 }
00427
00428 return 0;
00429 }
00430
00431
00442 static int decode_mb_info(IVI45DecContext *ctx, IVIBandDesc *band,
00443 IVITile *tile, AVCodecContext *avctx)
00444 {
00445 int x, y, mv_x, mv_y, mv_delta, offs, mb_offset, blks_per_mb,
00446 mv_scale, mb_type_bits, s;
00447 IVIMbInfo *mb, *ref_mb;
00448 int row_offset = band->mb_size * band->pitch;
00449
00450 mb = tile->mbs;
00451 ref_mb = tile->ref_mbs;
00452 offs = tile->ypos * band->pitch + tile->xpos;
00453
00454 blks_per_mb = band->mb_size != band->blk_size ? 4 : 1;
00455 mb_type_bits = ctx->frame_type == FRAMETYPE_BIDIR ? 2 : 1;
00456
00457
00458 mv_scale = (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3);
00459 mv_x = mv_y = 0;
00460
00461 if (((tile->width + band->mb_size-1)/band->mb_size) * ((tile->height + band->mb_size-1)/band->mb_size) != tile->num_MBs) {
00462 av_log(avctx, AV_LOG_ERROR, "num_MBs mismatch %d %d %d %d\n", tile->width, tile->height, band->mb_size, tile->num_MBs);
00463 return -1;
00464 }
00465
00466 for (y = tile->ypos; y < tile->ypos + tile->height; y += band->mb_size) {
00467 mb_offset = offs;
00468
00469 for (x = tile->xpos; x < tile->xpos + tile->width; x += band->mb_size) {
00470 mb->xpos = x;
00471 mb->ypos = y;
00472 mb->buf_offs = mb_offset;
00473
00474 if (get_bits1(&ctx->gb)) {
00475 if (ctx->frame_type == FRAMETYPE_INTRA) {
00476 av_log(avctx, AV_LOG_ERROR, "Empty macroblock in an INTRA picture!\n");
00477 return AVERROR_INVALIDDATA;
00478 }
00479 mb->type = 1;
00480 mb->cbp = 0;
00481
00482 mb->q_delta = 0;
00483 if (!band->plane && !band->band_num && ctx->in_q) {
00484 mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
00485 IVI_VLC_BITS, 1);
00486 mb->q_delta = IVI_TOSIGNED(mb->q_delta);
00487 }
00488
00489 mb->mv_x = mb->mv_y = 0;
00490 if (band->inherit_mv && ref_mb) {
00491
00492 if (mv_scale) {
00493 mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
00494 mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
00495 } else {
00496 mb->mv_x = ref_mb->mv_x;
00497 mb->mv_y = ref_mb->mv_y;
00498 }
00499 }
00500 } else {
00501 if (band->inherit_mv && ref_mb) {
00502 mb->type = ref_mb->type;
00503 } else if (ctx->frame_type == FRAMETYPE_INTRA) {
00504 mb->type = 0;
00505 } else {
00506 mb->type = get_bits(&ctx->gb, mb_type_bits);
00507 }
00508
00509 mb->cbp = get_bits(&ctx->gb, blks_per_mb);
00510
00511 mb->q_delta = 0;
00512 if (band->inherit_qdelta) {
00513 if (ref_mb) mb->q_delta = ref_mb->q_delta;
00514 } else if (mb->cbp || (!band->plane && !band->band_num &&
00515 ctx->in_q)) {
00516 mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
00517 IVI_VLC_BITS, 1);
00518 mb->q_delta = IVI_TOSIGNED(mb->q_delta);
00519 }
00520
00521 if (!mb->type) {
00522 mb->mv_x = mb->mv_y = 0;
00523 } else {
00524 if (band->inherit_mv && ref_mb) {
00525
00526 if (mv_scale) {
00527 mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
00528 mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
00529 } else {
00530 mb->mv_x = ref_mb->mv_x;
00531 mb->mv_y = ref_mb->mv_y;
00532 }
00533 } else {
00534
00535 mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
00536 IVI_VLC_BITS, 1);
00537 mv_y += IVI_TOSIGNED(mv_delta);
00538 mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
00539 IVI_VLC_BITS, 1);
00540 mv_x += IVI_TOSIGNED(mv_delta);
00541 mb->mv_x = mv_x;
00542 mb->mv_y = mv_y;
00543 }
00544 }
00545 }
00546
00547 s= band->is_halfpel;
00548 if (mb->type)
00549 if ( x + (mb->mv_x >>s) + (y+ (mb->mv_y >>s))*band->pitch < 0 ||
00550 x + ((mb->mv_x+s)>>s) + band->mb_size - 1
00551 + (y+band->mb_size - 1 +((mb->mv_y+s)>>s))*band->pitch > band->bufsize -1) {
00552 av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mb->mv_x, y*s + mb->mv_y);
00553 return AVERROR_INVALIDDATA;
00554 }
00555
00556 mb++;
00557 if (ref_mb)
00558 ref_mb++;
00559 mb_offset += band->mb_size;
00560 }
00561
00562 offs += row_offset;
00563 }
00564
00565 align_get_bits(&ctx->gb);
00566
00567 return 0;
00568 }
00569
00570
00576 static void switch_buffers(IVI45DecContext *ctx)
00577 {
00578 switch (ctx->prev_frame_type) {
00579 case FRAMETYPE_INTRA:
00580 case FRAMETYPE_INTER:
00581 ctx->buf_switch ^= 1;
00582 ctx->dst_buf = ctx->buf_switch;
00583 ctx->ref_buf = ctx->buf_switch ^ 1;
00584 break;
00585 case FRAMETYPE_INTER_NOREF:
00586 break;
00587 }
00588
00589 switch (ctx->frame_type) {
00590 case FRAMETYPE_INTRA:
00591 ctx->buf_switch = 0;
00592
00593 case FRAMETYPE_INTER:
00594 ctx->dst_buf = ctx->buf_switch;
00595 ctx->ref_buf = ctx->buf_switch ^ 1;
00596 break;
00597 case FRAMETYPE_INTER_NOREF:
00598 case FRAMETYPE_NULL_FIRST:
00599 case FRAMETYPE_NULL_LAST:
00600 break;
00601 }
00602 }
00603
00604
00605 static int is_nonnull_frame(IVI45DecContext *ctx)
00606 {
00607 return ctx->frame_type < FRAMETYPE_NULL_FIRST;
00608 }
00609
00610
00611 static av_cold int decode_init(AVCodecContext *avctx)
00612 {
00613 IVI45DecContext *ctx = avctx->priv_data;
00614
00615 ff_ivi_init_static_vlc();
00616
00617
00618 memcpy(ctx->rvmap_tabs, ff_ivi_rvmap_tabs, sizeof(ff_ivi_rvmap_tabs));
00619
00620
00621
00622 ctx->pic_conf.pic_width = 0;
00623 ctx->pic_conf.pic_height = 0;
00624
00625 avctx->pix_fmt = PIX_FMT_YUV410P;
00626
00627 ctx->decode_pic_hdr = decode_pic_hdr;
00628 ctx->decode_band_hdr = decode_band_hdr;
00629 ctx->decode_mb_info = decode_mb_info;
00630 ctx->switch_buffers = switch_buffers;
00631 ctx->is_nonnull_frame = is_nonnull_frame;
00632
00633 return 0;
00634 }
00635
00636
00637 AVCodec ff_indeo4_decoder = {
00638 .name = "indeo4",
00639 .type = AVMEDIA_TYPE_VIDEO,
00640 .id = CODEC_ID_INDEO4,
00641 .priv_data_size = sizeof(IVI45DecContext),
00642 .init = decode_init,
00643 .close = ff_ivi_decode_close,
00644 .decode = ff_ivi_decode_frame,
00645 .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 4"),
00646 };