Lines Matching defs:cols
54 int rows, cols;
78 cols = buf[3]; /* number of stored macroblock cols */
80 /* buf[5] is number of displayed macroblock cols */
81 if (!rows || !cols) {
82 av_log(s->avctx, AV_LOG_ERROR, "Invalid size %dx%d\n", cols << 4, rows << 4);
87 16*cols != s->avctx->coded_width ||
90 FFALIGN(s->avctx->width, 16) == 16 * cols &&
95 s->avctx->coded_width = 16 * cols;
98 ret = ff_set_dimensions(s->avctx, 16 * cols, 16 * rows);