Lines Matching defs:mb_scan_index
63 uint32_t mb_scan_index[512];
64 int data_offset; // End of mb_scan_index, where macroblocks start
308 // Newer format supports variable mb_scan_index sizes
331 if (ctx->mb_height > FF_ARRAY_ELEMS(ctx->mb_scan_index)) {
333 "mb_height too big (%d > %"SIZE_SPECIFIER").\n", ctx->mb_height, FF_ARRAY_ELEMS(ctx->mb_scan_index));
338 ctx->mb_scan_index[i] = AV_RB32(buf + 0x170 + (i << 2));
340 i, 0x170 + (i << 2), ctx->mb_scan_index[i]);
341 if (buf_size - ctx->data_offset < ctx->mb_scan_index[i]) {
344 ctx->mb_scan_index[i], buf_size - ctx->data_offset);
593 uint32_t offset = ctx->mb_scan_index[rownb];