/* * CEA Short Audio Descriptor data
*/ struct snd_cea_sad { int channels; int format; /* (format == 0) indicates invalid SAD */ int rates; int sample_bits; /* for LPCM */ int max_bitrate; /* for AC3...ATRAC */ int profile; /* for WMAPRO */
};
/* * ELD: EDID Like Data
*/ struct snd_parsed_hdmi_eld { /* * all fields will be cleared before updating ELD
*/ int baseline_len; int eld_ver; int cea_edid_ver; char monitor_name[ELD_MAX_MNL + 1]; int manufacture_id; int product_id;
u64 port_id; int support_hdcp; int support_ai; int conn_type; int aud_synch_delay; int spk_alloc; int sad_count; struct snd_cea_sad sad[ELD_MAX_SAD];
};
int snd_pcm_hw_constraint_eld(struct snd_pcm_runtime *runtime, void *eld);
int snd_parse_eld(struct device *dev, struct snd_parsed_hdmi_eld *e, constunsignedchar *buf, int size); void snd_show_eld(struct device *dev, struct snd_parsed_hdmi_eld *e);
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.