Home | History | Annotate | Download | only in bktr

Lines Matching refs:geo

1314 	struct meteor_geomet	*geo;
1705 geo = (struct meteor_geomet *) arg;
1709 if ((geo->oformat & METEOR_GEO_ODD_ONLY) &&
1710 (geo->oformat & METEOR_GEO_EVEN_ONLY)) {
1717 if (geo->oformat & METEOR_GEO_ODD_ONLY)
1721 if (geo->oformat & METEOR_GEO_EVEN_ONLY)
1726 if (geo->columns <= 0) {
1729 bktr_name(bktr), geo->columns);
1732 else if ((geo->columns & 0x3fe) != geo->columns) {
1735 bktr_name(bktr), geo->columns);
1739 if (geo->rows <= 0) {
1742 bktr_name(bktr), geo->rows);
1745 else if (((geo->rows & 0x7fe) != geo->rows) ||
1746 ((geo->oformat & METEOR_GEO_FIELD_MASK) &&
1747 ((geo->rows & 0x3fe) != geo->rows))) {
1750 bktr_name(bktr), geo->rows);
1754 if (geo->frames > 32) {
1769 if ((temp=(geo->rows * geo->columns * geo->frames * 2))) {
1770 if (geo->oformat & METEOR_GEO_RGB24) temp = temp * 2;
1773 if (geo->frames > 1) temp += PAGE_SIZE;
1814 bktr->rows = geo->rows;
1815 bktr->cols = geo->columns;
1816 bktr->frames = geo->frames;
1821 switch (geo->oformat & METEOR_GEO_OUTPUT_MASK) {
1831 if (geo->oformat & METEOR_GEO_YUV_12)