2 ** Copyright (c) 2015 Blackmagic Design
4 ** Permission is hereby granted, free of charge, to any person or organization
5 ** obtaining a copy of the software and accompanying documentation covered by
6 ** this license (the "Software") to use, reproduce, display, distribute,
7 ** execute, and transmit the Software, and to prepare derivative works of the
8 ** Software, and to permit third-parties to whom the Software is furnished to
9 ** do so, all subject to the following:
11 ** The copyright notices in the Software and this entire statement, including
12 ** the above license grant, this restriction and the following disclaimer,
13 ** must be included in all copies of the Software, in whole or in part, and
14 ** all derivative works of the Software, unless such copies or derivative
15 ** works are solely in the form of machine-executable object code generated by
16 ** a source language processor.
18 ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 ** FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
21 ** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
22 ** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
23 ** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 ** DEALINGS IN THE SOFTWARE.
28 #ifndef BMD_DECKLINKAPIMODES_H
29 #define BMD_DECKLINKAPIMODES_H
34 #define BMD_CONST __declspec(selectany) static const
36 #define BMD_CONST static const
43 // Interface ID Declarations
45 BMD_CONST REFIID IID_IDeckLinkDisplayModeIterator = /* 9C88499F-F601-4021-B80B-032E4EB41C35 */ {0x9C,0x88,0x49,0x9F,0xF6,0x01,0x40,0x21,0xB8,0x0B,0x03,0x2E,0x4E,0xB4,0x1C,0x35};
46 BMD_CONST REFIID IID_IDeckLinkDisplayMode = /* 3EB2C1AB-0A3D-4523-A3AD-F40D7FB14E78 */ {0x3E,0xB2,0xC1,0xAB,0x0A,0x3D,0x45,0x23,0xA3,0xAD,0xF4,0x0D,0x7F,0xB1,0x4E,0x78};
48 /* Enum BMDDisplayMode - Video display modes */
50 typedef uint32_t BMDDisplayMode;
51 enum _BMDDisplayMode {
55 bmdModeNTSC = /* 'ntsc' */ 0x6E747363,
56 bmdModeNTSC2398 = /* 'nt23' */ 0x6E743233, // 3:2 pulldown
57 bmdModePAL = /* 'pal ' */ 0x70616C20,
58 bmdModeNTSCp = /* 'ntsp' */ 0x6E747370,
59 bmdModePALp = /* 'palp' */ 0x70616C70,
63 bmdModeHD1080p2398 = /* '23ps' */ 0x32337073,
64 bmdModeHD1080p24 = /* '24ps' */ 0x32347073,
65 bmdModeHD1080p25 = /* 'Hp25' */ 0x48703235,
66 bmdModeHD1080p2997 = /* 'Hp29' */ 0x48703239,
67 bmdModeHD1080p30 = /* 'Hp30' */ 0x48703330,
68 bmdModeHD1080i50 = /* 'Hi50' */ 0x48693530,
69 bmdModeHD1080i5994 = /* 'Hi59' */ 0x48693539,
70 bmdModeHD1080i6000 = /* 'Hi60' */ 0x48693630, // N.B. This _really_ is 60.00 Hz.
71 bmdModeHD1080p50 = /* 'Hp50' */ 0x48703530,
72 bmdModeHD1080p5994 = /* 'Hp59' */ 0x48703539,
73 bmdModeHD1080p6000 = /* 'Hp60' */ 0x48703630, // N.B. This _really_ is 60.00 Hz.
77 bmdModeHD720p50 = /* 'hp50' */ 0x68703530,
78 bmdModeHD720p5994 = /* 'hp59' */ 0x68703539,
79 bmdModeHD720p60 = /* 'hp60' */ 0x68703630,
83 bmdMode2k2398 = /* '2k23' */ 0x326B3233,
84 bmdMode2k24 = /* '2k24' */ 0x326B3234,
85 bmdMode2k25 = /* '2k25' */ 0x326B3235,
87 /* DCI Modes (output only) */
89 bmdMode2kDCI2398 = /* '2d23' */ 0x32643233,
90 bmdMode2kDCI24 = /* '2d24' */ 0x32643234,
91 bmdMode2kDCI25 = /* '2d25' */ 0x32643235,
95 bmdMode4K2160p2398 = /* '4k23' */ 0x346B3233,
96 bmdMode4K2160p24 = /* '4k24' */ 0x346B3234,
97 bmdMode4K2160p25 = /* '4k25' */ 0x346B3235,
98 bmdMode4K2160p2997 = /* '4k29' */ 0x346B3239,
99 bmdMode4K2160p30 = /* '4k30' */ 0x346B3330,
100 bmdMode4K2160p50 = /* '4k50' */ 0x346B3530,
101 bmdMode4K2160p5994 = /* '4k59' */ 0x346B3539,
102 bmdMode4K2160p60 = /* '4k60' */ 0x346B3630,
104 /* DCI Modes (output only) */
106 bmdMode4kDCI2398 = /* '4d23' */ 0x34643233,
107 bmdMode4kDCI24 = /* '4d24' */ 0x34643234,
108 bmdMode4kDCI25 = /* '4d25' */ 0x34643235,
112 bmdModeUnknown = /* 'iunk' */ 0x69756E6B
115 /* Enum BMDFieldDominance - Video field dominance */
117 typedef uint32_t BMDFieldDominance;
118 enum _BMDFieldDominance {
119 bmdUnknownFieldDominance = 0,
120 bmdLowerFieldFirst = /* 'lowr' */ 0x6C6F7772,
121 bmdUpperFieldFirst = /* 'uppr' */ 0x75707072,
122 bmdProgressiveFrame = /* 'prog' */ 0x70726F67,
123 bmdProgressiveSegmentedFrame = /* 'psf ' */ 0x70736620
126 /* Enum BMDPixelFormat - Video pixel formats supported for output/input */
128 typedef uint32_t BMDPixelFormat;
129 enum _BMDPixelFormat {
130 bmdFormat8BitYUV = /* '2vuy' */ 0x32767579,
131 bmdFormat10BitYUV = /* 'v210' */ 0x76323130,
132 bmdFormat8BitARGB = 32,
133 bmdFormat8BitBGRA = /* 'BGRA' */ 0x42475241,
134 bmdFormat10BitRGB = /* 'r210' */ 0x72323130, // Big-endian RGB 10-bit per component with SMPTE video levels (64-960). Packed as 2:10:10:10
135 bmdFormat12BitRGB = /* 'R12B' */ 0x52313242, // Big-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
136 bmdFormat12BitRGBLE = /* 'R12L' */ 0x5231324C, // Little-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
137 bmdFormat10BitRGBXLE = /* 'R10l' */ 0x5231306C, // Little-endian 10-bit RGB with SMPTE video levels (64-940)
138 bmdFormat10BitRGBX = /* 'R10b' */ 0x52313062, // Big-endian 10-bit RGB with SMPTE video levels (64-940)
139 bmdFormatH265 = /* 'hev1' */ 0x68657631 // High Efficiency Video Coding (HEVC/h.265)
142 /* Enum BMDDisplayModeFlags - Flags to describe the characteristics of an IDeckLinkDisplayMode. */
144 typedef uint32_t BMDDisplayModeFlags;
145 enum _BMDDisplayModeFlags {
146 bmdDisplayModeSupports3D = 1 << 0,
147 bmdDisplayModeColorspaceRec601 = 1 << 1,
148 bmdDisplayModeColorspaceRec709 = 1 << 2
151 // Forward Declarations
153 class IDeckLinkDisplayModeIterator;
154 class IDeckLinkDisplayMode;
156 /* Interface IDeckLinkDisplayModeIterator - enumerates over supported input/output display modes. */
158 class IDeckLinkDisplayModeIterator : public IUnknown
161 virtual HRESULT Next (/* out */ IDeckLinkDisplayMode **deckLinkDisplayMode) = 0;
164 virtual ~IDeckLinkDisplayModeIterator () {} // call Release method to drop reference count
167 /* Interface IDeckLinkDisplayMode - represents a display mode */
169 class IDeckLinkDisplayMode : public IUnknown
172 virtual HRESULT GetName (/* out */ const char **name) = 0;
173 virtual BMDDisplayMode GetDisplayMode (void) = 0;
174 virtual long GetWidth (void) = 0;
175 virtual long GetHeight (void) = 0;
176 virtual HRESULT GetFrameRate (/* out */ BMDTimeValue *frameDuration, /* out */ BMDTimeScale *timeScale) = 0;
177 virtual BMDFieldDominance GetFieldDominance (void) = 0;
178 virtual BMDDisplayModeFlags GetFlags (void) = 0;
181 virtual ~IDeckLinkDisplayMode () {} // call Release method to drop reference count
192 #endif /* defined(BMD_DECKLINKAPIMODES_H) */