Lines Matching defs:width
435 const int width = f->avctx->width;
483 init_mv(f, width * 2);
486 for (x = 0; x < width; x += 8)
487 if ((ret = decode_p_block(f, dst + x, src + x, 3, 3, width)) < 0)
489 src += 8 * width;
490 dst += 8 * width;
562 int stride = f->avctx->width;
728 const int width = f->avctx->width;
730 const int mbs = (FFALIGN(width, 16) >> 4) * (FFALIGN(height, 16) >> 4);
742 for (x = 0; x < width; x += 16) {
762 dst[y2 * width + x2] = color[(bits >> index) & 3];
767 dst += 16 * width - x;
776 const int width = f->avctx->width;
823 for (x = 0; x < width; x += 16) {
848 av_assert0(avctx->width % 16 == 0 && avctx->height % 16 == 0);
963 (const uint8_t*)f->frame_buffer, avctx->width * 2,
964 avctx->width * 2, avctx->height);
1002 if((avctx->width % 16) || (avctx->height % 16)) {
1003 av_log(avctx, AV_LOG_ERROR, "unsupported width/height\n");
1007 ret = av_image_check_size(avctx->width, avctx->height, 0, avctx);
1011 f->frame_buffer = av_mallocz(avctx->width * avctx->height * 2);
1012 f->last_frame_buffer = av_mallocz(avctx->width * avctx->height * 2);