DeckLinkAPIModes.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /* -LICENSE-START-
  2. ** Copyright (c) 2016 Blackmagic Design
  3. **
  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:
  10. **
  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.
  17. **
  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.
  25. ** -LICENSE-END-
  26. */
  27. #ifndef BMD_DECKLINKAPIMODES_H
  28. #define BMD_DECKLINKAPIMODES_H
  29. #ifndef BMD_CONST
  30. #if defined(_MSC_VER)
  31. #define BMD_CONST __declspec(selectany) static const
  32. #else
  33. #define BMD_CONST static const
  34. #endif
  35. #endif
  36. #ifndef BMD_PUBLIC
  37. #define BMD_PUBLIC
  38. #endif
  39. // Type Declarations
  40. // Interface ID Declarations
  41. 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};
  42. 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};
  43. /* Enum BMDDisplayMode - Video display modes */
  44. typedef uint32_t BMDDisplayMode;
  45. enum _BMDDisplayMode {
  46. /* SD Modes */
  47. bmdModeNTSC = 'ntsc',
  48. bmdModeNTSC2398 = 'nt23', // 3:2 pulldown
  49. bmdModePAL = 'pal ',
  50. bmdModeNTSCp = 'ntsp',
  51. bmdModePALp = 'palp',
  52. /* HD 1080 Modes */
  53. bmdModeHD1080p2398 = '23ps',
  54. bmdModeHD1080p24 = '24ps',
  55. bmdModeHD1080p25 = 'Hp25',
  56. bmdModeHD1080p2997 = 'Hp29',
  57. bmdModeHD1080p30 = 'Hp30',
  58. bmdModeHD1080p50 = 'Hp50',
  59. bmdModeHD1080p5994 = 'Hp59',
  60. bmdModeHD1080p6000 = 'Hp60', // N.B. This _really_ is 60.00 Hz.
  61. bmdModeHD1080i50 = 'Hi50',
  62. bmdModeHD1080i5994 = 'Hi59',
  63. bmdModeHD1080i6000 = 'Hi60', // N.B. This _really_ is 60.00 Hz.
  64. /* HD 720 Modes */
  65. bmdModeHD720p50 = 'hp50',
  66. bmdModeHD720p5994 = 'hp59',
  67. bmdModeHD720p60 = 'hp60',
  68. /* 2K Modes */
  69. bmdMode2k2398 = '2k23',
  70. bmdMode2k24 = '2k24',
  71. bmdMode2k25 = '2k25',
  72. /* 2K DCI Modes */
  73. bmdMode2kDCI2398 = '2d23',
  74. bmdMode2kDCI24 = '2d24',
  75. bmdMode2kDCI25 = '2d25',
  76. bmdMode2kDCI2997 = '2d29',
  77. bmdMode2kDCI30 = '2d30',
  78. bmdMode2kDCI50 = '2d50',
  79. bmdMode2kDCI5994 = '2d59',
  80. bmdMode2kDCI60 = '2d60',
  81. /* 4K UHD Modes */
  82. bmdMode4K2160p2398 = '4k23',
  83. bmdMode4K2160p24 = '4k24',
  84. bmdMode4K2160p25 = '4k25',
  85. bmdMode4K2160p2997 = '4k29',
  86. bmdMode4K2160p30 = '4k30',
  87. bmdMode4K2160p50 = '4k50',
  88. bmdMode4K2160p5994 = '4k59',
  89. bmdMode4K2160p60 = '4k60',
  90. /* 4K DCI Modes */
  91. bmdMode4kDCI2398 = '4d23',
  92. bmdMode4kDCI24 = '4d24',
  93. bmdMode4kDCI25 = '4d25',
  94. bmdMode4kDCI2997 = '4d29',
  95. bmdMode4kDCI30 = '4d30',
  96. bmdMode4kDCI50 = '4d50',
  97. bmdMode4kDCI5994 = '4d59',
  98. bmdMode4kDCI60 = '4d60',
  99. /* 8K UHD Modes */
  100. bmdMode8K4320p2398 = '8k23',
  101. bmdMode8K4320p24 = '8k24',
  102. bmdMode8K4320p25 = '8k25',
  103. bmdMode8K4320p2997 = '8k29',
  104. bmdMode8K4320p30 = '8k30',
  105. bmdMode8K4320p50 = '8k50',
  106. bmdMode8K4320p5994 = '8k59',
  107. bmdMode8K4320p60 = '8k60',
  108. /* 8K DCI Modes */
  109. bmdMode8kDCI2398 = '8d23',
  110. bmdMode8kDCI24 = '8d24',
  111. bmdMode8kDCI25 = '8d25',
  112. bmdMode8kDCI2997 = '8d29',
  113. bmdMode8kDCI30 = '8d30',
  114. bmdMode8kDCI50 = '8d50',
  115. bmdMode8kDCI5994 = '8d59',
  116. bmdMode8kDCI60 = '8d60',
  117. /* RAW Modes for Cintel (input only) */
  118. bmdModeCintelRAW = 'rwci', // Frame size up to 4096x3072, variable frame rate
  119. bmdModeCintelCompressedRAW = 'rwcc', // Frame size up to 4096x3072, variable frame rate
  120. /* Special Modes */
  121. bmdModeUnknown = 'iunk'
  122. };
  123. /* Enum BMDFieldDominance - Video field dominance */
  124. typedef uint32_t BMDFieldDominance;
  125. enum _BMDFieldDominance {
  126. bmdUnknownFieldDominance = 0,
  127. bmdLowerFieldFirst = 'lowr',
  128. bmdUpperFieldFirst = 'uppr',
  129. bmdProgressiveFrame = 'prog',
  130. bmdProgressiveSegmentedFrame = 'psf '
  131. };
  132. /* Enum BMDPixelFormat - Video pixel formats supported for output/input */
  133. typedef uint32_t BMDPixelFormat;
  134. enum _BMDPixelFormat {
  135. bmdFormat8BitYUV = '2vuy',
  136. bmdFormat10BitYUV = 'v210',
  137. bmdFormat8BitARGB = 32,
  138. bmdFormat8BitBGRA = 'BGRA',
  139. bmdFormat10BitRGB = 'r210', // Big-endian RGB 10-bit per component with SMPTE video levels (64-960). Packed as 2:10:10:10
  140. bmdFormat12BitRGB = 'R12B', // Big-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
  141. bmdFormat12BitRGBLE = 'R12L', // Little-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
  142. bmdFormat10BitRGBXLE = 'R10l', // Little-endian 10-bit RGB with SMPTE video levels (64-940)
  143. bmdFormat10BitRGBX = 'R10b', // Big-endian 10-bit RGB with SMPTE video levels (64-940)
  144. bmdFormatH265 = 'hev1', // High Efficiency Video Coding (HEVC/h.265)
  145. /* AVID DNxHR */
  146. bmdFormatDNxHR = 'AVdh',
  147. /* Cintel formats */
  148. bmdFormat12BitRAWGRBG = 'r12p', // 12-bit RAW data for bayer pattern GRBG
  149. bmdFormat12BitRAWJPEG = 'r16p' // 12-bit RAW data arranged in tiles and JPEG compressed
  150. };
  151. /* Enum BMDDisplayModeFlags - Flags to describe the characteristics of an IDeckLinkDisplayMode. */
  152. typedef uint32_t BMDDisplayModeFlags;
  153. enum _BMDDisplayModeFlags {
  154. bmdDisplayModeSupports3D = 1 << 0,
  155. bmdDisplayModeColorspaceRec601 = 1 << 1,
  156. bmdDisplayModeColorspaceRec709 = 1 << 2
  157. };
  158. // Forward Declarations
  159. class IDeckLinkDisplayModeIterator;
  160. class IDeckLinkDisplayMode;
  161. /* Interface IDeckLinkDisplayModeIterator - enumerates over supported input/output display modes. */
  162. class BMD_PUBLIC IDeckLinkDisplayModeIterator : public IUnknown
  163. {
  164. public:
  165. virtual HRESULT Next (/* out */ IDeckLinkDisplayMode **deckLinkDisplayMode) = 0;
  166. protected:
  167. virtual ~IDeckLinkDisplayModeIterator () {} // call Release method to drop reference count
  168. };
  169. /* Interface IDeckLinkDisplayMode - represents a display mode */
  170. class BMD_PUBLIC IDeckLinkDisplayMode : public IUnknown
  171. {
  172. public:
  173. virtual HRESULT GetName (/* out */ CFStringRef *name) = 0;
  174. virtual BMDDisplayMode GetDisplayMode (void) = 0;
  175. virtual long GetWidth (void) = 0;
  176. virtual long GetHeight (void) = 0;
  177. virtual HRESULT GetFrameRate (/* out */ BMDTimeValue *frameDuration, /* out */ BMDTimeScale *timeScale) = 0;
  178. virtual BMDFieldDominance GetFieldDominance (void) = 0;
  179. virtual BMDDisplayModeFlags GetFlags (void) = 0;
  180. protected:
  181. virtual ~IDeckLinkDisplayMode () {} // call Release method to drop reference count
  182. };
  183. /* Functions */
  184. extern "C" {
  185. }
  186. #endif /* defined(BMD_DECKLINKAPIMODES_H) */