Confirmed users
220
edits
| Line 52: | Line 52: | ||
=== Specific Port Interfaces === | === Specific Port Interfaces === | ||
==== A/V ==== | ==== A/V ==== | ||
enum AVVideoType { "composite", "component | enum AVVideoType { "composite", "component" }; | ||
interface AVInputPort : InputPort { | interface AVInputPort : InputPort { | ||
sequence<AVVideoType> | sequence<AVVideoType> getSupportedAVVideoTypes (); | ||
} | } | ||
==== HDMI/DisplayPort ==== | ==== HDMI/DisplayPort ==== | ||
enum HDMIPictureQuality { "xvycc", "colorymetory", "photo-graphics" }; | enum HDMIPictureQuality { "xvycc", "colorymetory", "photo-graphics" }; | ||
interface HDMIInputPort : InputPort { | interface HDMIInputPort : InputPort { | ||
readonly attribute HDMIPictureQuality? pictureQuality; | readonly attribute HDMIPictureQuality? pictureQuality; | ||
} | } | ||