summaryrefslogtreecommitdiffstats
path: root/libavcodec/ivi_common.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2012-05-19 13:08:51 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2012-05-20 11:19:48 +0200
commita6e4ac40a62930d3c90f869990f96fedb9a5d654 (patch)
tree385eea76fe3091769b1477595250806522e13e66 /libavcodec/ivi_common.c
parentfe7a37c36febd71576cbefc385d995a8d6e444e7 (diff)
downloadffmpeg-streaming-a6e4ac40a62930d3c90f869990f96fedb9a5d654.zip
ffmpeg-streaming-a6e4ac40a62930d3c90f869990f96fedb9a5d654.tar.gz
indeo: track tile macroblock size
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r--libavcodec/ivi_common.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c
index b66dde5..581e7a5 100644
--- a/libavcodec/ivi_common.c
+++ b/libavcodec/ivi_common.c
@@ -287,6 +287,7 @@ av_cold int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_hei
for (x = 0; x < band->width; x += t_width) {
tile->xpos = x;
tile->ypos = y;
+ tile->mb_size = band->mb_size;
tile->width = FFMIN(band->width - x, t_width);
tile->height = FFMIN(band->height - y, t_height);
tile->is_empty = tile->data_size = 0;
@@ -670,6 +671,11 @@ static int decode_band(IVI45DecContext *ctx, int plane_num,
for (t = 0; t < band->num_tiles; t++) {
tile = &band->tiles[t];
+ if (tile->mb_size != band->mb_size) {
+ av_log(avctx, AV_LOG_ERROR, "MB sizes mismatch: %d vs. %d\n",
+ band->mb_size, tile->mb_size);
+ return AVERROR_INVALIDDATA;
+ }
tile->is_empty = get_bits1(&ctx->gb);
if (tile->is_empty) {
ff_ivi_process_empty_tile(avctx, band, tile,
OpenPOWER on IntegriCloud