DeckLinkAPIModes.idl 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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_CONST
  28. #if defined(_MSC_VER)
  29. #define BMD_CONST __declspec(selectany) static const
  30. #else
  31. #define BMD_CONST static const
  32. #endif
  33. #endif
  34. // Type Declarations
  35. // Enumeration Mapping
  36. cpp_quote("typedef unsigned int BMDDisplayModeFlags;")
  37. cpp_quote("#if 0")
  38. typedef enum _BMDDisplayModeFlags BMDDisplayModeFlags;
  39. cpp_quote("#endif")
  40. /* Enum BMDDisplayMode - Video display modes */
  41. typedef [v1_enum] enum _BMDDisplayMode {
  42. /* SD Modes */
  43. bmdModeNTSC = /* 'ntsc' */ 0x6E747363,
  44. bmdModeNTSC2398 = /* 'nt23' */ 0x6E743233, // 3:2 pulldown
  45. bmdModePAL = /* 'pal ' */ 0x70616C20,
  46. bmdModeNTSCp = /* 'ntsp' */ 0x6E747370,
  47. bmdModePALp = /* 'palp' */ 0x70616C70,
  48. /* HD 1080 Modes */
  49. bmdModeHD1080p2398 = /* '23ps' */ 0x32337073,
  50. bmdModeHD1080p24 = /* '24ps' */ 0x32347073,
  51. bmdModeHD1080p25 = /* 'Hp25' */ 0x48703235,
  52. bmdModeHD1080p2997 = /* 'Hp29' */ 0x48703239,
  53. bmdModeHD1080p30 = /* 'Hp30' */ 0x48703330,
  54. bmdModeHD1080i50 = /* 'Hi50' */ 0x48693530,
  55. bmdModeHD1080i5994 = /* 'Hi59' */ 0x48693539,
  56. bmdModeHD1080i6000 = /* 'Hi60' */ 0x48693630, // N.B. This _really_ is 60.00 Hz.
  57. bmdModeHD1080p50 = /* 'Hp50' */ 0x48703530,
  58. bmdModeHD1080p5994 = /* 'Hp59' */ 0x48703539,
  59. bmdModeHD1080p6000 = /* 'Hp60' */ 0x48703630, // N.B. This _really_ is 60.00 Hz.
  60. /* HD 720 Modes */
  61. bmdModeHD720p50 = /* 'hp50' */ 0x68703530,
  62. bmdModeHD720p5994 = /* 'hp59' */ 0x68703539,
  63. bmdModeHD720p60 = /* 'hp60' */ 0x68703630,
  64. /* 2k Modes */
  65. bmdMode2k2398 = /* '2k23' */ 0x326B3233,
  66. bmdMode2k24 = /* '2k24' */ 0x326B3234,
  67. bmdMode2k25 = /* '2k25' */ 0x326B3235,
  68. /* DCI Modes (output only) */
  69. bmdMode2kDCI2398 = /* '2d23' */ 0x32643233,
  70. bmdMode2kDCI24 = /* '2d24' */ 0x32643234,
  71. bmdMode2kDCI25 = /* '2d25' */ 0x32643235,
  72. /* 4k Modes */
  73. bmdMode4K2160p2398 = /* '4k23' */ 0x346B3233,
  74. bmdMode4K2160p24 = /* '4k24' */ 0x346B3234,
  75. bmdMode4K2160p25 = /* '4k25' */ 0x346B3235,
  76. bmdMode4K2160p2997 = /* '4k29' */ 0x346B3239,
  77. bmdMode4K2160p30 = /* '4k30' */ 0x346B3330,
  78. bmdMode4K2160p50 = /* '4k50' */ 0x346B3530,
  79. bmdMode4K2160p5994 = /* '4k59' */ 0x346B3539,
  80. bmdMode4K2160p60 = /* '4k60' */ 0x346B3630,
  81. /* DCI Modes (output only) */
  82. bmdMode4kDCI2398 = /* '4d23' */ 0x34643233,
  83. bmdMode4kDCI24 = /* '4d24' */ 0x34643234,
  84. bmdMode4kDCI25 = /* '4d25' */ 0x34643235,
  85. /* Special Modes */
  86. bmdModeUnknown = /* 'iunk' */ 0x69756E6B
  87. } BMDDisplayMode;
  88. /* Enum BMDFieldDominance - Video field dominance */
  89. typedef [v1_enum] enum _BMDFieldDominance {
  90. bmdUnknownFieldDominance = 0,
  91. bmdLowerFieldFirst = /* 'lowr' */ 0x6C6F7772,
  92. bmdUpperFieldFirst = /* 'uppr' */ 0x75707072,
  93. bmdProgressiveFrame = /* 'prog' */ 0x70726F67,
  94. bmdProgressiveSegmentedFrame = /* 'psf ' */ 0x70736620
  95. } BMDFieldDominance;
  96. /* Enum BMDPixelFormat - Video pixel formats supported for output/input */
  97. typedef [v1_enum] enum _BMDPixelFormat {
  98. bmdFormat8BitYUV = /* '2vuy' */ 0x32767579,
  99. bmdFormat10BitYUV = /* 'v210' */ 0x76323130,
  100. bmdFormat8BitARGB = 32,
  101. bmdFormat8BitBGRA = /* 'BGRA' */ 0x42475241,
  102. bmdFormat10BitRGB = /* 'r210' */ 0x72323130, // Big-endian RGB 10-bit per component with SMPTE video levels (64-960). Packed as 2:10:10:10
  103. bmdFormat12BitRGB = /* 'R12B' */ 0x52313242, // Big-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
  104. bmdFormat12BitRGBLE = /* 'R12L' */ 0x5231324C, // Little-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
  105. bmdFormat10BitRGBXLE = /* 'R10l' */ 0x5231306C, // Little-endian 10-bit RGB with SMPTE video levels (64-940)
  106. bmdFormat10BitRGBX = /* 'R10b' */ 0x52313062, // Big-endian 10-bit RGB with SMPTE video levels (64-940)
  107. bmdFormatH265 = /* 'hev1' */ 0x68657631, // High Efficiency Video Coding (HEVC/h.265)
  108. /* AVID DNxHR */
  109. bmdFormatDNxHR = /* 'AVdh' */ 0x41566468
  110. } BMDPixelFormat;
  111. /* Enum BMDDisplayModeFlags - Flags to describe the characteristics of an IDeckLinkDisplayMode. */
  112. [v1_enum] enum _BMDDisplayModeFlags {
  113. bmdDisplayModeSupports3D = 1 << 0,
  114. bmdDisplayModeColorspaceRec601 = 1 << 1,
  115. bmdDisplayModeColorspaceRec709 = 1 << 2
  116. };
  117. // Forward Declarations
  118. interface IDeckLinkDisplayModeIterator;
  119. interface IDeckLinkDisplayMode;
  120. /* Interface IDeckLinkDisplayModeIterator - enumerates over supported input/output display modes. */
  121. [
  122. object,
  123. uuid(9C88499F-F601-4021-B80B-032E4EB41C35),
  124. helpstring("enumerates over supported input/output display modes.")
  125. ] interface IDeckLinkDisplayModeIterator : IUnknown
  126. {
  127. HRESULT Next([out] IDeckLinkDisplayMode **deckLinkDisplayMode);
  128. };
  129. /* Interface IDeckLinkDisplayMode - represents a display mode */
  130. [
  131. object,
  132. uuid(3EB2C1AB-0A3D-4523-A3AD-F40D7FB14E78),
  133. helpstring("represents a display mode")
  134. ] interface IDeckLinkDisplayMode : IUnknown
  135. {
  136. HRESULT GetName([out] BSTR *name);
  137. BMDDisplayMode GetDisplayMode(void);
  138. long GetWidth(void);
  139. long GetHeight(void);
  140. HRESULT GetFrameRate([out] BMDTimeValue *frameDuration, [out] BMDTimeScale *timeScale);
  141. BMDFieldDominance GetFieldDominance(void);
  142. BMDDisplayModeFlags GetFlags(void);
  143. };
  144. /* Coclasses */
  145. importlib("stdole2.tlb");