You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

679 lines
23KB

  1. /*
  2. * Indeo Video Interactive v5 compatible decoder
  3. * Copyright (c) 2009 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. * @file
  23. * Indeo Video Interactive version 5 decoder
  24. *
  25. * Indeo5 data is usually transported within .avi or .mov files.
  26. * Known FOURCCs: 'IV50'
  27. */
  28. #define BITSTREAM_READER_LE
  29. #include "avcodec.h"
  30. #include "get_bits.h"
  31. #include "dsputil.h"
  32. #include "ivi_dsp.h"
  33. #include "ivi_common.h"
  34. #include "indeo5data.h"
  35. /**
  36. * Indeo5 frame types.
  37. */
  38. enum {
  39. FRAMETYPE_INTRA = 0,
  40. FRAMETYPE_INTER = 1, ///< non-droppable P-frame
  41. FRAMETYPE_INTER_SCAL = 2, ///< droppable P-frame used in the scalability mode
  42. FRAMETYPE_INTER_NOREF = 3, ///< droppable P-frame
  43. FRAMETYPE_NULL = 4 ///< empty frame with no data
  44. };
  45. #define IVI5_PIC_SIZE_ESC 15
  46. /**
  47. * Decode Indeo5 GOP (Group of pictures) header.
  48. * This header is present in key frames only.
  49. * It defines parameters for all frames in a GOP.
  50. *
  51. * @param[in,out] ctx ptr to the decoder context
  52. * @param[in] avctx ptr to the AVCodecContext
  53. * @return result code: 0 = OK, -1 = error
  54. */
  55. static int decode_gop_header(IVI45DecContext *ctx, AVCodecContext *avctx)
  56. {
  57. int result, i, p, tile_size, pic_size_indx, mb_size, blk_size, is_scalable;
  58. int quant_mat, blk_size_changed = 0;
  59. IVIBandDesc *band, *band1, *band2;
  60. IVIPicConfig pic_conf;
  61. ctx->gop_flags = get_bits(&ctx->gb, 8);
  62. ctx->gop_hdr_size = (ctx->gop_flags & 1) ? get_bits(&ctx->gb, 16) : 0;
  63. if (ctx->gop_flags & IVI5_IS_PROTECTED)
  64. ctx->lock_word = get_bits_long(&ctx->gb, 32);
  65. tile_size = (ctx->gop_flags & 0x40) ? 64 << get_bits(&ctx->gb, 2) : 0;
  66. if (tile_size > 256) {
  67. av_log(avctx, AV_LOG_ERROR, "Invalid tile size: %d\n", tile_size);
  68. return -1;
  69. }
  70. /* decode number of wavelet bands */
  71. /* num_levels * 3 + 1 */
  72. pic_conf.luma_bands = get_bits(&ctx->gb, 2) * 3 + 1;
  73. pic_conf.chroma_bands = get_bits1(&ctx->gb) * 3 + 1;
  74. is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1;
  75. if (is_scalable && (pic_conf.luma_bands != 4 || pic_conf.chroma_bands != 1)) {
  76. av_log(avctx, AV_LOG_ERROR, "Scalability: unsupported subdivision! Luma bands: %d, chroma bands: %d\n",
  77. pic_conf.luma_bands, pic_conf.chroma_bands);
  78. return -1;
  79. }
  80. pic_size_indx = get_bits(&ctx->gb, 4);
  81. if (pic_size_indx == IVI5_PIC_SIZE_ESC) {
  82. pic_conf.pic_height = get_bits(&ctx->gb, 13);
  83. pic_conf.pic_width = get_bits(&ctx->gb, 13);
  84. } else {
  85. pic_conf.pic_height = ivi5_common_pic_sizes[pic_size_indx * 2 + 1] << 2;
  86. pic_conf.pic_width = ivi5_common_pic_sizes[pic_size_indx * 2 ] << 2;
  87. }
  88. if (ctx->gop_flags & 2) {
  89. av_log(avctx, AV_LOG_ERROR, "YV12 picture format not supported!\n");
  90. return -1;
  91. }
  92. pic_conf.chroma_height = (pic_conf.pic_height + 3) >> 2;
  93. pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2;
  94. if (!tile_size) {
  95. pic_conf.tile_height = pic_conf.pic_height;
  96. pic_conf.tile_width = pic_conf.pic_width;
  97. } else {
  98. pic_conf.tile_height = pic_conf.tile_width = tile_size;
  99. }
  100. /* check if picture layout was changed and reallocate buffers */
  101. if (ivi_pic_config_cmp(&pic_conf, &ctx->pic_conf)) {
  102. result = ff_ivi_init_planes(ctx->planes, &pic_conf);
  103. if (result) {
  104. av_log(avctx, AV_LOG_ERROR, "Couldn't reallocate color planes!\n");
  105. return -1;
  106. }
  107. ctx->pic_conf = pic_conf;
  108. ctx->is_scalable = is_scalable;
  109. blk_size_changed = 1; /* force reallocation of the internal structures */
  110. }
  111. for (p = 0; p <= 1; p++) {
  112. for (i = 0; i < (!p ? pic_conf.luma_bands : pic_conf.chroma_bands); i++) {
  113. band = &ctx->planes[p].bands[i];
  114. band->is_halfpel = get_bits1(&ctx->gb);
  115. mb_size = get_bits1(&ctx->gb);
  116. blk_size = 8 >> get_bits1(&ctx->gb);
  117. mb_size = blk_size << !mb_size;
  118. if (p==0 && blk_size==4) {
  119. av_log(avctx, AV_LOG_ERROR, "4x4 luma blocks are unsupported!\n");
  120. return AVERROR_PATCHWELCOME;
  121. }
  122. blk_size_changed = mb_size != band->mb_size || blk_size != band->blk_size;
  123. if (blk_size_changed) {
  124. band->mb_size = mb_size;
  125. band->blk_size = blk_size;
  126. }
  127. if (get_bits1(&ctx->gb)) {
  128. av_log(avctx, AV_LOG_ERROR, "Extended transform info encountered!\n");
  129. return -1;
  130. }
  131. /* select transform function and scan pattern according to plane and band number */
  132. switch ((p << 2) + i) {
  133. case 0:
  134. band->inv_transform = ff_ivi_inverse_slant_8x8;
  135. band->dc_transform = ff_ivi_dc_slant_2d;
  136. band->scan = ff_zigzag_direct;
  137. band->transform_size= 8;
  138. break;
  139. case 1:
  140. band->inv_transform = ff_ivi_row_slant8;
  141. band->dc_transform = ff_ivi_dc_row_slant;
  142. band->scan = ff_ivi_vertical_scan_8x8;
  143. band->transform_size= 8;
  144. break;
  145. case 2:
  146. band->inv_transform = ff_ivi_col_slant8;
  147. band->dc_transform = ff_ivi_dc_col_slant;
  148. band->scan = ff_ivi_horizontal_scan_8x8;
  149. band->transform_size= 8;
  150. break;
  151. case 3:
  152. band->inv_transform = ff_ivi_put_pixels_8x8;
  153. band->dc_transform = ff_ivi_put_dc_pixel_8x8;
  154. band->scan = ff_ivi_horizontal_scan_8x8;
  155. band->transform_size= 8;
  156. break;
  157. case 4:
  158. band->inv_transform = ff_ivi_inverse_slant_4x4;
  159. band->dc_transform = ff_ivi_dc_slant_2d;
  160. band->scan = ff_ivi_direct_scan_4x4;
  161. band->transform_size= 4;
  162. break;
  163. }
  164. band->is_2d_trans = band->inv_transform == ff_ivi_inverse_slant_8x8 ||
  165. band->inv_transform == ff_ivi_inverse_slant_4x4;
  166. /* select dequant matrix according to plane and band number */
  167. if (!p) {
  168. quant_mat = (pic_conf.luma_bands > 1) ? i+1 : 0;
  169. } else {
  170. quant_mat = 5;
  171. }
  172. if (band->blk_size == 8) {
  173. if(quant_mat >= 5){
  174. av_log(avctx, AV_LOG_ERROR, "quant_mat %d too large!\n", quant_mat);
  175. return -1;
  176. }
  177. band->intra_base = &ivi5_base_quant_8x8_intra[quant_mat][0];
  178. band->inter_base = &ivi5_base_quant_8x8_inter[quant_mat][0];
  179. band->intra_scale = &ivi5_scale_quant_8x8_intra[quant_mat][0];
  180. band->inter_scale = &ivi5_scale_quant_8x8_inter[quant_mat][0];
  181. } else {
  182. band->intra_base = ivi5_base_quant_4x4_intra;
  183. band->inter_base = ivi5_base_quant_4x4_inter;
  184. band->intra_scale = ivi5_scale_quant_4x4_intra;
  185. band->inter_scale = ivi5_scale_quant_4x4_inter;
  186. }
  187. if (get_bits(&ctx->gb, 2)) {
  188. av_log(avctx, AV_LOG_ERROR, "End marker missing!\n");
  189. return -1;
  190. }
  191. }
  192. }
  193. /* copy chroma parameters into the 2nd chroma plane */
  194. for (i = 0; i < pic_conf.chroma_bands; i++) {
  195. band1 = &ctx->planes[1].bands[i];
  196. band2 = &ctx->planes[2].bands[i];
  197. band2->width = band1->width;
  198. band2->height = band1->height;
  199. band2->mb_size = band1->mb_size;
  200. band2->blk_size = band1->blk_size;
  201. band2->is_halfpel = band1->is_halfpel;
  202. band2->intra_base = band1->intra_base;
  203. band2->inter_base = band1->inter_base;
  204. band2->intra_scale = band1->intra_scale;
  205. band2->inter_scale = band1->inter_scale;
  206. band2->scan = band1->scan;
  207. band2->inv_transform = band1->inv_transform;
  208. band2->dc_transform = band1->dc_transform;
  209. band2->is_2d_trans = band1->is_2d_trans;
  210. band2->transform_size= band1->transform_size;
  211. }
  212. /* reallocate internal structures if needed */
  213. if (blk_size_changed) {
  214. result = ff_ivi_init_tiles(ctx->planes, pic_conf.tile_width,
  215. pic_conf.tile_height);
  216. if (result) {
  217. av_log(avctx, AV_LOG_ERROR,
  218. "Couldn't reallocate internal structures!\n");
  219. return -1;
  220. }
  221. }
  222. if (ctx->gop_flags & 8) {
  223. if (get_bits(&ctx->gb, 3)) {
  224. av_log(avctx, AV_LOG_ERROR, "Alignment bits are not zero!\n");
  225. return -1;
  226. }
  227. if (get_bits1(&ctx->gb))
  228. skip_bits_long(&ctx->gb, 24); /* skip transparency fill color */
  229. }
  230. align_get_bits(&ctx->gb);
  231. skip_bits(&ctx->gb, 23); /* FIXME: unknown meaning */
  232. /* skip GOP extension if any */
  233. if (get_bits1(&ctx->gb)) {
  234. do {
  235. i = get_bits(&ctx->gb, 16);
  236. } while (i & 0x8000);
  237. }
  238. align_get_bits(&ctx->gb);
  239. return 0;
  240. }
  241. /**
  242. * Skip a header extension.
  243. *
  244. * @param[in,out] gb the GetBit context
  245. */
  246. static inline void skip_hdr_extension(GetBitContext *gb)
  247. {
  248. int i, len;
  249. do {
  250. len = get_bits(gb, 8);
  251. for (i = 0; i < len; i++) skip_bits(gb, 8);
  252. } while(len);
  253. }
  254. /**
  255. * Decode Indeo5 picture header.
  256. *
  257. * @param[in,out] ctx ptr to the decoder context
  258. * @param[in] avctx ptr to the AVCodecContext
  259. * @return result code: 0 = OK, -1 = error
  260. */
  261. static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx)
  262. {
  263. if (get_bits(&ctx->gb, 5) != 0x1F) {
  264. av_log(avctx, AV_LOG_ERROR, "Invalid picture start code!\n");
  265. return -1;
  266. }
  267. ctx->prev_frame_type = ctx->frame_type;
  268. ctx->frame_type = get_bits(&ctx->gb, 3);
  269. if (ctx->frame_type >= 5) {
  270. av_log(avctx, AV_LOG_ERROR, "Invalid frame type: %d \n", ctx->frame_type);
  271. return -1;
  272. }
  273. ctx->frame_num = get_bits(&ctx->gb, 8);
  274. if (ctx->frame_type == FRAMETYPE_INTRA) {
  275. ctx->gop_invalid = 1;
  276. if (decode_gop_header(ctx, avctx)) {
  277. av_log(avctx, AV_LOG_ERROR, "Invalid GOP header, skipping frames.\n");
  278. return AVERROR_INVALIDDATA;
  279. }
  280. ctx->gop_invalid = 0;
  281. }
  282. if (ctx->frame_type == FRAMETYPE_INTER_SCAL && !ctx->is_scalable) {
  283. av_log(avctx, AV_LOG_ERROR, "Scalable inter frame in non scaleable stream\n");
  284. ctx->frame_type = FRAMETYPE_INTER;
  285. return AVERROR_INVALIDDATA;
  286. }
  287. if (ctx->frame_type != FRAMETYPE_NULL) {
  288. ctx->frame_flags = get_bits(&ctx->gb, 8);
  289. ctx->pic_hdr_size = (ctx->frame_flags & 1) ? get_bits_long(&ctx->gb, 24) : 0;
  290. ctx->checksum = (ctx->frame_flags & 0x10) ? get_bits(&ctx->gb, 16) : 0;
  291. /* skip unknown extension if any */
  292. if (ctx->frame_flags & 0x20)
  293. skip_hdr_extension(&ctx->gb); /* XXX: untested */
  294. /* decode macroblock huffman codebook */
  295. if (ff_ivi_dec_huff_desc(&ctx->gb, ctx->frame_flags & 0x40, IVI_MB_HUFF, &ctx->mb_vlc, avctx))
  296. return -1;
  297. skip_bits(&ctx->gb, 3); /* FIXME: unknown meaning! */
  298. }
  299. align_get_bits(&ctx->gb);
  300. return 0;
  301. }
  302. /**
  303. * Decode Indeo5 band header.
  304. *
  305. * @param[in,out] ctx ptr to the decoder context
  306. * @param[in,out] band ptr to the band descriptor
  307. * @param[in] avctx ptr to the AVCodecContext
  308. * @return result code: 0 = OK, -1 = error
  309. */
  310. static int decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *band,
  311. AVCodecContext *avctx)
  312. {
  313. int i;
  314. uint8_t band_flags;
  315. band_flags = get_bits(&ctx->gb, 8);
  316. if (band_flags & 1) {
  317. band->is_empty = 1;
  318. return 0;
  319. }
  320. band->data_size = (ctx->frame_flags & 0x80) ? get_bits_long(&ctx->gb, 24) : 0;
  321. band->inherit_mv = band_flags & 2;
  322. band->inherit_qdelta = band_flags & 8;
  323. band->qdelta_present = band_flags & 4;
  324. if (!band->qdelta_present) band->inherit_qdelta = 1;
  325. /* decode rvmap probability corrections if any */
  326. band->num_corr = 0; /* there are no corrections */
  327. if (band_flags & 0x10) {
  328. band->num_corr = get_bits(&ctx->gb, 8); /* get number of correction pairs */
  329. if (band->num_corr > 61) {
  330. av_log(avctx, AV_LOG_ERROR, "Too many corrections: %d\n",
  331. band->num_corr);
  332. return -1;
  333. }
  334. /* read correction pairs */
  335. for (i = 0; i < band->num_corr * 2; i++)
  336. band->corr[i] = get_bits(&ctx->gb, 8);
  337. }
  338. /* select appropriate rvmap table for this band */
  339. band->rvmap_sel = (band_flags & 0x40) ? get_bits(&ctx->gb, 3) : 8;
  340. /* decode block huffman codebook */
  341. if (ff_ivi_dec_huff_desc(&ctx->gb, band_flags & 0x80, IVI_BLK_HUFF, &band->blk_vlc, avctx))
  342. return -1;
  343. band->checksum_present = get_bits1(&ctx->gb);
  344. if (band->checksum_present)
  345. band->checksum = get_bits(&ctx->gb, 16);
  346. band->glob_quant = get_bits(&ctx->gb, 5);
  347. /* skip unknown extension if any */
  348. if (band_flags & 0x20) { /* XXX: untested */
  349. align_get_bits(&ctx->gb);
  350. skip_hdr_extension(&ctx->gb);
  351. }
  352. align_get_bits(&ctx->gb);
  353. return 0;
  354. }
  355. /**
  356. * Decode info (block type, cbp, quant delta, motion vector)
  357. * for all macroblocks in the current tile.
  358. *
  359. * @param[in,out] ctx ptr to the decoder context
  360. * @param[in,out] band ptr to the band descriptor
  361. * @param[in,out] tile ptr to the tile descriptor
  362. * @param[in] avctx ptr to the AVCodecContext
  363. * @return result code: 0 = OK, -1 = error
  364. */
  365. static int decode_mb_info(IVI45DecContext *ctx, IVIBandDesc *band,
  366. IVITile *tile, AVCodecContext *avctx)
  367. {
  368. int x, y, mv_x, mv_y, mv_delta, offs, mb_offset,
  369. mv_scale, blks_per_mb, s;
  370. IVIMbInfo *mb, *ref_mb;
  371. int row_offset = band->mb_size * band->pitch;
  372. mb = tile->mbs;
  373. ref_mb = tile->ref_mbs;
  374. offs = tile->ypos * band->pitch + tile->xpos;
  375. if (!ref_mb &&
  376. ((band->qdelta_present && band->inherit_qdelta) || band->inherit_mv))
  377. return AVERROR_INVALIDDATA;
  378. if (tile->num_MBs != IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size)) {
  379. av_log(avctx, AV_LOG_ERROR, "Allocated tile size %d mismatches parameters %d\n",
  380. tile->num_MBs, IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size));
  381. return AVERROR_INVALIDDATA;
  382. }
  383. /* scale factor for motion vectors */
  384. mv_scale = (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3);
  385. mv_x = mv_y = 0;
  386. for (y = tile->ypos; y < (tile->ypos + tile->height); y += band->mb_size) {
  387. mb_offset = offs;
  388. for (x = tile->xpos; x < (tile->xpos + tile->width); x += band->mb_size) {
  389. mb->xpos = x;
  390. mb->ypos = y;
  391. mb->buf_offs = mb_offset;
  392. if (get_bits1(&ctx->gb)) {
  393. if (ctx->frame_type == FRAMETYPE_INTRA) {
  394. av_log(avctx, AV_LOG_ERROR, "Empty macroblock in an INTRA picture!\n");
  395. return -1;
  396. }
  397. mb->type = 1; /* empty macroblocks are always INTER */
  398. mb->cbp = 0; /* all blocks are empty */
  399. mb->q_delta = 0;
  400. if (!band->plane && !band->band_num && (ctx->frame_flags & 8)) {
  401. mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
  402. IVI_VLC_BITS, 1);
  403. mb->q_delta = IVI_TOSIGNED(mb->q_delta);
  404. }
  405. mb->mv_x = mb->mv_y = 0; /* no motion vector coded */
  406. if (band->inherit_mv && ref_mb){
  407. /* motion vector inheritance */
  408. if (mv_scale) {
  409. mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
  410. mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
  411. } else {
  412. mb->mv_x = ref_mb->mv_x;
  413. mb->mv_y = ref_mb->mv_y;
  414. }
  415. }
  416. } else {
  417. if (band->inherit_mv && ref_mb) {
  418. mb->type = ref_mb->type; /* copy mb_type from corresponding reference mb */
  419. } else if (ctx->frame_type == FRAMETYPE_INTRA) {
  420. mb->type = 0; /* mb_type is always INTRA for intra-frames */
  421. } else {
  422. mb->type = get_bits1(&ctx->gb);
  423. }
  424. blks_per_mb = band->mb_size != band->blk_size ? 4 : 1;
  425. mb->cbp = get_bits(&ctx->gb, blks_per_mb);
  426. mb->q_delta = 0;
  427. if (band->qdelta_present) {
  428. if (band->inherit_qdelta) {
  429. if (ref_mb) mb->q_delta = ref_mb->q_delta;
  430. } else if (mb->cbp || (!band->plane && !band->band_num &&
  431. (ctx->frame_flags & 8))) {
  432. mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
  433. IVI_VLC_BITS, 1);
  434. mb->q_delta = IVI_TOSIGNED(mb->q_delta);
  435. }
  436. }
  437. if (!mb->type) {
  438. mb->mv_x = mb->mv_y = 0; /* there is no motion vector in intra-macroblocks */
  439. } else {
  440. if (band->inherit_mv && ref_mb){
  441. /* motion vector inheritance */
  442. if (mv_scale) {
  443. mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
  444. mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
  445. } else {
  446. mb->mv_x = ref_mb->mv_x;
  447. mb->mv_y = ref_mb->mv_y;
  448. }
  449. } else {
  450. /* decode motion vector deltas */
  451. mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
  452. IVI_VLC_BITS, 1);
  453. mv_y += IVI_TOSIGNED(mv_delta);
  454. mv_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table,
  455. IVI_VLC_BITS, 1);
  456. mv_x += IVI_TOSIGNED(mv_delta);
  457. mb->mv_x = mv_x;
  458. mb->mv_y = mv_y;
  459. }
  460. }
  461. }
  462. s= band->is_halfpel;
  463. if (mb->type)
  464. if ( x + (mb->mv_x >>s) + (y+ (mb->mv_y >>s))*band->pitch < 0 ||
  465. x + ((mb->mv_x+s)>>s) + band->mb_size - 1
  466. + (y+band->mb_size - 1 +((mb->mv_y+s)>>s))*band->pitch > band->bufsize - 1) {
  467. av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mb->mv_x, y*s + mb->mv_y);
  468. return AVERROR_INVALIDDATA;
  469. }
  470. mb++;
  471. if (ref_mb)
  472. ref_mb++;
  473. mb_offset += band->mb_size;
  474. }
  475. offs += row_offset;
  476. }
  477. align_get_bits(&ctx->gb);
  478. return 0;
  479. }
  480. /**
  481. * Switch buffers.
  482. *
  483. * @param[in,out] ctx ptr to the decoder context
  484. */
  485. static void switch_buffers(IVI45DecContext *ctx)
  486. {
  487. switch (ctx->prev_frame_type) {
  488. case FRAMETYPE_INTRA:
  489. case FRAMETYPE_INTER:
  490. ctx->buf_switch ^= 1;
  491. ctx->dst_buf = ctx->buf_switch;
  492. ctx->ref_buf = ctx->buf_switch ^ 1;
  493. break;
  494. case FRAMETYPE_INTER_SCAL:
  495. if (!ctx->inter_scal) {
  496. ctx->ref2_buf = 2;
  497. ctx->inter_scal = 1;
  498. }
  499. FFSWAP(int, ctx->dst_buf, ctx->ref2_buf);
  500. ctx->ref_buf = ctx->ref2_buf;
  501. break;
  502. case FRAMETYPE_INTER_NOREF:
  503. break;
  504. }
  505. switch (ctx->frame_type) {
  506. case FRAMETYPE_INTRA:
  507. ctx->buf_switch = 0;
  508. /* FALLTHROUGH */
  509. case FRAMETYPE_INTER:
  510. ctx->inter_scal = 0;
  511. ctx->dst_buf = ctx->buf_switch;
  512. ctx->ref_buf = ctx->buf_switch ^ 1;
  513. break;
  514. case FRAMETYPE_INTER_SCAL:
  515. case FRAMETYPE_INTER_NOREF:
  516. case FRAMETYPE_NULL:
  517. break;
  518. }
  519. }
  520. static int is_nonnull_frame(IVI45DecContext *ctx)
  521. {
  522. return ctx->frame_type != FRAMETYPE_NULL;
  523. }
  524. /**
  525. * Initialize Indeo5 decoder.
  526. */
  527. static av_cold int decode_init(AVCodecContext *avctx)
  528. {
  529. IVI45DecContext *ctx = avctx->priv_data;
  530. int result;
  531. ff_ivi_init_static_vlc();
  532. /* copy rvmap tables in our context so we can apply changes to them */
  533. memcpy(ctx->rvmap_tabs, ff_ivi_rvmap_tabs, sizeof(ff_ivi_rvmap_tabs));
  534. /* set the initial picture layout according to the basic profile:
  535. there is only one band per plane (no scalability), only one tile (no local decoding)
  536. and picture format = YVU9 */
  537. ctx->pic_conf.pic_width = avctx->width;
  538. ctx->pic_conf.pic_height = avctx->height;
  539. ctx->pic_conf.chroma_width = (avctx->width + 3) >> 2;
  540. ctx->pic_conf.chroma_height = (avctx->height + 3) >> 2;
  541. ctx->pic_conf.tile_width = avctx->width;
  542. ctx->pic_conf.tile_height = avctx->height;
  543. ctx->pic_conf.luma_bands = ctx->pic_conf.chroma_bands = 1;
  544. avcodec_get_frame_defaults(&ctx->frame);
  545. result = ff_ivi_init_planes(ctx->planes, &ctx->pic_conf);
  546. if (result) {
  547. av_log(avctx, AV_LOG_ERROR, "Couldn't allocate color planes!\n");
  548. return -1;
  549. }
  550. ctx->buf_switch = 0;
  551. ctx->inter_scal = 0;
  552. ctx->decode_pic_hdr = decode_pic_hdr;
  553. ctx->decode_band_hdr = decode_band_hdr;
  554. ctx->decode_mb_info = decode_mb_info;
  555. ctx->switch_buffers = switch_buffers;
  556. ctx->is_nonnull_frame = is_nonnull_frame;
  557. avctx->pix_fmt = AV_PIX_FMT_YUV410P;
  558. return 0;
  559. }
  560. AVCodec ff_indeo5_decoder = {
  561. .name = "indeo5",
  562. .type = AVMEDIA_TYPE_VIDEO,
  563. .id = AV_CODEC_ID_INDEO5,
  564. .priv_data_size = sizeof(IVI45DecContext),
  565. .init = decode_init,
  566. .close = ff_ivi_decode_close,
  567. .decode = ff_ivi_decode_frame,
  568. .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 5"),
  569. .capabilities = CODEC_CAP_DR1,
  570. };