/* * struct fract - Represents a fraction * @numerator: Store the numerator part of the fraction * @denominator: Store the denominator part of the fraction
*/ struct fract {
u8 numerator;
u8 denominator;
};
/* * struct camss_format_info - ISP media bus format information * @code: V4L2 media bus format code * @mbus_bpp: Media bus bits per pixel * @pixelformat: V4L2 pixel format FCC identifier * @planes: Number of planes * @hsub: Horizontal subsampling (for each plane) * @vsub: Vertical subsampling (for each plane) * @bpp: Bits per pixel when stored in memory (for each plane)
*/ struct camss_format_info {
u32 code;
u32 mbus_bpp;
u32 pixelformat;
u8 planes; struct fract hsub[3]; struct fract vsub[3]; unsignedint bpp[3];
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.