Lines Matching defs:mb
69 XvMCMacroBlock *mb;
112 mb = ¯oblock_array->macro_blocks[i];
115 fprintf(fp, "x (%d) y (%d) ", mb->x, mb->y);
117 if (mb->macroblock_type & XVMC_MB_TYPE_MOTION_FORWARD)
119 if (mb->macroblock_type & XVMC_MB_TYPE_MOTION_BACKWARD)
121 if (mb->macroblock_type & XVMC_MB_TYPE_PATTERN)
123 if (mb->macroblock_type & XVMC_MB_TYPE_INTRA)
128 if (mb->motion_type & XVMC_PREDICTION_FIELD)
130 else if (mb->motion_type & XVMC_PREDICTION_FRAME)
132 else if (mb->motion_type & XVMC_PREDICTION_DUAL_PRIME)
135 fprintf(fp, "(unknown %d) ", mb->motion_type);
137 if (mb->motion_type & XVMC_PREDICTION_FIELD)
139 else if (mb->motion_type & XVMC_PREDICTION_DUAL_PRIME)
141 else if (mb->motion_type & XVMC_PREDICTION_16x8)
144 fprintf(fp, "(unknown %d) ", mb->motion_type);
147 if (mb->dct_type == XVMC_DCT_TYPE_FRAME)
149 else if (mb->dct_type == XVMC_DCT_TYPE_FIELD)
153 mb->coded_block_pattern);