Lines Matching defs:rows
54 int rows, cols;
77 rows = buf[2]; /* number of stored macroblock rows */
79 /* buf[4] is number of displayed macroblock rows */
81 if (!rows || !cols) {
82 av_log(s->avctx, AV_LOG_ERROR, "Invalid size %dx%d\n", cols << 4, rows << 4);
88 16*rows != s->avctx->coded_height) {
91 FFALIGN(s->avctx->height, 16) == 16 * rows) {
96 s->avctx->coded_height = 16 * rows;
98 ret = ff_set_dimensions(s->avctx, 16 * cols, 16 * rows);