The ToiVideoOutputConfigurationSession interface allows session based changes of video output settings. If a display is (dis)connected or changed during a session (see ToiVideoOutputConfigurationDisplayChangedEvent ) while ToiVideoOutputConfigurationSession::apply() is not called for outstanding changes, the session must be either cleared or released. A call to ToiVideoOutputConfigurationSession::apply() in other cases result in undefined behavior. Releasing the session instance has the benefit of a new revert-point that matches the fall-back settings of the new display.
import "ToiVideoOutputConfigurationSession.idl";
typedef long ToiVideoOutputConfiguration::TToiActiveFormatDescriptor [inherited] |
Aspect ratio and position of the active area within the video frame.
typedef long ToiVideoOutputConfiguration::TToiAspectRatio [inherited] |
Aspect ratio of display.
typedef long ToiVideoOutputConfiguration::TToiColorSpace [inherited] |
Enumeration of video color spaces.
typedef sequence< TToiColorSpace > ToiVideoOutputConfiguration::TToiColorSpaceSequence [inherited] |
Sequence of TToiColorSpace
typedef long ToiVideoOutputConfiguration::TToiColorSystem [inherited] |
Enumeration of video color systems.
typedef sequence< TToiColorSystem > ToiVideoOutputConfiguration::TToiColorSystemSequence [inherited] |
Sequence of ToiVideoOutputConfiguration::TToiColorSystem
typedef long ToiVideoOutputConfiguration::TToiDisplayStatus [inherited] |
The display status information.
typedef long ToiVideoOutputConfiguration::TToiScartMode [inherited] |
Enumerations of SCART video modes.
typedef sequence< TToiScartMode > ToiVideoOutputConfiguration::TToiScartModeSequence [inherited] |
Sequence of ToiVideoOutputConfiguration::TToiScartMode.
typedef long ToiVideoOutputConfiguration::TToiValueMode [inherited] |
Generic values for enabling and disabling different features.
typedef sequence< TToiValueMode > ToiVideoOutputConfiguration::TToiValueModeSequence [inherited] |
Sequence of ToiVideoOutputConfiguration::TToiValueMode
typedef long ToiVideoOutputConfiguration::TToiVideoConnectionType [inherited] |
Enumeration of video connection types.
typedef long ToiVideoOutputConfiguration::TToiVideoMode [inherited] |
Enumeration of video modes.
typedef sequence< TToiVideoMode > ToiVideoOutputConfiguration::TToiVideoModeSequence [inherited] |
Sequence of ToiVideoOutputConfiguration::TToiVideoMode
typedef unsigned long ToiVideoOutputConfiguration::TToiVideoOutputId [inherited] |
Video output identifier.
typedef sequence< TToiVideoOutputId > ToiVideoOutputConfiguration::TToiVideoOutputIdSequence [inherited] |
List of video output identifiers.
typedef long ToiVideoOutputConfiguration::TToiVideoOutputType [inherited] |
Enumeration of video output types.
void ToiEventTarget::addEventListener | ( | in long | type, | |
in ToiEventListener | listener | |||
) | raises (TToiInvalidArgumentException) [inherited] |
This method registers an event listener for a specific event. Multiple listeners can be added for the same event. Events are broadcast to all registered listeners.
type | The event type of the event to subscribe to. | |
listener | The JavaScript function that will receive events. |
TInvalidArgumentException | Raised if the event type is not supported by this object or if the listener is not a valid JavaScript function. This exception is also raised if the application calls addEventListener with the same combination of type and listener twice. |
void ToiVideoOutputConfigurationSession::apply | ( | ) | raises (TToiOperationNotSupportedException) |
Applies the changes made in the configuration session and makes the changes permanent.
TToiOperationNotSupportedException | Raised if apply cannot be performed. |
void ToiVideoOutputConfigurationSession::clear | ( | ) |
Clears this configuration session to a clean state.
TToiColorSystem ToiVideoOutputConfiguration::getColorSystem | ( | ) | [inherited] |
Get current color system.
colorSystem | Current color system. |
TToiColorSystemSequence ToiVideoOutputConfiguration::getColorSystems | ( | ) | [inherited] |
Get supported color systems.
colorSystems | Supported color systems. |
ToiVideoOutputConfigurationDisplayInfo ToiVideoOutputConfiguration::getDisplayInfo | ( | in TToiVideoOutputId | outputId | ) | raises (TToiInvalidArgumentException) [inherited] |
Returns information about the display connected to a video output. This is primarily used for HDMI outputs that may receive EDID information. It is possible to override capabilities of a display using ToiVideoOutputConfigurationSession::setDisplayInfo(). If there are no overrides, ToiVideoOutputConfiguration::getDisplayInfo() returns information from the EDID in the case of HDMI and default values for other outputs. If overrides have been set, these are returned instead.
outputId | Video output identifier. |
info | Information for available displays. |
ToiVideoOutputConfigurationVideoOutputCapabilityInfo ToiVideoOutputConfiguration::getVideoOutputCapabilityInfo | ( | in TToiVideoOutputId | outputId | ) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) [inherited] |
Get capability information about a video output.
outputId | Video output identifier. |
info | The video output capability information. |
TToiOperationNotSupportedException | Raised if outputs can not be listed. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
ToiVideoOutputConfigurationVideoOutputInfo ToiVideoOutputConfiguration::getVideoOutputInfo | ( | in TToiVideoOutputId | outputId | ) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) [inherited] |
Get information about current settings for a video output.
outputId | Video output identifier. |
info | The video output information. |
TToiOperationNotSupportedException | Raised if outputs can not be listed. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
TToiVideoOutputIdSequence ToiVideoOutputConfiguration::getVideoOutputs | ( | ) | [inherited] |
Returns available video outputs.
identifiers | List of video output identifiers. |
void ToiVideoOutputConfigurationSession::releaseInstance | ( | ) |
This function releases the resources used by this instance and ends the configuration session. If ToiVideoOutputConfigurationSession::apply() has not been called, the session configuration is lost. When this function returns all observers has also been released.
void ToiEventTarget::removeEventListener | ( | in long | type, | |
in ToiEventListener | listener | |||
) | raises (TToiInvalidArgumentException) [inherited] |
This method removes an event listener for a specific event.
type | The event type of the event to remove the listener from. | |
listener | The JavaScript function that was previously added as an event listener. |
TInvalidArgumentException | Raised if the event type is not supported by this object or if the listener is not a valid JavaScript function. This exception is also raised if the listener had not previously been added. |
void ToiVideoOutputConfigurationSession::resetDisplayInfo | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId | ) |
Resets display information that has been overridden using ToiVideoOutputConfigurationSession::setDisplayInfo(). The overridden values are reset to values retrieved from the EDID if one is available, otherwise default values.
outputId | Video output identifier. |
void ToiVideoOutputConfigurationSession::revert | ( | ) | raises (TToiOperationNotSupportedException) |
Reverts a configuration session to the state it had when first being created, even if changes have been applied. The reverted configuration is not applied until ToiVideoOutputConfigurationSession::apply() is called.
TToiOperationNotSupportedException | Raised if a revert cannot be performed. |
void ToiVideoOutputConfigurationSession::setColorSpace | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId, | |
in ToiVideoOutputConfiguration::TToiColorSpace | colorSpace | |||
) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) |
Configures the color space of the video.
outputId | Output identifier. | |
colorSpace | The new color space. |
TToiOperationNotSupportedException | Raised if output can not be set. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
void ToiVideoOutputConfigurationSession::setColorSystem | ( | in ToiVideoOutputConfiguration::TToiColorSystem | colorSystem | ) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) |
Set color system, e.g. NTSC or PAL.
colorSystem | Color system setting. |
TToiOperationNotSupportedException | Raised if color system can not be changed. | |
TToiInvalidArgumentException | Raised if colorSystemSetting not is supported. |
void ToiVideoOutputConfigurationSession::setDefaultVideoMode | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId, | |
in ToiVideoOutputConfiguration::TToiVideoMode | mode | |||
) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) |
Configures the default video output mode. This will be used when no adaptive video mode rules are applicable.
outputId | Output identifier. | |
mode | The new output mode. |
TToiOperationNotSupportedException | Raised if output can not be set. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
void ToiVideoOutputConfigurationSession::setDisplayInfo | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId, | |
in ToiVideoOutputConfiguration::TToiVideoModeSequence | modes, | |||
in ToiVideoOutputConfiguration::TToiAspectRatio | aspectRatio | |||
) | raises (TToiInvalidArgumentException) |
Sets information about the display connected to a video output. This is primarily used to give information about displays that cannot provide this information themselves, but can also be used to override the video output capabilites of a display, e.g. if a TV set supports other settings than the EDID indicates.
outputId | Video output identifier. | |
modes | The supported video modes. | |
aspectRatio | The aspect ratio of the display. |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
void ToiVideoOutputConfigurationSession::setDviMode | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId, | |
in ToiVideoOutputConfiguration::TToiValueMode | mode | |||
) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) |
Sets the DVI mode for a video output. Only supported for HDMI outputs.
outputId | Output identifier. | |
mode | The new DVI mode. |
TToiOperationNotSupportedException | Raised if output can not be set. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
void ToiVideoOutputConfigurationSession::setScartLoopThroughMode | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId, | |
in ToiVideoOutputConfiguration::TToiValueMode | mode | |||
) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) |
Sets the SCART standby loop through mode for a video output. Only supported for SCART outputs.
outputId | Output identifier. | |
mode | The new SCART standby loop through mode. |
TToiOperationNotSupportedException | Raised if output can not be set. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
void ToiVideoOutputConfigurationSession::setScartMode | ( | in ToiVideoOutputConfiguration::TToiVideoOutputId | outputId, | |
in ToiVideoOutputConfiguration::TToiScartMode | mode | |||
) | raises (TToiOperationNotSupportedException, TToiInvalidArgumentException) |
Sets the SCART mode for a video output. Only supported for SCART outputs.
outputId | Output identifier. | |
mode | The new SCART mode. |
TToiOperationNotSupportedException | Raised if output can not be set. | |
TToiInvalidArgumentException | Raised if outputId is an invalid output. |
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_14_9_CENTRE = 7 [inherited] |
The active format descriptor is 14:9 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_14_9_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_14_9_TOP = 2 [inherited] |
The active format descriptor is 14:9 top.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_14_9_TOP.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_16_9_CENTRE = 6 [inherited] |
The active format descriptor is 16:9 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_16_9_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_16_9_SHOOT_AND_PROTECT_14_9_CENTRE = 9 [inherited] |
The active format descriptor is 16:9 with shoot and protect 14:9 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_16_9_SHOOT_AND_PROTECT_14_9_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_16_9_SHOOT_AND_PROTECT_4_3_CENTRE = 10 [inherited] |
The active format descriptor is 16:9 with shoot and protect 4:3 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_16_9_SHOOT_AND_PROTECT_4_3_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_16_9_TOP = 1 [inherited] |
The active format descriptor is 16:9 top.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_16_9_TOP.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_4_3_CENTRE = 5 [inherited] |
The active format descriptor is 4:3 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_4_3_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_4_3_SHOOT_AND_PROTECT_14_9_CENTRE = 8 [inherited] |
The active format descriptor is 4:3 with shoot and protect 14:9 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_4_3_SHOOT_AND_PROTECT_14_9_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_MORE_THAN_16_9_CENTRE = 3 [inherited] |
The active format descriptor is > 16:9 centre.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_MORE_THAN_16_9_CENTRE.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_SAME_AS_CODED = 4 [inherited] |
The active format descriptor is same as coded.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_SAME_AS_CODED.
const TToiActiveFormatDescriptor ToiVideoOutputConfiguration::ACTIVE_FORMAT_UNKNOWN = 0 [inherited] |
The active format descriptor is not known.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ACTIVE_FORMAT_UNKNOWN.
const TToiColorSpace ToiVideoOutputConfiguration::ANALOG_COLOR_SPACE_YPBPR = 5 [inherited] |
YPBPR color space. Analog color space used for analog compoent video
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ANALOG_COLOR_SPACE_YPBPR.
const TToiAspectRatio ToiVideoOutputConfiguration::ASPECT_RATIO_16_10 = 3 [inherited] |
Aspect ratio is 16:10
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ASPECT_RATIO_16_10.
const TToiAspectRatio ToiVideoOutputConfiguration::ASPECT_RATIO_16_9 = 2 [inherited] |
Aspect ratio is 16:9 (widescreen).
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ASPECT_RATIO_16_9.
const TToiAspectRatio ToiVideoOutputConfiguration::ASPECT_RATIO_4_3 = 1 [inherited] |
Aspect ratio is 4:3.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ASPECT_RATIO_4_3.
const TToiAspectRatio ToiVideoOutputConfiguration::ASPECT_RATIO_UNKNOWN = 0 [inherited] |
Aspect ratio is not known.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ASPECT_RATIO_UNKNOWN.
const TToiColorSystem ToiVideoOutputConfiguration::COLOR_SYSTEM_NTSC_J = 1 [inherited] |
This mode is similar to NTSC-M except there is no blanking pedestal. It is the analog system broadcast in Japan.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.COLOR_SYSTEM_NTSC_J.
const TToiColorSystem ToiVideoOutputConfiguration::COLOR_SYSTEM_NTSC_M = 0 [inherited] |
This is the standard 525i60 NTSC system, broadcast in the United States.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.COLOR_SYSTEM_NTSC_M.
const TToiColorSystem ToiVideoOutputConfiguration::COLOR_SYSTEM_PAL_B = 2 [inherited] |
This is the standard 625i50 PAL system, broadcast in most European countries. It uses a 4.43 MHz color subcarrier. This value should also be used for PAL D, G, H, I and K systems since the baseband video signal is identical for all of them.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.COLOR_SYSTEM_PAL_B.
const TToiColorSystem ToiVideoOutputConfiguration::COLOR_SYSTEM_PAL_M = 3 [inherited] |
This is a hybrid 525i60 PAL system, broadcast in Brazil. It uses a 3.58 MHz color subcarrier.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.COLOR_SYSTEM_PAL_M.
const TToiColorSystem ToiVideoOutputConfiguration::COLOR_SYSTEM_PAL_N = 4 [inherited] |
This is a 625i50 PAL system with a 3.58 MHz color subcarrier. It is broadcast in some countries in Latin America, such as Paraguay and Uruguay.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.COLOR_SYSTEM_PAL_N.
const TToiColorSystem ToiVideoOutputConfiguration::COLOR_SYSTEM_PAL_NC = 5 [inherited] |
This is a 625i50 PAL system with a 3.58 MHz color subcarrier and an increased black level on lines outside the VBI. Also known as PAL Combination N and is broadcast in some countries in Latin America, such as Argentina.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.COLOR_SYSTEM_PAL_NC.
const TToiColorSpace ToiVideoOutputConfiguration::DIGITAL_COLOR_SPACE_SRGB = 1 [inherited] |
SRGB color space.This is the most common color space for HDMI video.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DIGITAL_COLOR_SPACE_SRGB.
const TToiColorSpace ToiVideoOutputConfiguration::DIGITAL_COLOR_SPACE_XVYCC = 4 [inherited] |
XVYCC color space. A futuristic color space that is mentioned in the HDMI standard but rarely used. It is here for the sake of completeness as no STB supports this yet.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DIGITAL_COLOR_SPACE_XVYCC.
const TToiColorSpace ToiVideoOutputConfiguration::DIGITAL_COLOR_SPACE_YCBCR_422 = 3 [inherited] |
YCBR422 color space. This is a subsampled version of the above. The chroma components are sampled at half the luminance component thus creating a less accurate but more bandwidth friendly signal.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DIGITAL_COLOR_SPACE_YCBCR_422.
const TToiColorSpace ToiVideoOutputConfiguration::DIGITAL_COLOR_SPACE_YCBCR_444 = 2 [inherited] |
YCBR444 color space. This color space represents the full range of the component signal. All components have the same sampling rate so there is no chroma subsampling.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DIGITAL_COLOR_SPACE_YCBCR_444.
const TToiDisplayStatus ToiVideoOutputConfiguration::DISPLAY_STATUS_CONNECTED = 1 [inherited] |
Display is connected and capabilities are known.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DISPLAY_STATUS_CONNECTED.
const TToiDisplayStatus ToiVideoOutputConfiguration::DISPLAY_STATUS_CONNECTED_CAPABILITIES_UNKNOWN = 2 [inherited] |
Display is connected but capabilities are unknown or invalid.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DISPLAY_STATUS_CONNECTED_CAPABILITIES_UNKNOWN.
const TToiDisplayStatus ToiVideoOutputConfiguration::DISPLAY_STATUS_DISCONNECTED = 3 [inherited] |
Display is not connected.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DISPLAY_STATUS_DISCONNECTED.
const TToiDisplayStatus ToiVideoOutputConfiguration::DISPLAY_STATUS_UNKNOWN = 0 [inherited] |
Display status is unknown.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.DISPLAY_STATUS_UNKNOWN.
const TToiColorSpace ToiVideoOutputConfiguration::NO_COLOR_SPACE = 0 [inherited] |
No color space.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.NO_COLOR_SPACE.
const TToiScartMode ToiVideoOutputConfiguration::NO_SCART_MODE = 0 [inherited] |
Used when setting is not applicable.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.NO_SCART_MODE.
const TToiValueMode ToiVideoOutputConfiguration::NO_VALUE_MODE = 0 [inherited] |
N/A value
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.NO_VALUE_MODE.
const TToiVideoMode ToiVideoOutputConfiguration::NO_VIDEO_MODE = 0 [inherited] |
This is the value used for turning off an output.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.NO_VIDEO_MODE.
const long ToiVideoOutputConfiguration::ON_COLOR_SYSTEM_CHANGED = 3602 [inherited] |
This is an Event identifier for ToiVideoOutputConfigurationColorSystemChangedEvent.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ON_COLOR_SYSTEM_CHANGED.
const long ToiVideoOutputConfiguration::ON_DISPLAY_CHANGED = 3601 [inherited] |
This is an Event identifier for ToiVideoOutputConfigurationDisplayChangedEvent.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ON_DISPLAY_CHANGED.
const long ToiVideoOutputConfiguration::ON_VIDEO_OUTPUT_SETTINGS_CHANGED = 3600 [inherited] |
This is an Event identifier for ToiVideoOutputConfigurationVideoOutputSettingsChangedEvent.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.ON_VIDEO_OUTPUT_SETTINGS_CHANGED.
const TToiScartMode ToiVideoOutputConfiguration::SCART_MODE_CVBS = 1 [inherited] |
Output only composite video on SCART.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.SCART_MODE_CVBS.
const TToiScartMode ToiVideoOutputConfiguration::SCART_MODE_RGB_CVBS = 3 [inherited] |
Output RGB component video as well as composite video. The composite signal is used for timing only.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.SCART_MODE_RGB_CVBS.
const TToiScartMode ToiVideoOutputConfiguration::SCART_MODE_YC = 2 [inherited] |
Output separate luminance and chrominance signals, i.e. S-video. Note that displays must be manually configured to receive S-video since it is not possible to signal the S-video format in the SCART connector.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.SCART_MODE_YC.
const TToiValueMode ToiVideoOutputConfiguration::VALUE_MODE_DISABLED = 2 [inherited] |
Value that indicates disabled feature
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VALUE_MODE_DISABLED.
const TToiValueMode ToiVideoOutputConfiguration::VALUE_MODE_ENABLED = 1 [inherited] |
Value that indicates enabled feature
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VALUE_MODE_ENABLED.
const TToiVideoConnectionType ToiVideoOutputConfiguration::VIDEO_CONNECTION_TYPE_COMPONENT = 1 [inherited] |
Component connection.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_CONNECTION_TYPE_COMPONENT.
const TToiVideoConnectionType ToiVideoOutputConfiguration::VIDEO_CONNECTION_TYPE_COMPOSITE = 3 [inherited] |
Composite connection.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_CONNECTION_TYPE_COMPOSITE.
const TToiVideoConnectionType ToiVideoOutputConfiguration::VIDEO_CONNECTION_TYPE_HDMI = 0 [inherited] |
HDMI connection.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_CONNECTION_TYPE_HDMI.
const TToiVideoConnectionType ToiVideoOutputConfiguration::VIDEO_CONNECTION_TYPE_RF = 5 [inherited] |
RF connection.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_CONNECTION_TYPE_RF.
const TToiVideoConnectionType ToiVideoOutputConfiguration::VIDEO_CONNECTION_TYPE_SCART = 2 [inherited] |
SCART connection.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_CONNECTION_TYPE_SCART.
const TToiVideoConnectionType ToiVideoOutputConfiguration::VIDEO_CONNECTION_TYPE_SVIDEO = 4 [inherited] |
S-video connection.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_CONNECTION_TYPE_SVIDEO.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080I50 = 7 [inherited] |
Interlaced scan video mode with 1080 active lines and 50Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080I50.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080I60 = 8 [inherited] |
Interlaced scan video mode with 1080 active lines and 60Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080I60.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P23976 = 9 [inherited] |
Progressive scan video mode with 1080 active lines and 23.976Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P23976.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P24 = 10 [inherited] |
Progressive scan video mode with 1080 active lines and 24Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P24.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P25 = 11 [inherited] |
Progressive scan video mode with 1080 active lines and 25Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P25.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P29970 = 12 [inherited] |
Progressive scan video mode with 1080 active lines and 29.970Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P29970.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P30 = 13 [inherited] |
Progressive scan video mode with 1080 active lines and 30Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P30.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P50 = 14 [inherited] |
Progressive scan video mode with 1080 active lines and 50Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P50.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P59940 = 15 [inherited] |
Progressive scan video mode with 1080 active lines and 59.940Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P59940.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_1080P60 = 16 [inherited] |
Progressive scan video mode with 1080 active lines and 60Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_1080P60.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_480I60 = 1 [inherited] |
Interlaced scan video mode with 480 active lines and 60Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_480I60.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_480P60 = 3 [inherited] |
Progressive scan video mode with 480 active lines and 60Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_480P60.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_576I50 = 2 [inherited] |
Interlaced scan video mode with 576 active lines and 50Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_576I50.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_576P50 = 4 [inherited] |
Progressive scan video mode with 576 active lines and 50Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_576P50.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_720P50 = 5 [inherited] |
Progressive scan video mode with 720 active lines and 50Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_720P50.
const TToiVideoMode ToiVideoOutputConfiguration::VIDEO_MODE_720P60 = 6 [inherited] |
Progressive scan video mode with 720 active lines and 60Hz vertical frequency.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_MODE_720P60.
const TToiVideoOutputType ToiVideoOutputConfiguration::VIDEO_OUTPUT_TYPE_HD = 0 [inherited] |
Output is in HD.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_OUTPUT_TYPE_HD.
const TToiVideoOutputType ToiVideoOutputConfiguration::VIDEO_OUTPUT_TYPE_SD = 1 [inherited] |
Output is in SD.
This constant can also be accessed from toi.consts.ToiVideoOutputConfiguration.VIDEO_OUTPUT_TYPE_SD.