Subversion Repositories Kolibri OS

Rev

Rev 4103 | Rev 5270 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4103 Rev 5056
Line 260... Line 260...
260
		unsigned int oui;
260
		unsigned int oui;
261
	} any;
261
	} any;
262
	struct hdmi_vendor_infoframe hdmi;
262
	struct hdmi_vendor_infoframe hdmi;
263
};
263
};
Line -... Line 264...
-
 
264
 
-
 
265
/**
-
 
266
 * union hdmi_infoframe - overall union of all abstract infoframe representations
-
 
267
 * @any: generic infoframe
-
 
268
 * @avi: avi infoframe
-
 
269
 * @spd: spd infoframe
-
 
270
 * @vendor: union of all vendor infoframes
-
 
271
 * @audio: audio infoframe
-
 
272
 *
-
 
273
 * This is used by the generic pack function. This works since all infoframes
-
 
274
 * have the same header which also indicates which type of infoframe should be
-
 
275
 * packed.
264
 
276
 */
265
union hdmi_infoframe {
277
union hdmi_infoframe {
266
	struct hdmi_any_infoframe any;
278
	struct hdmi_any_infoframe any;
267
	struct hdmi_avi_infoframe avi;
279
	struct hdmi_avi_infoframe avi;
268
	struct hdmi_spd_infoframe spd;
280
	struct hdmi_spd_infoframe spd;