Lines Matching refs:width

140     int height, width, pred_width;
168 /* width of luminance data in pixels (y axis) */
169 width = video->width;
184 /* ypos*width -> row, +x -> column */
185 offset = (int32)ypos * width + xpos;
251 video->mblock->pred_block, width, height,
267 pred_width = width;
271 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
277 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width),
278 pred, width, (pred_width << 1) | round1);
285 pred, width, height, round1, pred_width);
303 pred_width = width;
307 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
312 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width),
313 pred, width, (pred_width << 1) | round1);
320 pred, width, height, round1, pred_width);
338 pred = c_comp + (width << 3);
339 pred_width = width;
343 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
348 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width),
349 pred, width, (pred_width << 1) | round1);
356 pred, width, height, round1, pred_width);
375 pred = c_comp + (width << 3) + 8;
376 pred_width = width;
380 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) &&
385 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width),
386 pred, width, (pred_width << 1) | round1);
393 pred, width, height, round1, pred_width);
410 width, height);
441 /* width of chrominance data in pixels (y axis) */
442 width >>= 1;
470 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) && ypred >= 0 &&
484 pred_width = width;
488 GetPredAdvBTable[ypred&1][xpred&1](cu_prev + (xpred >> 1) + ((ypred >> 1)*width),
489 pred, width, (pred_width << 1) | round1);
499 pred_width = width;
502 GetPredAdvBTable[ypred&1][xpred&1](cv_prev + (xpred >> 1) + ((ypred >> 1)*width),
503 pred, width, (pred_width << 1) | round1);
520 pred_width = width;
525 pred, width, height, round1, pred_width);
535 pred_width = width;
540 pred, width, height, round1, pred_width);
558 int width, width_uv;
568 width = video->width;
569 width_uv = width >> 1;
572 offset = (int32)ypos * width + xpos;
576 /*mby*width + mbx;*/
591 PutSKIPPED_MB(c_comp, c_prev, width);