MFVideoLighting Enumeration

Describes the optimal lighting for viewing a particular set of video content.

Syntax

typedef enum _MFVideoLighting
{
    MFVideoLighting_Unknown = 0,
    MFVideoLighting_bright = 1,
    MFVideoLighting_office = 2,
    MFVideoLighting_dim = 3,
    MFVideoLighting_dark = 4,
    MFVideoLighting_Last = (MFVideoLighting_dark+1),
    MFVideoLighting_ForceDWORD = 0x7fffffff
} MFVideoLighting;  

Constants

Constant Description
MFVideoLighting_Unknown The optimal lighting is unknown.
MFVideoLighting_bright Bright lighting; for example, outdoors.
MFVideoLighting_office Medium brightness; for example, normal office lighting.
MFVideoLighting_dim Dim; for example, a living room with a television and additional low lighting.
MFVideoLighting_dark Dark; for example, a movie theater.
MFVideoLighting_Last Reserved.
MFVideoLighting_ForceDWORD Reserved. This member forces the enumeration type to compile as a DWORD value.

Remarks

This enumeration is used with the MF_MT_VIDEO_LIGHTING attribute.

Requirements

Header: Declared in mfobjects.h.