You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3325 lines
185KB

  1. /*
  2. * This copyright notice applies to this header file only:
  3. *
  4. * Copyright (c) 2010-2017 NVIDIA Corporation
  5. *
  6. * Permission is hereby granted, free of charge, to any person
  7. * obtaining a copy of this software and associated documentation
  8. * files (the "Software"), to deal in the Software without
  9. * restriction, including without limitation the rights to use,
  10. * copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the software, and to permit persons to whom the
  12. * software is furnished to do so, subject to the following
  13. * conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be
  16. * included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  19. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  20. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  21. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  22. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  23. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  24. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25. * OTHER DEALINGS IN THE SOFTWARE.
  26. */
  27. /**
  28. * \file nvEncodeAPI.h
  29. * NVIDIA GPUs - beginning with the Kepler generation - contain a hardware-based encoder
  30. * (referred to as NVENC) which provides fully-accelerated hardware-based video encoding.
  31. * NvEncodeAPI provides the interface for NVIDIA video encoder (NVENC).
  32. * \date 2011-2017
  33. * This file contains the interface constants, structure definitions and function prototypes.
  34. */
  35. #ifndef _NV_ENCODEAPI_H_
  36. #define _NV_ENCODEAPI_H_
  37. #include <stdlib.h>
  38. #ifdef _WIN32
  39. #include <windows.h>
  40. #endif
  41. #ifdef _MSC_VER
  42. #ifndef _STDINT
  43. typedef __int32 int32_t;
  44. typedef unsigned __int32 uint32_t;
  45. typedef __int64 int64_t;
  46. typedef unsigned __int64 uint64_t;
  47. typedef signed char int8_t;
  48. typedef unsigned char uint8_t;
  49. typedef short int16_t;
  50. typedef unsigned short uint16_t;
  51. #endif
  52. #else
  53. #include <stdint.h>
  54. #endif
  55. #ifdef __cplusplus
  56. extern "C" {
  57. #endif
  58. /**
  59. * \addtogroup ENCODER_STRUCTURE NvEncodeAPI Data structures
  60. * @{
  61. */
  62. #if defined(_WIN32) || defined(__CYGWIN__)
  63. #define NVENCAPI __stdcall
  64. #else
  65. #define NVENCAPI
  66. #endif
  67. #ifdef _WIN32
  68. typedef RECT NVENC_RECT;
  69. #else
  70. // =========================================================================================
  71. #ifndef GUID
  72. /*!
  73. * \struct GUID
  74. * Abstracts the GUID structure for non-windows platforms.
  75. */
  76. // =========================================================================================
  77. typedef struct
  78. {
  79. uint32_t Data1; /**< [in]: Specifies the first 8 hexadecimal digits of the GUID. */
  80. uint16_t Data2; /**< [in]: Specifies the first group of 4 hexadecimal digits. */
  81. uint16_t Data3; /**< [in]: Specifies the second group of 4 hexadecimal digits. */
  82. uint8_t Data4[8]; /**< [in]: Array of 8 bytes. The first 2 bytes contain the third group of 4 hexadecimal digits.
  83. The remaining 6 bytes contain the final 12 hexadecimal digits. */
  84. } GUID;
  85. #endif // GUID
  86. /**
  87. * \struct _NVENC_RECT
  88. * Defines a Rectangle. Used in ::NV_ENC_PREPROCESS_FRAME.
  89. */
  90. typedef struct _NVENC_RECT
  91. {
  92. uint32_t left; /**< [in]: X coordinate of the upper left corner of rectangular area to be specified. */
  93. uint32_t top; /**< [in]: Y coordinate of the upper left corner of the rectangular area to be specified. */
  94. uint32_t right; /**< [in]: X coordinate of the bottom right corner of the rectangular area to be specified. */
  95. uint32_t bottom; /**< [in]: Y coordinate of the bottom right corner of the rectangular area to be specified. */
  96. } NVENC_RECT;
  97. #endif // _WIN32
  98. /** @} */ /* End of GUID and NVENC_RECT structure grouping*/
  99. typedef void* NV_ENC_INPUT_PTR; /**< NVENCODE API input buffer */
  100. typedef void* NV_ENC_OUTPUT_PTR; /**< NVENCODE API output buffer*/
  101. typedef void* NV_ENC_REGISTERED_PTR; /**< A Resource that has been registered with NVENCODE API*/
  102. #define NVENCAPI_MAJOR_VERSION 8
  103. #define NVENCAPI_MINOR_VERSION 0
  104. #define NVENCAPI_VERSION (NVENCAPI_MAJOR_VERSION | (NVENCAPI_MINOR_VERSION << 24))
  105. /**
  106. * Macro to generate per-structure version for use with API.
  107. */
  108. #define NVENCAPI_STRUCT_VERSION(ver) ((uint32_t)NVENCAPI_VERSION | ((ver)<<16) | (0x7 << 28))
  109. #define NVENC_INFINITE_GOPLENGTH 0xffffffff
  110. #define NV_MAX_SEQ_HDR_LEN (512)
  111. // =========================================================================================
  112. // Encode Codec GUIDS supported by the NvEncodeAPI interface.
  113. // =========================================================================================
  114. // {6BC82762-4E63-4ca4-AA85-1E50F321F6BF}
  115. static const GUID NV_ENC_CODEC_H264_GUID =
  116. { 0x6bc82762, 0x4e63, 0x4ca4, { 0xaa, 0x85, 0x1e, 0x50, 0xf3, 0x21, 0xf6, 0xbf } };
  117. // {790CDC88-4522-4d7b-9425-BDA9975F7603}
  118. static const GUID NV_ENC_CODEC_HEVC_GUID =
  119. { 0x790cdc88, 0x4522, 0x4d7b, { 0x94, 0x25, 0xbd, 0xa9, 0x97, 0x5f, 0x76, 0x3 } };
  120. // =========================================================================================
  121. // * Encode Profile GUIDS supported by the NvEncodeAPI interface.
  122. // =========================================================================================
  123. // {BFD6F8E7-233C-4341-8B3E-4818523803F4}
  124. static const GUID NV_ENC_CODEC_PROFILE_AUTOSELECT_GUID =
  125. { 0xbfd6f8e7, 0x233c, 0x4341, { 0x8b, 0x3e, 0x48, 0x18, 0x52, 0x38, 0x3, 0xf4 } };
  126. // {0727BCAA-78C4-4c83-8C2F-EF3DFF267C6A}
  127. static const GUID NV_ENC_H264_PROFILE_BASELINE_GUID =
  128. { 0x727bcaa, 0x78c4, 0x4c83, { 0x8c, 0x2f, 0xef, 0x3d, 0xff, 0x26, 0x7c, 0x6a } };
  129. // {60B5C1D4-67FE-4790-94D5-C4726D7B6E6D}
  130. static const GUID NV_ENC_H264_PROFILE_MAIN_GUID =
  131. { 0x60b5c1d4, 0x67fe, 0x4790, { 0x94, 0xd5, 0xc4, 0x72, 0x6d, 0x7b, 0x6e, 0x6d } };
  132. // {E7CBC309-4F7A-4b89-AF2A-D537C92BE310}
  133. static const GUID NV_ENC_H264_PROFILE_HIGH_GUID =
  134. { 0xe7cbc309, 0x4f7a, 0x4b89, { 0xaf, 0x2a, 0xd5, 0x37, 0xc9, 0x2b, 0xe3, 0x10 } };
  135. // {7AC663CB-A598-4960-B844-339B261A7D52}
  136. static const GUID NV_ENC_H264_PROFILE_HIGH_444_GUID =
  137. { 0x7ac663cb, 0xa598, 0x4960, { 0xb8, 0x44, 0x33, 0x9b, 0x26, 0x1a, 0x7d, 0x52 } };
  138. // {40847BF5-33F7-4601-9084-E8FE3C1DB8B7}
  139. static const GUID NV_ENC_H264_PROFILE_STEREO_GUID =
  140. { 0x40847bf5, 0x33f7, 0x4601, { 0x90, 0x84, 0xe8, 0xfe, 0x3c, 0x1d, 0xb8, 0xb7 } };
  141. // {CE788D20-AAA9-4318-92BB-AC7E858C8D36}
  142. static const GUID NV_ENC_H264_PROFILE_SVC_TEMPORAL_SCALABILTY =
  143. { 0xce788d20, 0xaaa9, 0x4318, { 0x92, 0xbb, 0xac, 0x7e, 0x85, 0x8c, 0x8d, 0x36 } };
  144. // {B405AFAC-F32B-417B-89C4-9ABEED3E5978}
  145. static const GUID NV_ENC_H264_PROFILE_PROGRESSIVE_HIGH_GUID =
  146. { 0xb405afac, 0xf32b, 0x417b, { 0x89, 0xc4, 0x9a, 0xbe, 0xed, 0x3e, 0x59, 0x78 } };
  147. // {AEC1BD87-E85B-48f2-84C3-98BCA6285072}
  148. static const GUID NV_ENC_H264_PROFILE_CONSTRAINED_HIGH_GUID =
  149. { 0xaec1bd87, 0xe85b, 0x48f2, { 0x84, 0xc3, 0x98, 0xbc, 0xa6, 0x28, 0x50, 0x72 } };
  150. // {B514C39A-B55B-40fa-878F-F1253B4DFDEC}
  151. static const GUID NV_ENC_HEVC_PROFILE_MAIN_GUID =
  152. { 0xb514c39a, 0xb55b, 0x40fa, { 0x87, 0x8f, 0xf1, 0x25, 0x3b, 0x4d, 0xfd, 0xec } };
  153. // {fa4d2b6c-3a5b-411a-8018-0a3f5e3c9be5}
  154. static const GUID NV_ENC_HEVC_PROFILE_MAIN10_GUID =
  155. { 0xfa4d2b6c, 0x3a5b, 0x411a, { 0x80, 0x18, 0x0a, 0x3f, 0x5e, 0x3c, 0x9b, 0xe5 } };
  156. // For HEVC Main 444 8 bit and HEVC Main 444 10 bit profiles only
  157. // {51ec32b5-1b4c-453c-9cbd-b616bd621341}
  158. static const GUID NV_ENC_HEVC_PROFILE_FREXT_GUID =
  159. { 0x51ec32b5, 0x1b4c, 0x453c, { 0x9c, 0xbd, 0xb6, 0x16, 0xbd, 0x62, 0x13, 0x41 } };
  160. // =========================================================================================
  161. // * Preset GUIDS supported by the NvEncodeAPI interface.
  162. // =========================================================================================
  163. // {B2DFB705-4EBD-4C49-9B5F-24A777D3E587}
  164. static const GUID NV_ENC_PRESET_DEFAULT_GUID =
  165. { 0xb2dfb705, 0x4ebd, 0x4c49, { 0x9b, 0x5f, 0x24, 0xa7, 0x77, 0xd3, 0xe5, 0x87 } };
  166. // {60E4C59F-E846-4484-A56D-CD45BE9FDDF6}
  167. static const GUID NV_ENC_PRESET_HP_GUID =
  168. { 0x60e4c59f, 0xe846, 0x4484, { 0xa5, 0x6d, 0xcd, 0x45, 0xbe, 0x9f, 0xdd, 0xf6 } };
  169. // {34DBA71D-A77B-4B8F-9C3E-B6D5DA24C012}
  170. static const GUID NV_ENC_PRESET_HQ_GUID =
  171. { 0x34dba71d, 0xa77b, 0x4b8f, { 0x9c, 0x3e, 0xb6, 0xd5, 0xda, 0x24, 0xc0, 0x12 } };
  172. // {82E3E450-BDBB-4e40-989C-82A90DF9EF32}
  173. static const GUID NV_ENC_PRESET_BD_GUID =
  174. { 0x82e3e450, 0xbdbb, 0x4e40, { 0x98, 0x9c, 0x82, 0xa9, 0xd, 0xf9, 0xef, 0x32 } };
  175. // {49DF21C5-6DFA-4feb-9787-6ACC9EFFB726}
  176. static const GUID NV_ENC_PRESET_LOW_LATENCY_DEFAULT_GUID =
  177. { 0x49df21c5, 0x6dfa, 0x4feb, { 0x97, 0x87, 0x6a, 0xcc, 0x9e, 0xff, 0xb7, 0x26 } };
  178. // {C5F733B9-EA97-4cf9-BEC2-BF78A74FD105}
  179. static const GUID NV_ENC_PRESET_LOW_LATENCY_HQ_GUID =
  180. { 0xc5f733b9, 0xea97, 0x4cf9, { 0xbe, 0xc2, 0xbf, 0x78, 0xa7, 0x4f, 0xd1, 0x5 } };
  181. // {67082A44-4BAD-48FA-98EA-93056D150A58}
  182. static const GUID NV_ENC_PRESET_LOW_LATENCY_HP_GUID =
  183. { 0x67082a44, 0x4bad, 0x48fa, { 0x98, 0xea, 0x93, 0x5, 0x6d, 0x15, 0xa, 0x58 } };
  184. // {D5BFB716-C604-44e7-9BB8-DEA5510FC3AC}
  185. static const GUID NV_ENC_PRESET_LOSSLESS_DEFAULT_GUID =
  186. { 0xd5bfb716, 0xc604, 0x44e7, { 0x9b, 0xb8, 0xde, 0xa5, 0x51, 0xf, 0xc3, 0xac } };
  187. // {149998E7-2364-411d-82EF-179888093409}
  188. static const GUID NV_ENC_PRESET_LOSSLESS_HP_GUID =
  189. { 0x149998e7, 0x2364, 0x411d, { 0x82, 0xef, 0x17, 0x98, 0x88, 0x9, 0x34, 0x9 } };
  190. /**
  191. * \addtogroup ENCODER_STRUCTURE NvEncodeAPI Data structures
  192. * @{
  193. */
  194. /**
  195. * Input frame encode modes
  196. */
  197. typedef enum _NV_ENC_PARAMS_FRAME_FIELD_MODE
  198. {
  199. NV_ENC_PARAMS_FRAME_FIELD_MODE_FRAME = 0x01, /**< Frame mode */
  200. NV_ENC_PARAMS_FRAME_FIELD_MODE_FIELD = 0x02, /**< Field mode */
  201. NV_ENC_PARAMS_FRAME_FIELD_MODE_MBAFF = 0x03 /**< MB adaptive frame/field */
  202. } NV_ENC_PARAMS_FRAME_FIELD_MODE;
  203. /**
  204. * Rate Control Modes
  205. */
  206. typedef enum _NV_ENC_PARAMS_RC_MODE
  207. {
  208. NV_ENC_PARAMS_RC_CONSTQP = 0x0, /**< Constant QP mode */
  209. NV_ENC_PARAMS_RC_VBR = 0x1, /**< Variable bitrate mode */
  210. NV_ENC_PARAMS_RC_CBR = 0x2, /**< Constant bitrate mode */
  211. NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ = 0x8, /**< low-delay CBR, high quality */
  212. NV_ENC_PARAMS_RC_CBR_HQ = 0x10, /**< CBR, high quality (slower) */
  213. NV_ENC_PARAMS_RC_VBR_HQ = 0x20 /**< VBR, high quality (slower) */
  214. } NV_ENC_PARAMS_RC_MODE;
  215. #define NV_ENC_PARAMS_RC_VBR_MINQP (NV_ENC_PARAMS_RC_MODE)0x4 /**< Deprecated */
  216. #define NV_ENC_PARAMS_RC_2_PASS_QUALITY NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ /**< Deprecated */
  217. #define NV_ENC_PARAMS_RC_2_PASS_FRAMESIZE_CAP NV_ENC_PARAMS_RC_CBR_HQ /**< Deprecated */
  218. #define NV_ENC_PARAMS_RC_2_PASS_VBR NV_ENC_PARAMS_RC_VBR_HQ /**< Deprecated */
  219. #define NV_ENC_PARAMS_RC_CBR2 NV_ENC_PARAMS_RC_CBR /**< Deprecated */
  220. /**
  221. * Input picture structure
  222. */
  223. typedef enum _NV_ENC_PIC_STRUCT
  224. {
  225. NV_ENC_PIC_STRUCT_FRAME = 0x01, /**< Progressive frame */
  226. NV_ENC_PIC_STRUCT_FIELD_TOP_BOTTOM = 0x02, /**< Field encoding top field first */
  227. NV_ENC_PIC_STRUCT_FIELD_BOTTOM_TOP = 0x03 /**< Field encoding bottom field first */
  228. } NV_ENC_PIC_STRUCT;
  229. /**
  230. * Input picture type
  231. */
  232. typedef enum _NV_ENC_PIC_TYPE
  233. {
  234. NV_ENC_PIC_TYPE_P = 0x0, /**< Forward predicted */
  235. NV_ENC_PIC_TYPE_B = 0x01, /**< Bi-directionally predicted picture */
  236. NV_ENC_PIC_TYPE_I = 0x02, /**< Intra predicted picture */
  237. NV_ENC_PIC_TYPE_IDR = 0x03, /**< IDR picture */
  238. NV_ENC_PIC_TYPE_BI = 0x04, /**< Bi-directionally predicted with only Intra MBs */
  239. NV_ENC_PIC_TYPE_SKIPPED = 0x05, /**< Picture is skipped */
  240. NV_ENC_PIC_TYPE_INTRA_REFRESH = 0x06, /**< First picture in intra refresh cycle */
  241. NV_ENC_PIC_TYPE_UNKNOWN = 0xFF /**< Picture type unknown */
  242. } NV_ENC_PIC_TYPE;
  243. /**
  244. * Motion vector precisions
  245. */
  246. typedef enum _NV_ENC_MV_PRECISION
  247. {
  248. NV_ENC_MV_PRECISION_DEFAULT = 0x0, /**<Driver selects QuarterPel motion vector precision by default*/
  249. NV_ENC_MV_PRECISION_FULL_PEL = 0x01, /**< FullPel motion vector precision */
  250. NV_ENC_MV_PRECISION_HALF_PEL = 0x02, /**< HalfPel motion vector precision */
  251. NV_ENC_MV_PRECISION_QUARTER_PEL = 0x03 /**< QuarterPel motion vector precision */
  252. } NV_ENC_MV_PRECISION;
  253. /**
  254. * Input buffer formats
  255. */
  256. typedef enum _NV_ENC_BUFFER_FORMAT
  257. {
  258. NV_ENC_BUFFER_FORMAT_UNDEFINED = 0x00000000, /**< Undefined buffer format */
  259. NV_ENC_BUFFER_FORMAT_NV12 = 0x00000001, /**< Semi-Planar YUV [Y plane followed by interleaved UV plane] */
  260. NV_ENC_BUFFER_FORMAT_YV12 = 0x00000010, /**< Planar YUV [Y plane followed by V and U planes] */
  261. NV_ENC_BUFFER_FORMAT_IYUV = 0x00000100, /**< Planar YUV [Y plane followed by U and V planes] */
  262. NV_ENC_BUFFER_FORMAT_YUV444 = 0x00001000, /**< Planar YUV [Y plane followed by U and V planes] */
  263. NV_ENC_BUFFER_FORMAT_YUV420_10BIT = 0x00010000, /**< 10 bit Semi-Planar YUV [Y plane followed by interleaved UV plane]. Each pixel of size 2 bytes. Most Significant 10 bits contain pixel data. */
  264. NV_ENC_BUFFER_FORMAT_YUV444_10BIT = 0x00100000, /**< 10 bit Planar YUV444 [Y plane followed by U and V planes]. Each pixel of size 2 bytes. Most Significant 10 bits contain pixel data. */
  265. NV_ENC_BUFFER_FORMAT_ARGB = 0x01000000, /**< 8 bit Packed A8R8G8B8. This is a word-ordered format
  266. where a pixel is represented by a 32-bit word with B
  267. in the lowest 8 bits, G in the next 8 bits, R in the
  268. 8 bits after that and A in the highest 8 bits. */
  269. NV_ENC_BUFFER_FORMAT_ARGB10 = 0x02000000, /**< 10 bit Packed A2R10G10B10. This is a word-ordered format
  270. where a pixel is represented by a 32-bit word with B
  271. in the lowest 10 bits, G in the next 10 bits, R in the
  272. 10 bits after that and A in the highest 2 bits. */
  273. NV_ENC_BUFFER_FORMAT_AYUV = 0x04000000, /**< 8 bit Packed A8Y8U8V8. This is a word-ordered format
  274. where a pixel is represented by a 32-bit word with V
  275. in the lowest 8 bits, U in the next 8 bits, Y in the
  276. 8 bits after that and A in the highest 8 bits. */
  277. NV_ENC_BUFFER_FORMAT_ABGR = 0x10000000, /**< 8 bit Packed A8B8G8R8. This is a word-ordered format
  278. where a pixel is represented by a 32-bit word with R
  279. in the lowest 8 bits, G in the next 8 bits, B in the
  280. 8 bits after that and A in the highest 8 bits. */
  281. NV_ENC_BUFFER_FORMAT_ABGR10 = 0x20000000, /**< 10 bit Packed A2B10G10R10. This is a word-ordered format
  282. where a pixel is represented by a 32-bit word with R
  283. in the lowest 10 bits, G in the next 10 bits, B in the
  284. 10 bits after that and A in the highest 2 bits. */
  285. } NV_ENC_BUFFER_FORMAT;
  286. #define NV_ENC_BUFFER_FORMAT_NV12_PL NV_ENC_BUFFER_FORMAT_NV12
  287. #define NV_ENC_BUFFER_FORMAT_YV12_PL NV_ENC_BUFFER_FORMAT_YV12
  288. #define NV_ENC_BUFFER_FORMAT_IYUV_PL NV_ENC_BUFFER_FORMAT_IYUV
  289. #define NV_ENC_BUFFER_FORMAT_YUV444_PL NV_ENC_BUFFER_FORMAT_YUV444
  290. /**
  291. * Encoding levels
  292. */
  293. typedef enum _NV_ENC_LEVEL
  294. {
  295. NV_ENC_LEVEL_AUTOSELECT = 0,
  296. NV_ENC_LEVEL_H264_1 = 10,
  297. NV_ENC_LEVEL_H264_1b = 9,
  298. NV_ENC_LEVEL_H264_11 = 11,
  299. NV_ENC_LEVEL_H264_12 = 12,
  300. NV_ENC_LEVEL_H264_13 = 13,
  301. NV_ENC_LEVEL_H264_2 = 20,
  302. NV_ENC_LEVEL_H264_21 = 21,
  303. NV_ENC_LEVEL_H264_22 = 22,
  304. NV_ENC_LEVEL_H264_3 = 30,
  305. NV_ENC_LEVEL_H264_31 = 31,
  306. NV_ENC_LEVEL_H264_32 = 32,
  307. NV_ENC_LEVEL_H264_4 = 40,
  308. NV_ENC_LEVEL_H264_41 = 41,
  309. NV_ENC_LEVEL_H264_42 = 42,
  310. NV_ENC_LEVEL_H264_5 = 50,
  311. NV_ENC_LEVEL_H264_51 = 51,
  312. NV_ENC_LEVEL_H264_52 = 52,
  313. NV_ENC_LEVEL_HEVC_1 = 30,
  314. NV_ENC_LEVEL_HEVC_2 = 60,
  315. NV_ENC_LEVEL_HEVC_21 = 63,
  316. NV_ENC_LEVEL_HEVC_3 = 90,
  317. NV_ENC_LEVEL_HEVC_31 = 93,
  318. NV_ENC_LEVEL_HEVC_4 = 120,
  319. NV_ENC_LEVEL_HEVC_41 = 123,
  320. NV_ENC_LEVEL_HEVC_5 = 150,
  321. NV_ENC_LEVEL_HEVC_51 = 153,
  322. NV_ENC_LEVEL_HEVC_52 = 156,
  323. NV_ENC_LEVEL_HEVC_6 = 180,
  324. NV_ENC_LEVEL_HEVC_61 = 183,
  325. NV_ENC_LEVEL_HEVC_62 = 186,
  326. NV_ENC_TIER_HEVC_MAIN = 0,
  327. NV_ENC_TIER_HEVC_HIGH = 1
  328. } NV_ENC_LEVEL;
  329. /**
  330. * Error Codes
  331. */
  332. typedef enum _NVENCSTATUS
  333. {
  334. /**
  335. * This indicates that API call returned with no errors.
  336. */
  337. NV_ENC_SUCCESS,
  338. /**
  339. * This indicates that no encode capable devices were detected.
  340. */
  341. NV_ENC_ERR_NO_ENCODE_DEVICE,
  342. /**
  343. * This indicates that devices pass by the client is not supported.
  344. */
  345. NV_ENC_ERR_UNSUPPORTED_DEVICE,
  346. /**
  347. * This indicates that the encoder device supplied by the client is not
  348. * valid.
  349. */
  350. NV_ENC_ERR_INVALID_ENCODERDEVICE,
  351. /**
  352. * This indicates that device passed to the API call is invalid.
  353. */
  354. NV_ENC_ERR_INVALID_DEVICE,
  355. /**
  356. * This indicates that device passed to the API call is no longer available and
  357. * needs to be reinitialized. The clients need to destroy the current encoder
  358. * session by freeing the allocated input output buffers and destroying the device
  359. * and create a new encoding session.
  360. */
  361. NV_ENC_ERR_DEVICE_NOT_EXIST,
  362. /**
  363. * This indicates that one or more of the pointers passed to the API call
  364. * is invalid.
  365. */
  366. NV_ENC_ERR_INVALID_PTR,
  367. /**
  368. * This indicates that completion event passed in ::NvEncEncodePicture() call
  369. * is invalid.
  370. */
  371. NV_ENC_ERR_INVALID_EVENT,
  372. /**
  373. * This indicates that one or more of the parameter passed to the API call
  374. * is invalid.
  375. */
  376. NV_ENC_ERR_INVALID_PARAM,
  377. /**
  378. * This indicates that an API call was made in wrong sequence/order.
  379. */
  380. NV_ENC_ERR_INVALID_CALL,
  381. /**
  382. * This indicates that the API call failed because it was unable to allocate
  383. * enough memory to perform the requested operation.
  384. */
  385. NV_ENC_ERR_OUT_OF_MEMORY,
  386. /**
  387. * This indicates that the encoder has not been initialized with
  388. * ::NvEncInitializeEncoder() or that initialization has failed.
  389. * The client cannot allocate input or output buffers or do any encoding
  390. * related operation before successfully initializing the encoder.
  391. */
  392. NV_ENC_ERR_ENCODER_NOT_INITIALIZED,
  393. /**
  394. * This indicates that an unsupported parameter was passed by the client.
  395. */
  396. NV_ENC_ERR_UNSUPPORTED_PARAM,
  397. /**
  398. * This indicates that the ::NvEncLockBitstream() failed to lock the output
  399. * buffer. This happens when the client makes a non blocking lock call to
  400. * access the output bitstream by passing NV_ENC_LOCK_BITSTREAM::doNotWait flag.
  401. * This is not a fatal error and client should retry the same operation after
  402. * few milliseconds.
  403. */
  404. NV_ENC_ERR_LOCK_BUSY,
  405. /**
  406. * This indicates that the size of the user buffer passed by the client is
  407. * insufficient for the requested operation.
  408. */
  409. NV_ENC_ERR_NOT_ENOUGH_BUFFER,
  410. /**
  411. * This indicates that an invalid struct version was used by the client.
  412. */
  413. NV_ENC_ERR_INVALID_VERSION,
  414. /**
  415. * This indicates that ::NvEncMapInputResource() API failed to map the client
  416. * provided input resource.
  417. */
  418. NV_ENC_ERR_MAP_FAILED,
  419. /**
  420. * This indicates encode driver requires more input buffers to produce an output
  421. * bitstream. If this error is returned from ::NvEncEncodePicture() API, this
  422. * is not a fatal error. If the client is encoding with B frames then,
  423. * ::NvEncEncodePicture() API might be buffering the input frame for re-ordering.
  424. *
  425. * A client operating in synchronous mode cannot call ::NvEncLockBitstream()
  426. * API on the output bitstream buffer if ::NvEncEncodePicture() returned the
  427. * ::NV_ENC_ERR_NEED_MORE_INPUT error code.
  428. * The client must continue providing input frames until encode driver returns
  429. * ::NV_ENC_SUCCESS. After receiving ::NV_ENC_SUCCESS status the client can call
  430. * ::NvEncLockBitstream() API on the output buffers in the same order in which
  431. * it has called ::NvEncEncodePicture().
  432. */
  433. NV_ENC_ERR_NEED_MORE_INPUT,
  434. /**
  435. * This indicates that the HW encoder is busy encoding and is unable to encode
  436. * the input. The client should call ::NvEncEncodePicture() again after few
  437. * milliseconds.
  438. */
  439. NV_ENC_ERR_ENCODER_BUSY,
  440. /**
  441. * This indicates that the completion event passed in ::NvEncEncodePicture()
  442. * API has not been registered with encoder driver using ::NvEncRegisterAsyncEvent().
  443. */
  444. NV_ENC_ERR_EVENT_NOT_REGISTERD,
  445. /**
  446. * This indicates that an unknown internal error has occurred.
  447. */
  448. NV_ENC_ERR_GENERIC,
  449. /**
  450. * This indicates that the client is attempting to use a feature
  451. * that is not available for the license type for the current system.
  452. */
  453. NV_ENC_ERR_INCOMPATIBLE_CLIENT_KEY,
  454. /**
  455. * This indicates that the client is attempting to use a feature
  456. * that is not implemented for the current version.
  457. */
  458. NV_ENC_ERR_UNIMPLEMENTED,
  459. /**
  460. * This indicates that the ::NvEncRegisterResource API failed to register the resource.
  461. */
  462. NV_ENC_ERR_RESOURCE_REGISTER_FAILED,
  463. /**
  464. * This indicates that the client is attempting to unregister a resource
  465. * that has not been successfully registered.
  466. */
  467. NV_ENC_ERR_RESOURCE_NOT_REGISTERED,
  468. /**
  469. * This indicates that the client is attempting to unmap a resource
  470. * that has not been successfully mapped.
  471. */
  472. NV_ENC_ERR_RESOURCE_NOT_MAPPED,
  473. } NVENCSTATUS;
  474. /**
  475. * Encode Picture encode flags.
  476. */
  477. typedef enum _NV_ENC_PIC_FLAGS
  478. {
  479. NV_ENC_PIC_FLAG_FORCEINTRA = 0x1, /**< Encode the current picture as an Intra picture */
  480. NV_ENC_PIC_FLAG_FORCEIDR = 0x2, /**< Encode the current picture as an IDR picture.
  481. This flag is only valid when Picture type decision is taken by the Encoder
  482. [_NV_ENC_INITIALIZE_PARAMS::enablePTD == 1]. */
  483. NV_ENC_PIC_FLAG_OUTPUT_SPSPPS = 0x4, /**< Write the sequence and picture header in encoded bitstream of the current picture */
  484. NV_ENC_PIC_FLAG_EOS = 0x8, /**< Indicates end of the input stream */
  485. } NV_ENC_PIC_FLAGS;
  486. /**
  487. * Memory heap to allocate input and output buffers.
  488. */
  489. typedef enum _NV_ENC_MEMORY_HEAP
  490. {
  491. NV_ENC_MEMORY_HEAP_AUTOSELECT = 0, /**< Memory heap to be decided by the encoder driver based on the usage */
  492. NV_ENC_MEMORY_HEAP_VID = 1, /**< Memory heap is in local video memory */
  493. NV_ENC_MEMORY_HEAP_SYSMEM_CACHED = 2, /**< Memory heap is in cached system memory */
  494. NV_ENC_MEMORY_HEAP_SYSMEM_UNCACHED = 3 /**< Memory heap is in uncached system memory */
  495. } NV_ENC_MEMORY_HEAP;
  496. /**
  497. * H.264 entropy coding modes.
  498. */
  499. typedef enum _NV_ENC_H264_ENTROPY_CODING_MODE
  500. {
  501. NV_ENC_H264_ENTROPY_CODING_MODE_AUTOSELECT = 0x0, /**< Entropy coding mode is auto selected by the encoder driver */
  502. NV_ENC_H264_ENTROPY_CODING_MODE_CABAC = 0x1, /**< Entropy coding mode is CABAC */
  503. NV_ENC_H264_ENTROPY_CODING_MODE_CAVLC = 0x2 /**< Entropy coding mode is CAVLC */
  504. } NV_ENC_H264_ENTROPY_CODING_MODE;
  505. /**
  506. * H.264 specific Bdirect modes
  507. */
  508. typedef enum _NV_ENC_H264_BDIRECT_MODE
  509. {
  510. NV_ENC_H264_BDIRECT_MODE_AUTOSELECT = 0x0, /**< BDirect mode is auto selected by the encoder driver */
  511. NV_ENC_H264_BDIRECT_MODE_DISABLE = 0x1, /**< Disable BDirect mode */
  512. NV_ENC_H264_BDIRECT_MODE_TEMPORAL = 0x2, /**< Temporal BDirect mode */
  513. NV_ENC_H264_BDIRECT_MODE_SPATIAL = 0x3 /**< Spatial BDirect mode */
  514. } NV_ENC_H264_BDIRECT_MODE;
  515. /**
  516. * H.264 specific FMO usage
  517. */
  518. typedef enum _NV_ENC_H264_FMO_MODE
  519. {
  520. NV_ENC_H264_FMO_AUTOSELECT = 0x0, /**< FMO usage is auto selected by the encoder driver */
  521. NV_ENC_H264_FMO_ENABLE = 0x1, /**< Enable FMO */
  522. NV_ENC_H264_FMO_DISABLE = 0x2, /**< Disble FMO */
  523. } NV_ENC_H264_FMO_MODE;
  524. /**
  525. * H.264 specific Adaptive Transform modes
  526. */
  527. typedef enum _NV_ENC_H264_ADAPTIVE_TRANSFORM_MODE
  528. {
  529. NV_ENC_H264_ADAPTIVE_TRANSFORM_AUTOSELECT = 0x0, /**< Adaptive Transform 8x8 mode is auto selected by the encoder driver*/
  530. NV_ENC_H264_ADAPTIVE_TRANSFORM_DISABLE = 0x1, /**< Adaptive Transform 8x8 mode disabled */
  531. NV_ENC_H264_ADAPTIVE_TRANSFORM_ENABLE = 0x2, /**< Adaptive Transform 8x8 mode should be used */
  532. } NV_ENC_H264_ADAPTIVE_TRANSFORM_MODE;
  533. /**
  534. * Stereo frame packing modes.
  535. */
  536. typedef enum _NV_ENC_STEREO_PACKING_MODE
  537. {
  538. NV_ENC_STEREO_PACKING_MODE_NONE = 0x0, /**< No Stereo packing required */
  539. NV_ENC_STEREO_PACKING_MODE_CHECKERBOARD = 0x1, /**< Checkerboard mode for packing stereo frames */
  540. NV_ENC_STEREO_PACKING_MODE_COLINTERLEAVE = 0x2, /**< Column Interleave mode for packing stereo frames */
  541. NV_ENC_STEREO_PACKING_MODE_ROWINTERLEAVE = 0x3, /**< Row Interleave mode for packing stereo frames */
  542. NV_ENC_STEREO_PACKING_MODE_SIDEBYSIDE = 0x4, /**< Side-by-side mode for packing stereo frames */
  543. NV_ENC_STEREO_PACKING_MODE_TOPBOTTOM = 0x5, /**< Top-Bottom mode for packing stereo frames */
  544. NV_ENC_STEREO_PACKING_MODE_FRAMESEQ = 0x6 /**< Frame Sequential mode for packing stereo frames */
  545. } NV_ENC_STEREO_PACKING_MODE;
  546. /**
  547. * Input Resource type
  548. */
  549. typedef enum _NV_ENC_INPUT_RESOURCE_TYPE
  550. {
  551. NV_ENC_INPUT_RESOURCE_TYPE_DIRECTX = 0x0, /**< input resource type is a directx9 surface*/
  552. NV_ENC_INPUT_RESOURCE_TYPE_CUDADEVICEPTR = 0x1, /**< input resource type is a cuda device pointer surface*/
  553. NV_ENC_INPUT_RESOURCE_TYPE_CUDAARRAY = 0x2, /**< input resource type is a cuda array surface */
  554. NV_ENC_INPUT_RESOURCE_TYPE_OPENGL_TEX = 0x3 /**< input resource type is an OpenGL texture */
  555. } NV_ENC_INPUT_RESOURCE_TYPE;
  556. /**
  557. * Encoder Device type
  558. */
  559. typedef enum _NV_ENC_DEVICE_TYPE
  560. {
  561. NV_ENC_DEVICE_TYPE_DIRECTX = 0x0, /**< encode device type is a directx9 device */
  562. NV_ENC_DEVICE_TYPE_CUDA = 0x1, /**< encode device type is a cuda device */
  563. NV_ENC_DEVICE_TYPE_OPENGL = 0x2 /**< encode device type is an OpenGL device.
  564. Use of this device type is supported only on Linux */
  565. } NV_ENC_DEVICE_TYPE;
  566. /**
  567. * Encoder capabilities enumeration.
  568. */
  569. typedef enum _NV_ENC_CAPS
  570. {
  571. /**
  572. * Maximum number of B-Frames supported.
  573. */
  574. NV_ENC_CAPS_NUM_MAX_BFRAMES,
  575. /**
  576. * Rate control modes supported.
  577. * \n The API return value is a bitmask of the values in NV_ENC_PARAMS_RC_MODE.
  578. */
  579. NV_ENC_CAPS_SUPPORTED_RATECONTROL_MODES,
  580. /**
  581. * Indicates HW support for field mode encoding.
  582. * \n 0 : Interlaced mode encoding is not supported.
  583. * \n 1 : Interlaced field mode encoding is supported.
  584. * \n 2 : Interlaced frame encoding and field mode encoding are both supported.
  585. */
  586. NV_ENC_CAPS_SUPPORT_FIELD_ENCODING,
  587. /**
  588. * Indicates HW support for monochrome mode encoding.
  589. * \n 0 : Monochrome mode not supported.
  590. * \n 1 : Monochrome mode supported.
  591. */
  592. NV_ENC_CAPS_SUPPORT_MONOCHROME,
  593. /**
  594. * Indicates HW support for FMO.
  595. * \n 0 : FMO not supported.
  596. * \n 1 : FMO supported.
  597. */
  598. NV_ENC_CAPS_SUPPORT_FMO,
  599. /**
  600. * Indicates HW capability for Quarter pel motion estimation.
  601. * \n 0 : QuarterPel Motion Estimation not supported.
  602. * \n 1 : QuarterPel Motion Estimation supported.
  603. */
  604. NV_ENC_CAPS_SUPPORT_QPELMV,
  605. /**
  606. * H.264 specific. Indicates HW support for BDirect modes.
  607. * \n 0 : BDirect mode encoding not supported.
  608. * \n 1 : BDirect mode encoding supported.
  609. */
  610. NV_ENC_CAPS_SUPPORT_BDIRECT_MODE,
  611. /**
  612. * H264 specific. Indicates HW support for CABAC entropy coding mode.
  613. * \n 0 : CABAC entropy coding not supported.
  614. * \n 1 : CABAC entropy coding supported.
  615. */
  616. NV_ENC_CAPS_SUPPORT_CABAC,
  617. /**
  618. * Indicates HW support for Adaptive Transform.
  619. * \n 0 : Adaptive Transform not supported.
  620. * \n 1 : Adaptive Transform supported.
  621. */
  622. NV_ENC_CAPS_SUPPORT_ADAPTIVE_TRANSFORM,
  623. /**
  624. * Reserved enum field.
  625. */
  626. NV_ENC_CAPS_SUPPORT_RESERVED,
  627. /**
  628. * Indicates HW support for encoding Temporal layers.
  629. * \n 0 : Encoding Temporal layers not supported.
  630. * \n 1 : Encoding Temporal layers supported.
  631. */
  632. NV_ENC_CAPS_NUM_MAX_TEMPORAL_LAYERS,
  633. /**
  634. * Indicates HW support for Hierarchical P frames.
  635. * \n 0 : Hierarchical P frames not supported.
  636. * \n 1 : Hierarchical P frames supported.
  637. */
  638. NV_ENC_CAPS_SUPPORT_HIERARCHICAL_PFRAMES,
  639. /**
  640. * Indicates HW support for Hierarchical B frames.
  641. * \n 0 : Hierarchical B frames not supported.
  642. * \n 1 : Hierarchical B frames supported.
  643. */
  644. NV_ENC_CAPS_SUPPORT_HIERARCHICAL_BFRAMES,
  645. /**
  646. * Maximum Encoding level supported (See ::NV_ENC_LEVEL for details).
  647. */
  648. NV_ENC_CAPS_LEVEL_MAX,
  649. /**
  650. * Minimum Encoding level supported (See ::NV_ENC_LEVEL for details).
  651. */
  652. NV_ENC_CAPS_LEVEL_MIN,
  653. /**
  654. * Indicates HW support for separate colour plane encoding.
  655. * \n 0 : Separate colour plane encoding not supported.
  656. * \n 1 : Separate colour plane encoding supported.
  657. */
  658. NV_ENC_CAPS_SEPARATE_COLOUR_PLANE,
  659. /**
  660. * Maximum output width supported.
  661. */
  662. NV_ENC_CAPS_WIDTH_MAX,
  663. /**
  664. * Maximum output height supported.
  665. */
  666. NV_ENC_CAPS_HEIGHT_MAX,
  667. /**
  668. * Indicates Temporal Scalability Support.
  669. * \n 0 : Temporal SVC encoding not supported.
  670. * \n 1 : Temporal SVC encoding supported.
  671. */
  672. NV_ENC_CAPS_SUPPORT_TEMPORAL_SVC,
  673. /**
  674. * Indicates Dynamic Encode Resolution Change Support.
  675. * Support added from NvEncodeAPI version 2.0.
  676. * \n 0 : Dynamic Encode Resolution Change not supported.
  677. * \n 1 : Dynamic Encode Resolution Change supported.
  678. */
  679. NV_ENC_CAPS_SUPPORT_DYN_RES_CHANGE,
  680. /**
  681. * Indicates Dynamic Encode Bitrate Change Support.
  682. * Support added from NvEncodeAPI version 2.0.
  683. * \n 0 : Dynamic Encode bitrate change not supported.
  684. * \n 1 : Dynamic Encode bitrate change supported.
  685. */
  686. NV_ENC_CAPS_SUPPORT_DYN_BITRATE_CHANGE,
  687. /**
  688. * Indicates Forcing Constant QP On The Fly Support.
  689. * Support added from NvEncodeAPI version 2.0.
  690. * \n 0 : Forcing constant QP on the fly not supported.
  691. * \n 1 : Forcing constant QP on the fly supported.
  692. */
  693. NV_ENC_CAPS_SUPPORT_DYN_FORCE_CONSTQP,
  694. /**
  695. * Indicates Dynamic rate control mode Change Support.
  696. * \n 0 : Dynamic rate control mode change not supported.
  697. * \n 1 : Dynamic rate control mode change supported.
  698. */
  699. NV_ENC_CAPS_SUPPORT_DYN_RCMODE_CHANGE,
  700. /**
  701. * Indicates Subframe readback support for slice-based encoding.
  702. * \n 0 : Subframe readback not supported.
  703. * \n 1 : Subframe readback supported.
  704. */
  705. NV_ENC_CAPS_SUPPORT_SUBFRAME_READBACK,
  706. /**
  707. * Indicates Constrained Encoding mode support.
  708. * Support added from NvEncodeAPI version 2.0.
  709. * \n 0 : Constrained encoding mode not supported.
  710. * \n 1 : Constarined encoding mode supported.
  711. * If this mode is supported client can enable this during initialisation.
  712. * Client can then force a picture to be coded as constrained picture where
  713. * each slice in a constrained picture will have constrained_intra_pred_flag set to 1
  714. * and disable_deblocking_filter_idc will be set to 2 and prediction vectors for inter
  715. * macroblocks in each slice will be restricted to the slice region.
  716. */
  717. NV_ENC_CAPS_SUPPORT_CONSTRAINED_ENCODING,
  718. /**
  719. * Indicates Intra Refresh Mode Support.
  720. * Support added from NvEncodeAPI version 2.0.
  721. * \n 0 : Intra Refresh Mode not supported.
  722. * \n 1 : Intra Refresh Mode supported.
  723. */
  724. NV_ENC_CAPS_SUPPORT_INTRA_REFRESH,
  725. /**
  726. * Indicates Custom VBV Bufer Size support. It can be used for capping frame size.
  727. * Support added from NvEncodeAPI version 2.0.
  728. * \n 0 : Custom VBV buffer size specification from client, not supported.
  729. * \n 1 : Custom VBV buffer size specification from client, supported.
  730. */
  731. NV_ENC_CAPS_SUPPORT_CUSTOM_VBV_BUF_SIZE,
  732. /**
  733. * Indicates Dynamic Slice Mode Support.
  734. * Support added from NvEncodeAPI version 2.0.
  735. * \n 0 : Dynamic Slice Mode not supported.
  736. * \n 1 : Dynamic Slice Mode supported.
  737. */
  738. NV_ENC_CAPS_SUPPORT_DYNAMIC_SLICE_MODE,
  739. /**
  740. * Indicates Reference Picture Invalidation Support.
  741. * Support added from NvEncodeAPI version 2.0.
  742. * \n 0 : Reference Picture Invalidation not supported.
  743. * \n 1 : Reference Picture Invalidation supported.
  744. */
  745. NV_ENC_CAPS_SUPPORT_REF_PIC_INVALIDATION,
  746. /**
  747. * Indicates support for PreProcessing.
  748. * The API return value is a bitmask of the values defined in ::NV_ENC_PREPROC_FLAGS
  749. */
  750. NV_ENC_CAPS_PREPROC_SUPPORT,
  751. /**
  752. * Indicates support Async mode.
  753. * \n 0 : Async Encode mode not supported.
  754. * \n 1 : Async Encode mode supported.
  755. */
  756. NV_ENC_CAPS_ASYNC_ENCODE_SUPPORT,
  757. /**
  758. * Maximum MBs per frame supported.
  759. */
  760. NV_ENC_CAPS_MB_NUM_MAX,
  761. /**
  762. * Maximum aggregate throughput in MBs per sec.
  763. */
  764. NV_ENC_CAPS_MB_PER_SEC_MAX,
  765. /**
  766. * Indicates HW support for YUV444 mode encoding.
  767. * \n 0 : YUV444 mode encoding not supported.
  768. * \n 1 : YUV444 mode encoding supported.
  769. */
  770. NV_ENC_CAPS_SUPPORT_YUV444_ENCODE,
  771. /**
  772. * Indicates HW support for lossless encoding.
  773. * \n 0 : lossless encoding not supported.
  774. * \n 1 : lossless encoding supported.
  775. */
  776. NV_ENC_CAPS_SUPPORT_LOSSLESS_ENCODE,
  777. /**
  778. * Indicates HW support for Sample Adaptive Offset.
  779. * \n 0 : SAO not supported.
  780. * \n 1 : SAO encoding supported.
  781. */
  782. NV_ENC_CAPS_SUPPORT_SAO,
  783. /**
  784. * Indicates HW support for MEOnly Mode.
  785. * \n 0 : MEOnly Mode not supported.
  786. * \n 1 : MEOnly Mode supported for I and P frames.
  787. * \n 2 : MEOnly Mode supported for I, P and B frames.
  788. */
  789. NV_ENC_CAPS_SUPPORT_MEONLY_MODE,
  790. /**
  791. * Indicates HW support for lookahead encoding (enableLookahead=1).
  792. * \n 0 : Lookahead not supported.
  793. * \n 1 : Lookahead supported.
  794. */
  795. NV_ENC_CAPS_SUPPORT_LOOKAHEAD,
  796. /**
  797. * Indicates HW support for temporal AQ encoding (enableTemporalAQ=1).
  798. * \n 0 : Temporal AQ not supported.
  799. * \n 1 : Temporal AQ supported.
  800. */
  801. NV_ENC_CAPS_SUPPORT_TEMPORAL_AQ,
  802. /**
  803. * Indicates HW support for 10 bit encoding.
  804. * \n 0 : 10 bit encoding not supported.
  805. * \n 1 : 10 bit encoding supported.
  806. */
  807. NV_ENC_CAPS_SUPPORT_10BIT_ENCODE,
  808. /**
  809. * Maximum number of Long Term Reference frames supported
  810. */
  811. NV_ENC_CAPS_NUM_MAX_LTR_FRAMES,
  812. /**
  813. * Indicates HW support for Weighted Predicition.
  814. * \n 0 : Weighted Predicition not supported.
  815. * \n 1 : Weighted Predicition supported.
  816. */
  817. NV_ENC_CAPS_SUPPORT_WEIGHTED_PREDICTION,
  818. /**
  819. * Reserved - Not to be used by clients.
  820. */
  821. NV_ENC_CAPS_EXPOSED_COUNT
  822. } NV_ENC_CAPS;
  823. /**
  824. * HEVC CU SIZE
  825. */
  826. typedef enum _NV_ENC_HEVC_CUSIZE
  827. {
  828. NV_ENC_HEVC_CUSIZE_AUTOSELECT = 0,
  829. NV_ENC_HEVC_CUSIZE_8x8 = 1,
  830. NV_ENC_HEVC_CUSIZE_16x16 = 2,
  831. NV_ENC_HEVC_CUSIZE_32x32 = 3,
  832. NV_ENC_HEVC_CUSIZE_64x64 = 4,
  833. }NV_ENC_HEVC_CUSIZE;
  834. /**
  835. * Input struct for querying Encoding capabilities.
  836. */
  837. typedef struct _NV_ENC_CAPS_PARAM
  838. {
  839. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_CAPS_PARAM_VER */
  840. NV_ENC_CAPS capsToQuery; /**< [in]: Specifies the encode capability to be queried. Client should pass a member for ::NV_ENC_CAPS enum. */
  841. uint32_t reserved[62]; /**< [in]: Reserved and must be set to 0 */
  842. } NV_ENC_CAPS_PARAM;
  843. /** NV_ENC_CAPS_PARAM struct version. */
  844. #define NV_ENC_CAPS_PARAM_VER NVENCAPI_STRUCT_VERSION(1)
  845. /**
  846. * Creation parameters for input buffer.
  847. */
  848. typedef struct _NV_ENC_CREATE_INPUT_BUFFER
  849. {
  850. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_CREATE_INPUT_BUFFER_VER */
  851. uint32_t width; /**< [in]: Input buffer width */
  852. uint32_t height; /**< [in]: Input buffer width */
  853. NV_ENC_MEMORY_HEAP memoryHeap; /**< [in]: Deprecated. Do not use */
  854. NV_ENC_BUFFER_FORMAT bufferFmt; /**< [in]: Input buffer format */
  855. uint32_t reserved; /**< [in]: Reserved and must be set to 0 */
  856. NV_ENC_INPUT_PTR inputBuffer; /**< [out]: Pointer to input buffer */
  857. void* pSysMemBuffer; /**< [in]: Pointer to existing sysmem buffer */
  858. uint32_t reserved1[57]; /**< [in]: Reserved and must be set to 0 */
  859. void* reserved2[63]; /**< [in]: Reserved and must be set to NULL */
  860. } NV_ENC_CREATE_INPUT_BUFFER;
  861. /** NV_ENC_CREATE_INPUT_BUFFER struct version. */
  862. #define NV_ENC_CREATE_INPUT_BUFFER_VER NVENCAPI_STRUCT_VERSION(1)
  863. /**
  864. * Creation parameters for output bitstream buffer.
  865. */
  866. typedef struct _NV_ENC_CREATE_BITSTREAM_BUFFER
  867. {
  868. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_CREATE_BITSTREAM_BUFFER_VER */
  869. uint32_t size; /**< [in]: Deprecated. Do not use */
  870. NV_ENC_MEMORY_HEAP memoryHeap; /**< [in]: Deprecated. Do not use */
  871. uint32_t reserved; /**< [in]: Reserved and must be set to 0 */
  872. NV_ENC_OUTPUT_PTR bitstreamBuffer; /**< [out]: Pointer to the output bitstream buffer */
  873. void* bitstreamBufferPtr; /**< [out]: Reserved and should not be used */
  874. uint32_t reserved1[58]; /**< [in]: Reserved and should be set to 0 */
  875. void* reserved2[64]; /**< [in]: Reserved and should be set to NULL */
  876. } NV_ENC_CREATE_BITSTREAM_BUFFER;
  877. /** NV_ENC_CREATE_BITSTREAM_BUFFER struct version. */
  878. #define NV_ENC_CREATE_BITSTREAM_BUFFER_VER NVENCAPI_STRUCT_VERSION(1)
  879. /**
  880. * Structs needed for ME only mode.
  881. */
  882. typedef struct _NV_ENC_MVECTOR
  883. {
  884. int16_t mvx; /**< the x component of MV in qpel units */
  885. int16_t mvy; /**< the y component of MV in qpel units */
  886. } NV_ENC_MVECTOR;
  887. /**
  888. * Motion vector structure per macroblock for H264 motion estimation.
  889. */
  890. typedef struct _NV_ENC_H264_MV_DATA
  891. {
  892. NV_ENC_MVECTOR mv[4]; /**< up to 4 vectors for 8x8 partition */
  893. uint8_t mbType; /**< 0 (I), 1 (P), 2 (IPCM), 3 (B) */
  894. uint8_t partitionType; /**< Specifies the block partition type. 0:16x16, 1:8x8, 2:16x8, 3:8x16 */
  895. uint16_t reserved; /**< reserved padding for alignment */
  896. uint32_t mbCost;
  897. } NV_ENC_H264_MV_DATA;
  898. /**
  899. * Motion vector structure per CU for HEVC motion estimation.
  900. */
  901. typedef struct _NV_ENC_HEVC_MV_DATA
  902. {
  903. NV_ENC_MVECTOR mv[4]; /**< up to 4 vectors within a CU */
  904. uint8_t cuType; /**< 0 (I), 1(P), 2 (Skip) */
  905. uint8_t cuSize; /**< 0: 8x8, 1: 16x16, 2: 32x32, 3: 64x64 */
  906. uint8_t partitionMode; /**< The CU partition mode
  907. 0 (2Nx2N), 1 (2NxN), 2(Nx2N), 3 (NxN),
  908. 4 (2NxnU), 5 (2NxnD), 6(nLx2N), 7 (nRx2N) */
  909. uint8_t lastCUInCTB; /**< Marker to separate CUs in the current CTB from CUs in the next CTB */
  910. } NV_ENC_HEVC_MV_DATA;
  911. /**
  912. * Creation parameters for output motion vector buffer for ME only mode.
  913. */
  914. typedef struct _NV_ENC_CREATE_MV_BUFFER
  915. {
  916. uint32_t version; /**< [in]: Struct version. Must be set to NV_ENC_CREATE_MV_BUFFER_VER */
  917. NV_ENC_OUTPUT_PTR mvBuffer; /**< [out]: Pointer to the output motion vector buffer */
  918. uint32_t reserved1[255]; /**< [in]: Reserved and should be set to 0 */
  919. void* reserved2[63]; /**< [in]: Reserved and should be set to NULL */
  920. } NV_ENC_CREATE_MV_BUFFER;
  921. /** NV_ENC_CREATE_MV_BUFFER struct version*/
  922. #define NV_ENC_CREATE_MV_BUFFER_VER NVENCAPI_STRUCT_VERSION(1)
  923. /**
  924. * QP value for frames
  925. */
  926. typedef struct _NV_ENC_QP
  927. {
  928. uint32_t qpInterP;
  929. uint32_t qpInterB;
  930. uint32_t qpIntra;
  931. } NV_ENC_QP;
  932. /**
  933. * Rate Control Configuration Paramters
  934. */
  935. typedef struct _NV_ENC_RC_PARAMS
  936. {
  937. uint32_t version;
  938. NV_ENC_PARAMS_RC_MODE rateControlMode; /**< [in]: Specifies the rate control mode. Check support for various rate control modes using ::NV_ENC_CAPS_SUPPORTED_RATECONTROL_MODES caps. */
  939. NV_ENC_QP constQP; /**< [in]: Specifies the initial QP to be used for encoding, these values would be used for all frames if in Constant QP mode. */
  940. uint32_t averageBitRate; /**< [in]: Specifies the average bitrate(in bits/sec) used for encoding. */
  941. uint32_t maxBitRate; /**< [in]: Specifies the maximum bitrate for the encoded output. This is used for VBR and ignored for CBR mode. */
  942. uint32_t vbvBufferSize; /**< [in]: Specifies the VBV(HRD) buffer size. in bits. Set 0 to use the default VBV buffer size. */
  943. uint32_t vbvInitialDelay; /**< [in]: Specifies the VBV(HRD) initial delay in bits. Set 0 to use the default VBV initial delay .*/
  944. uint32_t enableMinQP :1; /**< [in]: Set this to 1 if minimum QP used for rate control. */
  945. uint32_t enableMaxQP :1; /**< [in]: Set this to 1 if maximum QP used for rate control. */
  946. uint32_t enableInitialRCQP :1; /**< [in]: Set this to 1 if user suppplied initial QP is used for rate control. */
  947. uint32_t enableAQ :1; /**< [in]: Set this to 1 to enable adaptive quantization (Spatial). */
  948. uint32_t enableExtQPDeltaMap :1; /**< [in]: Set this to 1 to enable additional QP modifier for each MB supplied by client though signed byte array pointed to by NV_ENC_PIC_PARAMS::qpDeltaMap (Not Supported when AQ(Spatial/Temporal) is enabled) */
  949. uint32_t enableLookahead :1; /**< [in]: Set this to 1 to enable lookahead with depth <lookaheadDepth> (if lookahead is enabled, input frames must remain available to the encoder until encode completion) */
  950. uint32_t disableIadapt :1; /**< [in]: Set this to 1 to disable adaptive I-frame insertion at scene cuts (only has an effect when lookahead is enabled) */
  951. uint32_t disableBadapt :1; /**< [in]: Set this to 1 to disable adaptive B-frame decision (only has an effect when lookahead is enabled) */
  952. uint32_t enableTemporalAQ :1; /**< [in]: Set this to 1 to enable temporal AQ for H.264 */
  953. uint32_t zeroReorderDelay :1; /**< [in]: Set this to 1 to indicate zero latency operation (no reordering delay, num_reorder_frames=0) */
  954. uint32_t enableNonRefP :1; /**< [in]: Set this to 1 to enable automatic insertion of non-reference P-frames (no effect if enablePTD=0) */
  955. uint32_t strictGOPTarget :1; /**< [in]: Set this to 1 to minimize GOP-to-GOP rate fluctuations */
  956. uint32_t aqStrength :4; /**< [in]: When AQ (Spatial) is enabled (i.e. NV_ENC_RC_PARAMS::enableAQ is set), this field is used to specify AQ strength. AQ strength scale is from 1 (low) - 15 (aggressive). If not set, strength is autoselected by driver. */
  957. uint32_t reservedBitFields :16; /**< [in]: Reserved bitfields and must be set to 0 */
  958. NV_ENC_QP minQP; /**< [in]: Specifies the minimum QP used for rate control. Client must set NV_ENC_CONFIG::enableMinQP to 1. */
  959. NV_ENC_QP maxQP; /**< [in]: Specifies the maximum QP used for rate control. Client must set NV_ENC_CONFIG::enableMaxQP to 1. */
  960. NV_ENC_QP initialRCQP; /**< [in]: Specifies the initial QP used for rate control. Client must set NV_ENC_CONFIG::enableInitialRCQP to 1. */
  961. uint32_t temporallayerIdxMask; /**< [in]: Specifies the temporal layers (as a bitmask) whose QPs have changed. Valid max bitmask is [2^NV_ENC_CAPS_NUM_MAX_TEMPORAL_LAYERS - 1] */
  962. uint8_t temporalLayerQP[8]; /**< [in]: Specifies the temporal layer QPs used for rate control. Temporal layer index is used as as the array index */
  963. uint8_t targetQuality; /**< [in]: Target CQ (Constant Quality) level for VBR mode (range 0-51 with 0-automatic) */
  964. uint8_t targetQualityLSB; /**< [in]: Fractional part of target quality (as 8.8 fixed point format) */
  965. uint16_t lookaheadDepth; /**< [in]: Maximum depth of lookahead with range 0-32 (only used if enableLookahead=1) */
  966. uint32_t reserved[9];
  967. } NV_ENC_RC_PARAMS;
  968. /** macro for constructing the version field of ::_NV_ENC_RC_PARAMS */
  969. #define NV_ENC_RC_PARAMS_VER NVENCAPI_STRUCT_VERSION(1)
  970. /**
  971. * \struct _NV_ENC_CONFIG_H264_VUI_PARAMETERS
  972. * H264 Video Usability Info parameters
  973. */
  974. typedef struct _NV_ENC_CONFIG_H264_VUI_PARAMETERS
  975. {
  976. uint32_t overscanInfoPresentFlag; /**< [in]: if set to 1 , it specifies that the overscanInfo is present */
  977. uint32_t overscanInfo; /**< [in]: Specifies the overscan info(as defined in Annex E of the ITU-T Specification). */
  978. uint32_t videoSignalTypePresentFlag; /**< [in]: If set to 1, it specifies that the videoFormat, videoFullRangeFlag and colourDescriptionPresentFlag are present. */
  979. uint32_t videoFormat; /**< [in]: Specifies the source video format(as defined in Annex E of the ITU-T Specification).*/
  980. uint32_t videoFullRangeFlag; /**< [in]: Specifies the output range of the luma and chroma samples(as defined in Annex E of the ITU-T Specification). */
  981. uint32_t colourDescriptionPresentFlag; /**< [in]: If set to 1, it specifies that the colourPrimaries, transferCharacteristics and colourMatrix are present. */
  982. uint32_t colourPrimaries; /**< [in]: Specifies color primaries for converting to RGB(as defined in Annex E of the ITU-T Specification) */
  983. uint32_t transferCharacteristics; /**< [in]: Specifies the opto-electronic transfer characteristics to use (as defined in Annex E of the ITU-T Specification) */
  984. uint32_t colourMatrix; /**< [in]: Specifies the matrix coefficients used in deriving the luma and chroma from the RGB primaries (as defined in Annex E of the ITU-T Specification). */
  985. uint32_t chromaSampleLocationFlag; /**< [in]: if set to 1 , it specifies that the chromaSampleLocationTop and chromaSampleLocationBot are present.*/
  986. uint32_t chromaSampleLocationTop; /**< [in]: Specifies the chroma sample location for top field(as defined in Annex E of the ITU-T Specification) */
  987. uint32_t chromaSampleLocationBot; /**< [in]: Specifies the chroma sample location for bottom field(as defined in Annex E of the ITU-T Specification) */
  988. uint32_t bitstreamRestrictionFlag; /**< [in]: if set to 1, it specifies the bitstream restriction parameters are present in the bitstream.*/
  989. uint32_t reserved[15];
  990. }NV_ENC_CONFIG_H264_VUI_PARAMETERS;
  991. typedef NV_ENC_CONFIG_H264_VUI_PARAMETERS NV_ENC_CONFIG_HEVC_VUI_PARAMETERS;
  992. /**
  993. * \struct _NVENC_EXTERNAL_ME_HINT_COUNTS_PER_BLOCKTYPE
  994. * External motion vector hint counts per block type.
  995. * H264 supports multiple hint while HEVC supports one hint for each valid candidate.
  996. */
  997. typedef struct _NVENC_EXTERNAL_ME_HINT_COUNTS_PER_BLOCKTYPE
  998. {
  999. uint32_t numCandsPerBlk16x16 : 4; /**< [in]: Supported for H264,HEVC.It Specifies the number of candidates per 16x16 block. */
  1000. uint32_t numCandsPerBlk16x8 : 4; /**< [in]: Supported for H264 only.Specifies the number of candidates per 16x8 block. */
  1001. uint32_t numCandsPerBlk8x16 : 4; /**< [in]: Supported for H264 only.Specifies the number of candidates per 8x16 block. */
  1002. uint32_t numCandsPerBlk8x8 : 4; /**< [in]: Supported for H264,HEVC.Specifies the number of candidates per 8x8 block. */
  1003. uint32_t reserved : 16; /**< [in]: Reserved for padding. */
  1004. uint32_t reserved1[3]; /**< [in]: Reserved for future use. */
  1005. } NVENC_EXTERNAL_ME_HINT_COUNTS_PER_BLOCKTYPE;
  1006. /**
  1007. * \struct _NVENC_EXTERNAL_ME_HINT
  1008. * External Motion Vector hint structure.
  1009. */
  1010. typedef struct _NVENC_EXTERNAL_ME_HINT
  1011. {
  1012. int32_t mvx : 12; /**< [in]: Specifies the x component of integer pixel MV (relative to current MB) S12.0. */
  1013. int32_t mvy : 10; /**< [in]: Specifies the y component of integer pixel MV (relative to current MB) S10.0 .*/
  1014. int32_t refidx : 5; /**< [in]: Specifies the reference index (31=invalid). Current we support only 1 reference frame per direction for external hints, so \p refidx must be 0. */
  1015. int32_t dir : 1; /**< [in]: Specifies the direction of motion estimation . 0=L0 1=L1.*/
  1016. int32_t partType : 2; /**< [in]: Specifies the block partition type.0=16x16 1=16x8 2=8x16 3=8x8 (blocks in partition must be consecutive).*/
  1017. int32_t lastofPart : 1; /**< [in]: Set to 1 for the last MV of (sub) partition */
  1018. int32_t lastOfMB : 1; /**< [in]: Set to 1 for the last MV of macroblock. */
  1019. } NVENC_EXTERNAL_ME_HINT;
  1020. /**
  1021. * \struct _NV_ENC_CONFIG_H264
  1022. * H264 encoder configuration parameters
  1023. */
  1024. typedef struct _NV_ENC_CONFIG_H264
  1025. {
  1026. uint32_t enableTemporalSVC :1; /**< [in]: Set to 1 to enable SVC temporal*/
  1027. uint32_t enableStereoMVC :1; /**< [in]: Set to 1 to enable stereo MVC*/
  1028. uint32_t hierarchicalPFrames :1; /**< [in]: Set to 1 to enable hierarchical PFrames */
  1029. uint32_t hierarchicalBFrames :1; /**< [in]: Set to 1 to enable hierarchical BFrames */
  1030. uint32_t outputBufferingPeriodSEI :1; /**< [in]: Set to 1 to write SEI buffering period syntax in the bitstream */
  1031. uint32_t outputPictureTimingSEI :1; /**< [in]: Set to 1 to write SEI picture timing syntax in the bitstream. When set for following rateControlMode : NV_ENC_PARAMS_RC_CBR, NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ,
  1032. NV_ENC_PARAMS_RC_CBR_HQ, filler data is inserted if needed to achieve hrd bitrate */
  1033. uint32_t outputAUD :1; /**< [in]: Set to 1 to write access unit delimiter syntax in bitstream */
  1034. uint32_t disableSPSPPS :1; /**< [in]: Set to 1 to disable writing of Sequence and Picture parameter info in bitstream */
  1035. uint32_t outputFramePackingSEI :1; /**< [in]: Set to 1 to enable writing of frame packing arrangement SEI messages to bitstream */
  1036. uint32_t outputRecoveryPointSEI :1; /**< [in]: Set to 1 to enable writing of recovery point SEI message */
  1037. uint32_t enableIntraRefresh :1; /**< [in]: Set to 1 to enable gradual decoder refresh or intra refresh. If the GOP structure uses B frames this will be ignored */
  1038. uint32_t enableConstrainedEncoding :1; /**< [in]: Set this to 1 to enable constrainedFrame encoding where each slice in the constarined picture is independent of other slices
  1039. Check support for constrained encoding using ::NV_ENC_CAPS_SUPPORT_CONSTRAINED_ENCODING caps. */
  1040. uint32_t repeatSPSPPS :1; /**< [in]: Set to 1 to enable writing of Sequence and Picture parameter for every IDR frame */
  1041. uint32_t enableVFR :1; /**< [in]: Set to 1 to enable variable frame rate. */
  1042. uint32_t enableLTR :1; /**< [in]: Set to 1 to enable LTR (Long Term Reference) frame support. LTR can be used in two modes: "LTR Trust" mode and "LTR Per Picture" mode.
  1043. LTR Trust mode: In this mode, ltrNumFrames pictures after IDR are automatically marked as LTR. This mode is enabled by setting ltrTrustMode = 1.
  1044. Use of LTR Trust mode is strongly discouraged as this mode may be deprecated in future.
  1045. LTR Per Picture mode: In this mode, client can control whether the current picture should be marked as LTR. Enable this mode by setting
  1046. ltrTrustMode = 0 and ltrMarkFrame = 1 for the picture to be marked as LTR. This is the preferred mode
  1047. for using LTR.
  1048. Note that LTRs are not supported if encoding session is configured with B-frames */
  1049. uint32_t qpPrimeYZeroTransformBypassFlag :1; /**< [in]: To enable lossless encode set this to 1, set QP to 0 and RC_mode to NV_ENC_PARAMS_RC_CONSTQP and profile to HIGH_444_PREDICTIVE_PROFILE.
  1050. Check support for lossless encoding using ::NV_ENC_CAPS_SUPPORT_LOSSLESS_ENCODE caps. */
  1051. uint32_t useConstrainedIntraPred :1; /**< [in]: Set 1 to enable constrained intra prediction. */
  1052. uint32_t reservedBitFields :15; /**< [in]: Reserved bitfields and must be set to 0 */
  1053. uint32_t level; /**< [in]: Specifies the encoding level. Client is recommended to set this to NV_ENC_LEVEL_AUTOSELECT in order to enable the NvEncodeAPI interface to select the correct level. */
  1054. uint32_t idrPeriod; /**< [in]: Specifies the IDR interval. If not set, this is made equal to gopLength in NV_ENC_CONFIG.Low latency application client can set IDR interval to NVENC_INFINITE_GOPLENGTH so that IDR frames are not inserted automatically. */
  1055. uint32_t separateColourPlaneFlag; /**< [in]: Set to 1 to enable 4:4:4 separate colour planes */
  1056. uint32_t disableDeblockingFilterIDC; /**< [in]: Specifies the deblocking filter mode. Permissible value range: [0,2] */
  1057. uint32_t numTemporalLayers; /**< [in]: Specifies max temporal layers to be used for hierarchical coding. Valid value range is [1,::NV_ENC_CAPS_NUM_MAX_TEMPORAL_LAYERS] */
  1058. uint32_t spsId; /**< [in]: Specifies the SPS id of the sequence header */
  1059. uint32_t ppsId; /**< [in]: Specifies the PPS id of the picture header */
  1060. NV_ENC_H264_ADAPTIVE_TRANSFORM_MODE adaptiveTransformMode; /**< [in]: Specifies the AdaptiveTransform Mode. Check support for AdaptiveTransform mode using ::NV_ENC_CAPS_SUPPORT_ADAPTIVE_TRANSFORM caps. */
  1061. NV_ENC_H264_FMO_MODE fmoMode; /**< [in]: Specified the FMO Mode. Check support for FMO using ::NV_ENC_CAPS_SUPPORT_FMO caps. */
  1062. NV_ENC_H264_BDIRECT_MODE bdirectMode; /**< [in]: Specifies the BDirect mode. Check support for BDirect mode using ::NV_ENC_CAPS_SUPPORT_BDIRECT_MODE caps.*/
  1063. NV_ENC_H264_ENTROPY_CODING_MODE entropyCodingMode; /**< [in]: Specifies the entropy coding mode. Check support for CABAC mode using ::NV_ENC_CAPS_SUPPORT_CABAC caps. */
  1064. NV_ENC_STEREO_PACKING_MODE stereoMode; /**< [in]: Specifies the stereo frame packing mode which is to be signalled in frame packing arrangement SEI */
  1065. uint32_t intraRefreshPeriod; /**< [in]: Specifies the interval between successive intra refresh if enableIntrarefresh is set. Requires enableIntraRefresh to be set.
  1066. Will be disabled if NV_ENC_CONFIG::gopLength is not set to NVENC_INFINITE_GOPLENGTH. */
  1067. uint32_t intraRefreshCnt; /**< [in]: Specifies the length of intra refresh in number of frames for periodic intra refresh. This value should be smaller than intraRefreshPeriod */
  1068. uint32_t maxNumRefFrames; /**< [in]: Specifies the DPB size used for encoding. Setting it to 0 will let driver use the default dpb size.
  1069. The low latency application which wants to invalidate reference frame as an error resilience tool
  1070. is recommended to use a large DPB size so that the encoder can keep old reference frames which can be used if recent
  1071. frames are invalidated. */
  1072. uint32_t sliceMode; /**< [in]: This parameter in conjunction with sliceModeData specifies the way in which the picture is divided into slices
  1073. sliceMode = 0 MB based slices, sliceMode = 1 Byte based slices, sliceMode = 2 MB row based slices, sliceMode = 3, numSlices in Picture
  1074. When forceIntraRefreshWithFrameCnt is set it will have priority over sliceMode setting
  1075. When sliceMode == 0 and sliceModeData == 0 whole picture will be coded with one slice */
  1076. uint32_t sliceModeData; /**< [in]: Specifies the parameter needed for sliceMode. For:
  1077. sliceMode = 0, sliceModeData specifies # of MBs in each slice (except last slice)
  1078. sliceMode = 1, sliceModeData specifies maximum # of bytes in each slice (except last slice)
  1079. sliceMode = 2, sliceModeData specifies # of MB rows in each slice (except last slice)
  1080. sliceMode = 3, sliceModeData specifies number of slices in the picture. Driver will divide picture into slices optimally */
  1081. NV_ENC_CONFIG_H264_VUI_PARAMETERS h264VUIParameters; /**< [in]: Specifies the H264 video usability info pamameters */
  1082. uint32_t ltrNumFrames; /**< [in]: Specifies the number of LTR frames. This parameter has different meaning in two LTR modes.
  1083. In "LTR Trust" mode (ltrTrustMode = 1), encoder will mark the first ltrNumFrames base layer reference frames within each IDR interval as LTR.
  1084. In "LTR Per Picture" mode (ltrTrustMode = 0 and ltrMarkFrame = 1), ltrNumFrames specifies maximum number of LTR frames in DPB. */
  1085. uint32_t ltrTrustMode; /**< [in]: Specifies the LTR operating mode. See comments near NV_ENC_CONFIG_H264::enableLTR for description of the two modes.
  1086. Set to 1 to use "LTR Trust" mode of LTR operation. Clients are discouraged to use "LTR Trust" mode as this mode may
  1087. be deprecated in future releases.
  1088. Set to 0 when using "LTR Per Picture" mode of LTR operation. */
  1089. uint32_t chromaFormatIDC; /**< [in]: Specifies the chroma format. Should be set to 1 for yuv420 input, 3 for yuv444 input.
  1090. Check support for YUV444 encoding using ::NV_ENC_CAPS_SUPPORT_YUV444_ENCODE caps.*/
  1091. uint32_t maxTemporalLayers; /**< [in]: Specifies the max temporal layer used for hierarchical coding. */
  1092. uint32_t reserved1[270]; /**< [in]: Reserved and must be set to 0 */
  1093. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1094. } NV_ENC_CONFIG_H264;
  1095. /**
  1096. * \struct _NV_ENC_CONFIG_HEVC
  1097. * HEVC encoder configuration parameters to be set during initialization.
  1098. */
  1099. typedef struct _NV_ENC_CONFIG_HEVC
  1100. {
  1101. uint32_t level; /**< [in]: Specifies the level of the encoded bitstream.*/
  1102. uint32_t tier; /**< [in]: Specifies the level tier of the encoded bitstream.*/
  1103. NV_ENC_HEVC_CUSIZE minCUSize; /**< [in]: Specifies the minimum size of luma coding unit.*/
  1104. NV_ENC_HEVC_CUSIZE maxCUSize; /**< [in]: Specifies the maximum size of luma coding unit. Currently NVENC SDK only supports maxCUSize equal to NV_ENC_HEVC_CUSIZE_32x32.*/
  1105. uint32_t useConstrainedIntraPred :1; /**< [in]: Set 1 to enable constrained intra prediction. */
  1106. uint32_t disableDeblockAcrossSliceBoundary :1; /**< [in]: Set 1 to disable in loop filtering across slice boundary.*/
  1107. uint32_t outputBufferingPeriodSEI :1; /**< [in]: Set 1 to write SEI buffering period syntax in the bitstream */
  1108. uint32_t outputPictureTimingSEI :1; /**< [in]: Set 1 to write SEI picture timing syntax in the bitstream */
  1109. uint32_t outputAUD :1; /**< [in]: Set 1 to write Access Unit Delimiter syntax. */
  1110. uint32_t enableLTR :1; /**< [in]: Set to 1 to enable LTR (Long Term Reference) frame support. LTR can be used in two modes: "LTR Trust" mode and "LTR Per Picture" mode.
  1111. LTR Trust mode: In this mode, ltrNumFrames pictures after IDR are automatically marked as LTR. This mode is enabled by setting ltrTrustMode = 1.
  1112. Use of LTR Trust mode is strongly discouraged as this mode may be deprecated in future releases.
  1113. LTR Per Picture mode: In this mode, client can control whether the current picture should be marked as LTR. Enable this mode by setting
  1114. ltrTrustMode = 0 and ltrMarkFrame = 1 for the picture to be marked as LTR. This is the preferred mode
  1115. for using LTR.
  1116. Note that LTRs are not supported if encoding session is configured with B-frames */
  1117. uint32_t disableSPSPPS :1; /**< [in]: Set 1 to disable VPS,SPS and PPS signalling in the bitstream. */
  1118. uint32_t repeatSPSPPS :1; /**< [in]: Set 1 to output VPS,SPS and PPS for every IDR frame.*/
  1119. uint32_t enableIntraRefresh :1; /**< [in]: Set 1 to enable gradual decoder refresh or intra refresh. If the GOP structure uses B frames this will be ignored */
  1120. uint32_t chromaFormatIDC :2; /**< [in]: Specifies the chroma format. Should be set to 1 for yuv420 input, 3 for yuv444 input.*/
  1121. uint32_t pixelBitDepthMinus8 :3; /**< [in]: Specifies pixel bit depth minus 8. Should be set to 0 for 8 bit input, 2 for 10 bit input.*/
  1122. uint32_t reserved :18; /**< [in]: Reserved bitfields.*/
  1123. uint32_t idrPeriod; /**< [in]: Specifies the IDR interval. If not set, this is made equal to gopLength in NV_ENC_CONFIG.Low latency application client can set IDR interval to NVENC_INFINITE_GOPLENGTH so that IDR frames are not inserted automatically. */
  1124. uint32_t intraRefreshPeriod; /**< [in]: Specifies the interval between successive intra refresh if enableIntrarefresh is set. Requires enableIntraRefresh to be set.
  1125. Will be disabled if NV_ENC_CONFIG::gopLength is not set to NVENC_INFINITE_GOPLENGTH. */
  1126. uint32_t intraRefreshCnt; /**< [in]: Specifies the length of intra refresh in number of frames for periodic intra refresh. This value should be smaller than intraRefreshPeriod */
  1127. uint32_t maxNumRefFramesInDPB; /**< [in]: Specifies the maximum number of references frames in the DPB.*/
  1128. uint32_t ltrNumFrames; /**< [in]: This parameter has different meaning in two LTR modes.
  1129. In "LTR Trust" mode (ltrTrustMode = 1), encoder will mark the first ltrNumFrames base layer reference frames within each IDR interval as LTR.
  1130. In "LTR Per Picture" mode (ltrTrustMode = 0 and ltrMarkFrame = 1), ltrNumFrames specifies maximum number of LTR frames in DPB. */
  1131. uint32_t vpsId; /**< [in]: Specifies the VPS id of the video parameter set */
  1132. uint32_t spsId; /**< [in]: Specifies the SPS id of the sequence header */
  1133. uint32_t ppsId; /**< [in]: Specifies the PPS id of the picture header */
  1134. uint32_t sliceMode; /**< [in]: This parameter in conjunction with sliceModeData specifies the way in which the picture is divided into slices
  1135. sliceMode = 0 CTU based slices, sliceMode = 1 Byte based slices, sliceMode = 2 CTU row based slices, sliceMode = 3, numSlices in Picture
  1136. When sliceMode == 0 and sliceModeData == 0 whole picture will be coded with one slice */
  1137. uint32_t sliceModeData; /**< [in]: Specifies the parameter needed for sliceMode. For:
  1138. sliceMode = 0, sliceModeData specifies # of CTUs in each slice (except last slice)
  1139. sliceMode = 1, sliceModeData specifies maximum # of bytes in each slice (except last slice)
  1140. sliceMode = 2, sliceModeData specifies # of CTU rows in each slice (except last slice)
  1141. sliceMode = 3, sliceModeData specifies number of slices in the picture. Driver will divide picture into slices optimally */
  1142. uint32_t maxTemporalLayersMinus1; /**< [in]: Specifies the max temporal layer used for hierarchical coding. */
  1143. NV_ENC_CONFIG_HEVC_VUI_PARAMETERS hevcVUIParameters; /**< [in]: Specifies the HEVC video usability info pamameters */
  1144. uint32_t ltrTrustMode; /**< [in]: Specifies the LTR operating mode. See comments near NV_ENC_CONFIG_HEVC::enableLTR for description of the two modes.
  1145. Set to 1 to use "LTR Trust" mode of LTR operation. Clients are discouraged to use "LTR Trust" mode as this mode may
  1146. be deprecated in future releases.
  1147. Set to 0 when using "LTR Per Picture" mode of LTR operation. */
  1148. uint32_t reserved1[217]; /**< [in]: Reserved and must be set to 0.*/
  1149. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1150. } NV_ENC_CONFIG_HEVC;
  1151. /**
  1152. * \struct _NV_ENC_CONFIG_H264_MEONLY
  1153. * H264 encoder configuration parameters for ME only Mode
  1154. *
  1155. */
  1156. typedef struct _NV_ENC_CONFIG_H264_MEONLY
  1157. {
  1158. uint32_t disablePartition16x16 :1; /**< [in]: Disable MotionEstimation on 16x16 blocks*/
  1159. uint32_t disablePartition8x16 :1; /**< [in]: Disable MotionEstimation on 8x16 blocks*/
  1160. uint32_t disablePartition16x8 :1; /**< [in]: Disable MotionEstimation on 16x8 blocks*/
  1161. uint32_t disablePartition8x8 :1; /**< [in]: Disable MotionEstimation on 8x8 blocks*/
  1162. uint32_t disableIntraSearch :1; /**< [in]: Disable Intra search during MotionEstimation*/
  1163. uint32_t bStereoEnable :1; /**< [in]: Enable Stereo Mode for Motion Estimation where each view is independently executed*/
  1164. uint32_t reserved :26; /**< [in]: Reserved and must be set to 0 */
  1165. uint32_t reserved1 [255]; /**< [in]: Reserved and must be set to 0 */
  1166. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1167. } NV_ENC_CONFIG_H264_MEONLY;
  1168. /**
  1169. * \struct _NV_ENC_CONFIG_HEVC_MEONLY
  1170. * HEVC encoder configuration parameters for ME only Mode
  1171. *
  1172. */
  1173. typedef struct _NV_ENC_CONFIG_HEVC_MEONLY
  1174. {
  1175. uint32_t reserved [256]; /**< [in]: Reserved and must be set to 0 */
  1176. void* reserved1[64]; /**< [in]: Reserved and must be set to NULL */
  1177. } NV_ENC_CONFIG_HEVC_MEONLY;
  1178. /**
  1179. * \struct _NV_ENC_CODEC_CONFIG
  1180. * Codec-specific encoder configuration parameters to be set during initialization.
  1181. */
  1182. typedef union _NV_ENC_CODEC_CONFIG
  1183. {
  1184. NV_ENC_CONFIG_H264 h264Config; /**< [in]: Specifies the H.264-specific encoder configuration. */
  1185. NV_ENC_CONFIG_HEVC hevcConfig; /**< [in]: Specifies the HEVC-specific encoder configuration. */
  1186. NV_ENC_CONFIG_H264_MEONLY h264MeOnlyConfig; /**< [in]: Specifies the H.264-specific ME only encoder configuration. */
  1187. NV_ENC_CONFIG_HEVC_MEONLY hevcMeOnlyConfig; /**< [in]: Specifies the HEVC-specific ME only encoder configuration. */
  1188. uint32_t reserved[320]; /**< [in]: Reserved and must be set to 0 */
  1189. } NV_ENC_CODEC_CONFIG;
  1190. /**
  1191. * \struct _NV_ENC_CONFIG
  1192. * Encoder configuration parameters to be set during initialization.
  1193. */
  1194. typedef struct _NV_ENC_CONFIG
  1195. {
  1196. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_CONFIG_VER. */
  1197. GUID profileGUID; /**< [in]: Specifies the codec profile guid. If client specifies \p NV_ENC_CODEC_PROFILE_AUTOSELECT_GUID the NvEncodeAPI interface will select the appropriate codec profile. */
  1198. uint32_t gopLength; /**< [in]: Specifies the number of pictures in one GOP. Low latency application client can set goplength to NVENC_INFINITE_GOPLENGTH so that keyframes are not inserted automatically. */
  1199. int32_t frameIntervalP; /**< [in]: Specifies the GOP pattern as follows: \p frameIntervalP = 0: I, 1: IPP, 2: IBP, 3: IBBP If goplength is set to NVENC_INFINITE_GOPLENGTH \p frameIntervalP should be set to 1. */
  1200. uint32_t monoChromeEncoding; /**< [in]: Set this to 1 to enable monochrome encoding for this session. */
  1201. NV_ENC_PARAMS_FRAME_FIELD_MODE frameFieldMode; /**< [in]: Specifies the frame/field mode.
  1202. Check support for field encoding using ::NV_ENC_CAPS_SUPPORT_FIELD_ENCODING caps.
  1203. Using a frameFieldMode other than NV_ENC_PARAMS_FRAME_FIELD_MODE_FRAME for RGB input is not supported. */
  1204. NV_ENC_MV_PRECISION mvPrecision; /**< [in]: Specifies the desired motion vector prediction precision. */
  1205. NV_ENC_RC_PARAMS rcParams; /**< [in]: Specifies the rate control parameters for the current encoding session. */
  1206. NV_ENC_CODEC_CONFIG encodeCodecConfig; /**< [in]: Specifies the codec specific config parameters through this union. */
  1207. uint32_t reserved [278]; /**< [in]: Reserved and must be set to 0 */
  1208. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1209. } NV_ENC_CONFIG;
  1210. /** macro for constructing the version field of ::_NV_ENC_CONFIG */
  1211. #define NV_ENC_CONFIG_VER (NVENCAPI_STRUCT_VERSION(6) | ( 1<<31 ))
  1212. /**
  1213. * \struct _NV_ENC_INITIALIZE_PARAMS
  1214. * Encode Session Initialization parameters.
  1215. */
  1216. typedef struct _NV_ENC_INITIALIZE_PARAMS
  1217. {
  1218. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_INITIALIZE_PARAMS_VER. */
  1219. GUID encodeGUID; /**< [in]: Specifies the Encode GUID for which the encoder is being created. ::NvEncInitializeEncoder() API will fail if this is not set, or set to unsupported value. */
  1220. GUID presetGUID; /**< [in]: Specifies the preset for encoding. If the preset GUID is set then , the preset configuration will be applied before any other parameter. */
  1221. uint32_t encodeWidth; /**< [in]: Specifies the encode width. If not set ::NvEncInitializeEncoder() API will fail. */
  1222. uint32_t encodeHeight; /**< [in]: Specifies the encode height. If not set ::NvEncInitializeEncoder() API will fail. */
  1223. uint32_t darWidth; /**< [in]: Specifies the display aspect ratio Width. */
  1224. uint32_t darHeight; /**< [in]: Specifies the display aspect ratio height. */
  1225. uint32_t frameRateNum; /**< [in]: Specifies the numerator for frame rate used for encoding in frames per second ( Frame rate = frameRateNum / frameRateDen ). */
  1226. uint32_t frameRateDen; /**< [in]: Specifies the denominator for frame rate used for encoding in frames per second ( Frame rate = frameRateNum / frameRateDen ). */
  1227. uint32_t enableEncodeAsync; /**< [in]: Set this to 1 to enable asynchronous mode and is expected to use events to get picture completion notification. */
  1228. uint32_t enablePTD; /**< [in]: Set this to 1 to enable the Picture Type Decision is be taken by the NvEncodeAPI interface. */
  1229. uint32_t reportSliceOffsets :1; /**< [in]: Set this to 1 to enable reporting slice offsets in ::_NV_ENC_LOCK_BITSTREAM. NV_ENC_INITIALIZE_PARAMS::enableEncodeAsync must be set to 0 to use this feature. Client must set this to 0 if NV_ENC_CONFIG_H264::sliceMode is 1 on Kepler GPUs */
  1230. uint32_t enableSubFrameWrite :1; /**< [in]: Set this to 1 to write out available bitstream to memory at subframe intervals */
  1231. uint32_t enableExternalMEHints :1; /**< [in]: Set to 1 to enable external ME hints for the current frame. For NV_ENC_INITIALIZE_PARAMS::enablePTD=1 with B frames, programming L1 hints is optional for B frames since Client doesn't know internal GOP structure.
  1232. NV_ENC_PIC_PARAMS::meHintRefPicDist should preferably be set with enablePTD=1. */
  1233. uint32_t enableMEOnlyMode :1; /**< [in]: Set to 1 to enable ME Only Mode .*/
  1234. uint32_t enableWeightedPrediction :1; /**< [in]: Set this to 1 to enable weighted prediction. Not supported if encode session is configured for B-Frames( 'frameIntervalP' in NV_ENC_CONFIG is greater than 1).*/
  1235. uint32_t reservedBitFields :27; /**< [in]: Reserved bitfields and must be set to 0 */
  1236. uint32_t privDataSize; /**< [in]: Reserved private data buffer size and must be set to 0 */
  1237. void* privData; /**< [in]: Reserved private data buffer and must be set to NULL */
  1238. NV_ENC_CONFIG* encodeConfig; /**< [in]: Specifies the advanced codec specific structure. If client has sent a valid codec config structure, it will override parameters set by the NV_ENC_INITIALIZE_PARAMS::presetGUID parameter. If set to NULL the NvEncodeAPI interface will use the NV_ENC_INITIALIZE_PARAMS::presetGUID to set the codec specific parameters.
  1239. Client can also optionally query the NvEncodeAPI interface to get codec specific parameters for a presetGUID using ::NvEncGetEncodePresetConfig() API. It can then modify (if required) some of the codec config parameters and send down a custom config structure as part of ::_NV_ENC_INITIALIZE_PARAMS.
  1240. Even in this case client is recommended to pass the same preset guid it has used in ::NvEncGetEncodePresetConfig() API to query the config structure; as NV_ENC_INITIALIZE_PARAMS::presetGUID. This will not override the custom config structure but will be used to determine other Encoder HW specific parameters not exposed in the API. */
  1241. uint32_t maxEncodeWidth; /**< [in]: Maximum encode width to be used for current Encode session.
  1242. Client should allocate output buffers according to this dimension for dynamic resolution change. If set to 0, Encoder will not allow dynamic resolution change. */
  1243. uint32_t maxEncodeHeight; /**< [in]: Maximum encode height to be allowed for current Encode session.
  1244. Client should allocate output buffers according to this dimension for dynamic resolution change. If set to 0, Encode will not allow dynamic resolution change. */
  1245. NVENC_EXTERNAL_ME_HINT_COUNTS_PER_BLOCKTYPE maxMEHintCountsPerBlock[2]; /**< [in]: If Client wants to pass external motion vectors in NV_ENC_PIC_PARAMS::meExternalHints buffer it must specify the maximum number of hint candidates per block per direction for the encode session.
  1246. The NV_ENC_INITIALIZE_PARAMS::maxMEHintCountsPerBlock[0] is for L0 predictors and NV_ENC_INITIALIZE_PARAMS::maxMEHintCountsPerBlock[1] is for L1 predictors.
  1247. This client must also set NV_ENC_INITIALIZE_PARAMS::enableExternalMEHints to 1. */
  1248. uint32_t reserved [289]; /**< [in]: Reserved and must be set to 0 */
  1249. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1250. } NV_ENC_INITIALIZE_PARAMS;
  1251. /** macro for constructing the version field of ::_NV_ENC_INITIALIZE_PARAMS */
  1252. #define NV_ENC_INITIALIZE_PARAMS_VER (NVENCAPI_STRUCT_VERSION(5) | ( 1<<31 ))
  1253. /**
  1254. * \struct _NV_ENC_RECONFIGURE_PARAMS
  1255. * Encode Session Reconfigured parameters.
  1256. */
  1257. typedef struct _NV_ENC_RECONFIGURE_PARAMS
  1258. {
  1259. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_RECONFIGURE_PARAMS_VER. */
  1260. NV_ENC_INITIALIZE_PARAMS reInitEncodeParams; /**< [in]: Encoder session re-initialization parameters. */
  1261. uint32_t resetEncoder :1; /**< [in]: This resets the rate control states and other internal encoder states. This should be used only with an IDR frame.
  1262. If NV_ENC_INITIALIZE_PARAMS::enablePTD is set to 1, encoder will force the frame type to IDR */
  1263. uint32_t forceIDR :1; /**< [in]: Encode the current picture as an IDR picture. This flag is only valid when Picture type decision is taken by the Encoder
  1264. [_NV_ENC_INITIALIZE_PARAMS::enablePTD == 1]. */
  1265. uint32_t reserved :30;
  1266. }NV_ENC_RECONFIGURE_PARAMS;
  1267. /** macro for constructing the version field of ::_NV_ENC_RECONFIGURE_PARAMS */
  1268. #define NV_ENC_RECONFIGURE_PARAMS_VER (NVENCAPI_STRUCT_VERSION(1) | ( 1<<31 ))
  1269. /**
  1270. * \struct _NV_ENC_PRESET_CONFIG
  1271. * Encoder preset config
  1272. */
  1273. typedef struct _NV_ENC_PRESET_CONFIG
  1274. {
  1275. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_PRESET_CONFIG_VER. */
  1276. NV_ENC_CONFIG presetCfg; /**< [out]: preset config returned by the Nvidia Video Encoder interface. */
  1277. uint32_t reserved1[255]; /**< [in]: Reserved and must be set to 0 */
  1278. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1279. }NV_ENC_PRESET_CONFIG;
  1280. /** macro for constructing the version field of ::_NV_ENC_PRESET_CONFIG */
  1281. #define NV_ENC_PRESET_CONFIG_VER (NVENCAPI_STRUCT_VERSION(4) | ( 1<<31 ))
  1282. /**
  1283. * \struct _NV_ENC_SEI_PAYLOAD
  1284. * User SEI message
  1285. */
  1286. typedef struct _NV_ENC_SEI_PAYLOAD
  1287. {
  1288. uint32_t payloadSize; /**< [in] SEI payload size in bytes. SEI payload must be byte aligned, as described in Annex D */
  1289. uint32_t payloadType; /**< [in] SEI payload types and syntax can be found in Annex D of the H.264 Specification. */
  1290. uint8_t *payload; /**< [in] pointer to user data */
  1291. } NV_ENC_SEI_PAYLOAD;
  1292. #define NV_ENC_H264_SEI_PAYLOAD NV_ENC_SEI_PAYLOAD
  1293. /**
  1294. * \struct _NV_ENC_PIC_PARAMS_H264
  1295. * H264 specific enc pic params. sent on a per frame basis.
  1296. */
  1297. typedef struct _NV_ENC_PIC_PARAMS_H264
  1298. {
  1299. uint32_t displayPOCSyntax; /**< [in]: Specifies the display POC syntax This is required to be set if client is handling the picture type decision. */
  1300. uint32_t reserved3; /**< [in]: Reserved and must be set to 0 */
  1301. uint32_t refPicFlag; /**< [in]: Set to 1 for a reference picture. This is ignored if NV_ENC_INITIALIZE_PARAMS::enablePTD is set to 1. */
  1302. uint32_t colourPlaneId; /**< [in]: Specifies the colour plane ID associated with the current input. */
  1303. uint32_t forceIntraRefreshWithFrameCnt; /**< [in]: Forces an intra refresh with duration equal to intraRefreshFrameCnt.
  1304. When outputRecoveryPointSEI is set this is value is used for recovery_frame_cnt in recovery point SEI message
  1305. forceIntraRefreshWithFrameCnt cannot be used if B frames are used in the GOP structure specified */
  1306. uint32_t constrainedFrame :1; /**< [in]: Set to 1 if client wants to encode this frame with each slice completely independent of other slices in the frame.
  1307. NV_ENC_INITIALIZE_PARAMS::enableConstrainedEncoding should be set to 1 */
  1308. uint32_t sliceModeDataUpdate :1; /**< [in]: Set to 1 if client wants to change the sliceModeData field to specify new sliceSize Parameter
  1309. When forceIntraRefreshWithFrameCnt is set it will have priority over sliceMode setting */
  1310. uint32_t ltrMarkFrame :1; /**< [in]: Set to 1 if client wants to mark this frame as LTR */
  1311. uint32_t ltrUseFrames :1; /**< [in]: Set to 1 if client allows encoding this frame using the LTR frames specified in ltrFrameBitmap */
  1312. uint32_t reservedBitFields :28; /**< [in]: Reserved bit fields and must be set to 0 */
  1313. uint8_t* sliceTypeData; /**< [in]: Deprecated. */
  1314. uint32_t sliceTypeArrayCnt; /**< [in]: Deprecated. */
  1315. uint32_t seiPayloadArrayCnt; /**< [in]: Specifies the number of elements allocated in seiPayloadArray array. */
  1316. NV_ENC_SEI_PAYLOAD* seiPayloadArray; /**< [in]: Array of SEI payloads which will be inserted for this frame. */
  1317. uint32_t sliceMode; /**< [in]: This parameter in conjunction with sliceModeData specifies the way in which the picture is divided into slices
  1318. sliceMode = 0 MB based slices, sliceMode = 1 Byte based slices, sliceMode = 2 MB row based slices, sliceMode = 3, numSlices in Picture
  1319. When forceIntraRefreshWithFrameCnt is set it will have priority over sliceMode setting
  1320. When sliceMode == 0 and sliceModeData == 0 whole picture will be coded with one slice */
  1321. uint32_t sliceModeData; /**< [in]: Specifies the parameter needed for sliceMode. For:
  1322. sliceMode = 0, sliceModeData specifies # of MBs in each slice (except last slice)
  1323. sliceMode = 1, sliceModeData specifies maximum # of bytes in each slice (except last slice)
  1324. sliceMode = 2, sliceModeData specifies # of MB rows in each slice (except last slice)
  1325. sliceMode = 3, sliceModeData specifies number of slices in the picture. Driver will divide picture into slices optimally */
  1326. uint32_t ltrMarkFrameIdx; /**< [in]: Specifies the long term referenceframe index to use for marking this frame as LTR.*/
  1327. uint32_t ltrUseFrameBitmap; /**< [in]: Specifies the the associated bitmap of LTR frame indices to use when encoding this frame. */
  1328. uint32_t ltrUsageMode; /**< [in]: Not supported. Reserved for future use and must be set to 0. */
  1329. uint32_t reserved [243]; /**< [in]: Reserved and must be set to 0. */
  1330. void* reserved2[62]; /**< [in]: Reserved and must be set to NULL. */
  1331. } NV_ENC_PIC_PARAMS_H264;
  1332. /**
  1333. * \struct _NV_ENC_PIC_PARAMS_HEVC
  1334. * HEVC specific enc pic params. sent on a per frame basis.
  1335. */
  1336. typedef struct _NV_ENC_PIC_PARAMS_HEVC
  1337. {
  1338. uint32_t displayPOCSyntax; /**< [in]: Specifies the display POC syntax This is required to be set if client is handling the picture type decision. */
  1339. uint32_t refPicFlag; /**< [in]: Set to 1 for a reference picture. This is ignored if NV_ENC_INITIALIZE_PARAMS::enablePTD is set to 1. */
  1340. uint32_t temporalId; /**< [in]: Specifies the temporal id of the picture */
  1341. uint32_t forceIntraRefreshWithFrameCnt; /**< [in]: Forces an intra refresh with duration equal to intraRefreshFrameCnt.
  1342. When outputRecoveryPointSEI is set this is value is used for recovery_frame_cnt in recovery point SEI message
  1343. forceIntraRefreshWithFrameCnt cannot be used if B frames are used in the GOP structure specified */
  1344. uint32_t constrainedFrame :1; /**< [in]: Set to 1 if client wants to encode this frame with each slice completely independent of other slices in the frame.
  1345. NV_ENC_INITIALIZE_PARAMS::enableConstrainedEncoding should be set to 1 */
  1346. uint32_t sliceModeDataUpdate :1; /**< [in]: Set to 1 if client wants to change the sliceModeData field to specify new sliceSize Parameter
  1347. When forceIntraRefreshWithFrameCnt is set it will have priority over sliceMode setting */
  1348. uint32_t ltrMarkFrame :1; /**< [in]: Set to 1 if client wants to mark this frame as LTR */
  1349. uint32_t ltrUseFrames :1; /**< [in]: Set to 1 if client allows encoding this frame using the LTR frames specified in ltrFrameBitmap */
  1350. uint32_t reservedBitFields :28; /**< [in]: Reserved bit fields and must be set to 0 */
  1351. uint8_t* sliceTypeData; /**< [in]: Array which specifies the slice type used to force intra slice for a particular slice. Currently supported only for NV_ENC_CONFIG_H264::sliceMode == 3.
  1352. Client should allocate array of size sliceModeData where sliceModeData is specified in field of ::_NV_ENC_CONFIG_H264
  1353. Array element with index n corresponds to nth slice. To force a particular slice to intra client should set corresponding array element to NV_ENC_SLICE_TYPE_I
  1354. all other array elements should be set to NV_ENC_SLICE_TYPE_DEFAULT */
  1355. uint32_t sliceTypeArrayCnt; /**< [in]: Client should set this to the number of elements allocated in sliceTypeData array. If sliceTypeData is NULL then this should be set to 0 */
  1356. uint32_t sliceMode; /**< [in]: This parameter in conjunction with sliceModeData specifies the way in which the picture is divided into slices
  1357. sliceMode = 0 CTU based slices, sliceMode = 1 Byte based slices, sliceMode = 2 CTU row based slices, sliceMode = 3, numSlices in Picture
  1358. When forceIntraRefreshWithFrameCnt is set it will have priority over sliceMode setting
  1359. When sliceMode == 0 and sliceModeData == 0 whole picture will be coded with one slice */
  1360. uint32_t sliceModeData; /**< [in]: Specifies the parameter needed for sliceMode. For:
  1361. sliceMode = 0, sliceModeData specifies # of CTUs in each slice (except last slice)
  1362. sliceMode = 1, sliceModeData specifies maximum # of bytes in each slice (except last slice)
  1363. sliceMode = 2, sliceModeData specifies # of CTU rows in each slice (except last slice)
  1364. sliceMode = 3, sliceModeData specifies number of slices in the picture. Driver will divide picture into slices optimally */
  1365. uint32_t ltrMarkFrameIdx; /**< [in]: Specifies the long term reference frame index to use for marking this frame as LTR.*/
  1366. uint32_t ltrUseFrameBitmap; /**< [in]: Specifies the associated bitmap of LTR frame indices to use when encoding this frame. */
  1367. uint32_t ltrUsageMode; /**< [in]: Not supported. Reserved for future use and must be set to 0. */
  1368. uint32_t seiPayloadArrayCnt; /**< [in]: Specifies the number of elements allocated in seiPayloadArray array. */
  1369. uint32_t reserved; /**< [in]: Reserved and must be set to 0. */
  1370. NV_ENC_SEI_PAYLOAD* seiPayloadArray; /**< [in]: Array of SEI payloads which will be inserted for this frame. */
  1371. uint32_t reserved2 [244]; /**< [in]: Reserved and must be set to 0. */
  1372. void* reserved3[61]; /**< [in]: Reserved and must be set to NULL. */
  1373. } NV_ENC_PIC_PARAMS_HEVC;
  1374. /**
  1375. * Codec specific per-picture encoding parameters.
  1376. */
  1377. typedef union _NV_ENC_CODEC_PIC_PARAMS
  1378. {
  1379. NV_ENC_PIC_PARAMS_H264 h264PicParams; /**< [in]: H264 encode picture params. */
  1380. NV_ENC_PIC_PARAMS_HEVC hevcPicParams; /**< [in]: HEVC encode picture params. */
  1381. uint32_t reserved[256]; /**< [in]: Reserved and must be set to 0. */
  1382. } NV_ENC_CODEC_PIC_PARAMS;
  1383. /**
  1384. * \struct _NV_ENC_PIC_PARAMS
  1385. * Encoding parameters that need to be sent on a per frame basis.
  1386. */
  1387. typedef struct _NV_ENC_PIC_PARAMS
  1388. {
  1389. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_PIC_PARAMS_VER. */
  1390. uint32_t inputWidth; /**< [in]: Specifies the input buffer width */
  1391. uint32_t inputHeight; /**< [in]: Specifies the input buffer height */
  1392. uint32_t inputPitch; /**< [in]: Specifies the input buffer pitch. If pitch value is not known, set this to inputWidth. */
  1393. uint32_t encodePicFlags; /**< [in]: Specifies bit-wise OR`ed encode pic flags. See ::NV_ENC_PIC_FLAGS enum. */
  1394. uint32_t frameIdx; /**< [in]: Specifies the frame index associated with the input frame [optional]. */
  1395. uint64_t inputTimeStamp; /**< [in]: Specifies presentation timestamp associated with the input picture. */
  1396. uint64_t inputDuration; /**< [in]: Specifies duration of the input picture */
  1397. NV_ENC_INPUT_PTR inputBuffer; /**< [in]: Specifies the input buffer pointer. Client must use a pointer obtained from ::NvEncCreateInputBuffer() or ::NvEncMapInputResource() APIs.*/
  1398. NV_ENC_OUTPUT_PTR outputBitstream; /**< [in]: Specifies the pointer to output buffer. Client should use a pointer obtained from ::NvEncCreateBitstreamBuffer() API. */
  1399. void* completionEvent; /**< [in]: Specifies an event to be signalled on completion of encoding of this Frame [only if operating in Asynchronous mode]. Each output buffer should be associated with a distinct event pointer. */
  1400. NV_ENC_BUFFER_FORMAT bufferFmt; /**< [in]: Specifies the input buffer format. */
  1401. NV_ENC_PIC_STRUCT pictureStruct; /**< [in]: Specifies structure of the input picture. */
  1402. NV_ENC_PIC_TYPE pictureType; /**< [in]: Specifies input picture type. Client required to be set explicitly by the client if the client has not set NV_ENC_INITALIZE_PARAMS::enablePTD to 1 while calling NvInitializeEncoder. */
  1403. NV_ENC_CODEC_PIC_PARAMS codecPicParams; /**< [in]: Specifies the codec specific per-picture encoding parameters. */
  1404. NVENC_EXTERNAL_ME_HINT_COUNTS_PER_BLOCKTYPE meHintCountsPerBlock[2]; /**< [in]: Specifies the number of hint candidates per block per direction for the current frame. meHintCountsPerBlock[0] is for L0 predictors and meHintCountsPerBlock[1] is for L1 predictors.
  1405. The candidate count in NV_ENC_PIC_PARAMS::meHintCountsPerBlock[lx] must never exceed NV_ENC_INITIALIZE_PARAMS::maxMEHintCountsPerBlock[lx] provided during encoder intialization. */
  1406. NVENC_EXTERNAL_ME_HINT *meExternalHints; /**< [in]: Specifies the pointer to ME external hints for the current frame. The size of ME hint buffer should be equal to number of macroblocks * the total number of candidates per macroblock.
  1407. The total number of candidates per MB per direction = 1*meHintCountsPerBlock[Lx].numCandsPerBlk16x16 + 2*meHintCountsPerBlock[Lx].numCandsPerBlk16x8 + 2*meHintCountsPerBlock[Lx].numCandsPerBlk8x8
  1408. + 4*meHintCountsPerBlock[Lx].numCandsPerBlk8x8. For frames using bidirectional ME , the total number of candidates for single macroblock is sum of total number of candidates per MB for each direction (L0 and L1) */
  1409. uint32_t reserved1[6]; /**< [in]: Reserved and must be set to 0 */
  1410. void* reserved2[2]; /**< [in]: Reserved and must be set to NULL */
  1411. int8_t *qpDeltaMap; /**< [in]: Specifies the pointer to signed byte array containing QP delta value per MB in raster scan order in the current picture. This QP modifier is applied on top of the QP chosen by rate control. */
  1412. uint32_t qpDeltaMapSize; /**< [in]: Specifies the size in bytes of qpDeltaMap surface allocated by client and pointed to by NV_ENC_PIC_PARAMS::qpDeltaMap. Surface (array) should be picWidthInMbs * picHeightInMbs */
  1413. uint32_t reservedBitFields; /**< [in]: Reserved bitfields and must be set to 0 */
  1414. uint16_t meHintRefPicDist[2]; /**< [in]: Specifies temporal distance for reference picture (NVENC_EXTERNAL_ME_HINT::refidx = 0) used during external ME with NV_ENC_INITALIZE_PARAMS::enablePTD = 1 . meHintRefPicDist[0] is for L0 hints and meHintRefPicDist[1] is for L1 hints.
  1415. If not set, will internally infer distance of 1. Ignored for NV_ENC_INITALIZE_PARAMS::enablePTD = 0 */
  1416. uint32_t reserved3[286]; /**< [in]: Reserved and must be set to 0 */
  1417. void* reserved4[60]; /**< [in]: Reserved and must be set to NULL */
  1418. } NV_ENC_PIC_PARAMS;
  1419. /** Macro for constructing the version field of ::_NV_ENC_PIC_PARAMS */
  1420. #define NV_ENC_PIC_PARAMS_VER (NVENCAPI_STRUCT_VERSION(4) | ( 1<<31 ))
  1421. /**
  1422. * \struct _NV_ENC_MEONLY_PARAMS
  1423. * MEOnly parameters that need to be sent on a per motion estimation basis.
  1424. * NV_ENC_MEONLY_PARAMS::meExternalHints is supported for H264 only.
  1425. */
  1426. typedef struct _NV_ENC_MEONLY_PARAMS
  1427. {
  1428. uint32_t version; /**< [in]: Struct version. Must be set to NV_ENC_MEONLY_PARAMS_VER.*/
  1429. uint32_t inputWidth; /**< [in]: Specifies the input buffer width */
  1430. uint32_t inputHeight; /**< [in]: Specifies the input buffer height */
  1431. NV_ENC_INPUT_PTR inputBuffer; /**< [in]: Specifies the input buffer pointer. Client must use a pointer obtained from NvEncCreateInputBuffer() or NvEncMapInputResource() APIs. */
  1432. NV_ENC_INPUT_PTR referenceFrame; /**< [in]: Specifies the reference frame pointer */
  1433. NV_ENC_OUTPUT_PTR mvBuffer; /**< [in]: Specifies the pointer to motion vector data buffer allocated by NvEncCreateMVBuffer. Client must lock mvBuffer using ::NvEncLockBitstream() API to get the motion vector data. */
  1434. NV_ENC_BUFFER_FORMAT bufferFmt; /**< [in]: Specifies the input buffer format. */
  1435. void* completionEvent; /**< [in]: Specifies an event to be signalled on completion of motion estimation
  1436. of this Frame [only if operating in Asynchronous mode].
  1437. Each output buffer should be associated with a distinct event pointer. */
  1438. uint32_t viewID; /**< [in]: Specifies left,right viewID if NV_ENC_CONFIG_H264_MEONLY::bStereoEnable is set.
  1439. viewID can be 0,1 if bStereoEnable is set, 0 otherwise. */
  1440. NVENC_EXTERNAL_ME_HINT_COUNTS_PER_BLOCKTYPE
  1441. meHintCountsPerBlock[2]; /**< [in]: Specifies the number of hint candidates per block for the current frame. meHintCountsPerBlock[0] is for L0 predictors.
  1442. The candidate count in NV_ENC_PIC_PARAMS::meHintCountsPerBlock[lx] must never exceed NV_ENC_INITIALIZE_PARAMS::maxMEHintCountsPerBlock[lx] provided during encoder intialization. */
  1443. NVENC_EXTERNAL_ME_HINT *meExternalHints; /**< [in]: Specifies the pointer to ME external hints for the current frame. The size of ME hint buffer should be equal to number of macroblocks * the total number of candidates per macroblock.
  1444. The total number of candidates per MB per direction = 1*meHintCountsPerBlock[Lx].numCandsPerBlk16x16 + 2*meHintCountsPerBlock[Lx].numCandsPerBlk16x8 + 2*meHintCountsPerBlock[Lx].numCandsPerBlk8x8
  1445. + 4*meHintCountsPerBlock[Lx].numCandsPerBlk8x8. For frames using bidirectional ME , the total number of candidates for single macroblock is sum of total number of candidates per MB for each direction (L0 and L1) */
  1446. uint32_t reserved1[243]; /**< [in]: Reserved and must be set to 0 */
  1447. void* reserved2[59]; /**< [in]: Reserved and must be set to NULL */
  1448. } NV_ENC_MEONLY_PARAMS;
  1449. /** NV_ENC_MEONLY_PARAMS struct version*/
  1450. #define NV_ENC_MEONLY_PARAMS_VER NVENCAPI_STRUCT_VERSION(3)
  1451. /**
  1452. * \struct _NV_ENC_LOCK_BITSTREAM
  1453. * Bitstream buffer lock parameters.
  1454. */
  1455. typedef struct _NV_ENC_LOCK_BITSTREAM
  1456. {
  1457. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_LOCK_BITSTREAM_VER. */
  1458. uint32_t doNotWait :1; /**< [in]: If this flag is set, the NvEncodeAPI interface will return buffer pointer even if operation is not completed. If not set, the call will block until operation completes. */
  1459. uint32_t ltrFrame :1; /**< [out]: Flag indicating this frame is marked as LTR frame */
  1460. uint32_t reservedBitFields :30; /**< [in]: Reserved bit fields and must be set to 0 */
  1461. void* outputBitstream; /**< [in]: Pointer to the bitstream buffer being locked. */
  1462. uint32_t* sliceOffsets; /**< [in,out]: Array which receives the slice offsets. This is not supported if NV_ENC_CONFIG_H264::sliceMode is 1 on Kepler GPUs. Array size must be equal to size of frame in MBs. */
  1463. uint32_t frameIdx; /**< [out]: Frame no. for which the bitstream is being retrieved. */
  1464. uint32_t hwEncodeStatus; /**< [out]: The NvEncodeAPI interface status for the locked picture. */
  1465. uint32_t numSlices; /**< [out]: Number of slices in the encoded picture. Will be reported only if NV_ENC_INITIALIZE_PARAMS::reportSliceOffsets set to 1. */
  1466. uint32_t bitstreamSizeInBytes; /**< [out]: Actual number of bytes generated and copied to the memory pointed by bitstreamBufferPtr. */
  1467. uint64_t outputTimeStamp; /**< [out]: Presentation timestamp associated with the encoded output. */
  1468. uint64_t outputDuration; /**< [out]: Presentation duration associates with the encoded output. */
  1469. void* bitstreamBufferPtr; /**< [out]: Pointer to the generated output bitstream.
  1470. For MEOnly mode _NV_ENC_LOCK_BITSTREAM::bitstreamBufferPtr should be typecast to
  1471. NV_ENC_H264_MV_DATA/NV_ENC_HEVC_MV_DATA pointer respectively for H264/HEVC */
  1472. NV_ENC_PIC_TYPE pictureType; /**< [out]: Picture type of the encoded picture. */
  1473. NV_ENC_PIC_STRUCT pictureStruct; /**< [out]: Structure of the generated output picture. */
  1474. uint32_t frameAvgQP; /**< [out]: Average QP of the frame. */
  1475. uint32_t frameSatd; /**< [out]: Total SATD cost for whole frame. */
  1476. uint32_t ltrFrameIdx; /**< [out]: Frame index associated with this LTR frame. */
  1477. uint32_t ltrFrameBitmap; /**< [out]: Bitmap of LTR frames indices which were used for encoding this frame. Value of 0 if no LTR frames were used. */
  1478. uint32_t reserved [236]; /**< [in]: Reserved and must be set to 0 */
  1479. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1480. } NV_ENC_LOCK_BITSTREAM;
  1481. /** Macro for constructing the version field of ::_NV_ENC_LOCK_BITSTREAM */
  1482. #define NV_ENC_LOCK_BITSTREAM_VER NVENCAPI_STRUCT_VERSION(1)
  1483. /**
  1484. * \struct _NV_ENC_LOCK_INPUT_BUFFER
  1485. * Uncompressed Input Buffer lock parameters.
  1486. */
  1487. typedef struct _NV_ENC_LOCK_INPUT_BUFFER
  1488. {
  1489. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_LOCK_INPUT_BUFFER_VER. */
  1490. uint32_t doNotWait :1; /**< [in]: Set to 1 to make ::NvEncLockInputBuffer() a unblocking call. If the encoding is not completed, driver will return ::NV_ENC_ERR_ENCODER_BUSY error code. */
  1491. uint32_t reservedBitFields :31; /**< [in]: Reserved bitfields and must be set to 0 */
  1492. NV_ENC_INPUT_PTR inputBuffer; /**< [in]: Pointer to the input buffer to be locked, client should pass the pointer obtained from ::NvEncCreateInputBuffer() or ::NvEncMapInputResource API. */
  1493. void* bufferDataPtr; /**< [out]: Pointed to the locked input buffer data. Client can only access input buffer using the \p bufferDataPtr. */
  1494. uint32_t pitch; /**< [out]: Pitch of the locked input buffer. */
  1495. uint32_t reserved1[251]; /**< [in]: Reserved and must be set to 0 */
  1496. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1497. } NV_ENC_LOCK_INPUT_BUFFER;
  1498. /** Macro for constructing the version field of ::_NV_ENC_LOCK_INPUT_BUFFER */
  1499. #define NV_ENC_LOCK_INPUT_BUFFER_VER NVENCAPI_STRUCT_VERSION(1)
  1500. /**
  1501. * \struct _NV_ENC_MAP_INPUT_RESOURCE
  1502. * Map an input resource to a Nvidia Encoder Input Buffer
  1503. */
  1504. typedef struct _NV_ENC_MAP_INPUT_RESOURCE
  1505. {
  1506. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_MAP_INPUT_RESOURCE_VER. */
  1507. uint32_t subResourceIndex; /**< [in]: Deprecated. Do not use. */
  1508. void* inputResource; /**< [in]: Deprecated. Do not use. */
  1509. NV_ENC_REGISTERED_PTR registeredResource; /**< [in]: The Registered resource handle obtained by calling NvEncRegisterInputResource. */
  1510. NV_ENC_INPUT_PTR mappedResource; /**< [out]: Mapped pointer corresponding to the registeredResource. This pointer must be used in NV_ENC_PIC_PARAMS::inputBuffer parameter in ::NvEncEncodePicture() API. */
  1511. NV_ENC_BUFFER_FORMAT mappedBufferFmt; /**< [out]: Buffer format of the outputResource. This buffer format must be used in NV_ENC_PIC_PARAMS::bufferFmt if client using the above mapped resource pointer. */
  1512. uint32_t reserved1[251]; /**< [in]: Reserved and must be set to 0. */
  1513. void* reserved2[63]; /**< [in]: Reserved and must be set to NULL */
  1514. } NV_ENC_MAP_INPUT_RESOURCE;
  1515. /** Macro for constructing the version field of ::_NV_ENC_MAP_INPUT_RESOURCE */
  1516. #define NV_ENC_MAP_INPUT_RESOURCE_VER NVENCAPI_STRUCT_VERSION(4)
  1517. /**
  1518. * \struct _NV_ENC_INPUT_RESOURCE_OPENGL_TEX
  1519. * NV_ENC_REGISTER_RESOURCE::resourceToRegister must be a pointer to a variable of this type,
  1520. * when NV_ENC_REGISTER_RESOURCE::resourceType is NV_ENC_INPUT_RESOURCE_TYPE_OPENGL_TEX
  1521. */
  1522. typedef struct _NV_ENC_INPUT_RESOURCE_OPENGL_TEX
  1523. {
  1524. uint32_t texture; /**< [in]: The name of the texture to be used. */
  1525. uint32_t target; /**< [in]: Accepted values are GL_TEXTURE_RECTANGLE and GL_TEXTURE_2D. */
  1526. } NV_ENC_INPUT_RESOURCE_OPENGL_TEX;
  1527. /**
  1528. * \struct _NV_ENC_REGISTER_RESOURCE
  1529. * Register a resource for future use with the Nvidia Video Encoder Interface.
  1530. */
  1531. typedef struct _NV_ENC_REGISTER_RESOURCE
  1532. {
  1533. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_REGISTER_RESOURCE_VER. */
  1534. NV_ENC_INPUT_RESOURCE_TYPE resourceType; /**< [in]: Specifies the type of resource to be registered.
  1535. Supported values are
  1536. ::NV_ENC_INPUT_RESOURCE_TYPE_DIRECTX,
  1537. ::NV_ENC_INPUT_RESOURCE_TYPE_CUDADEVICEPTR,
  1538. ::NV_ENC_INPUT_RESOURCE_TYPE_OPENGL_TEX */
  1539. uint32_t width; /**< [in]: Input buffer Width. */
  1540. uint32_t height; /**< [in]: Input buffer Height. */
  1541. uint32_t pitch; /**< [in]: Input buffer Pitch. */
  1542. uint32_t subResourceIndex; /**< [in]: Subresource Index of the DirectX resource to be registered. Should be set to 0 for other interfaces. */
  1543. void* resourceToRegister; /**< [in]: Handle to the resource that is being registered. */
  1544. NV_ENC_REGISTERED_PTR registeredResource; /**< [out]: Registered resource handle. This should be used in future interactions with the Nvidia Video Encoder Interface. */
  1545. NV_ENC_BUFFER_FORMAT bufferFormat; /**< [in]: Buffer format of resource to be registered. */
  1546. uint32_t reserved1[248]; /**< [in]: Reserved and must be set to 0. */
  1547. void* reserved2[62]; /**< [in]: Reserved and must be set to NULL. */
  1548. } NV_ENC_REGISTER_RESOURCE;
  1549. /** Macro for constructing the version field of ::_NV_ENC_REGISTER_RESOURCE */
  1550. #define NV_ENC_REGISTER_RESOURCE_VER NVENCAPI_STRUCT_VERSION(3)
  1551. /**
  1552. * \struct _NV_ENC_STAT
  1553. * Encode Stats structure.
  1554. */
  1555. typedef struct _NV_ENC_STAT
  1556. {
  1557. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_STAT_VER. */
  1558. uint32_t reserved; /**< [in]: Reserved and must be set to 0 */
  1559. NV_ENC_OUTPUT_PTR outputBitStream; /**< [out]: Specifies the pointer to output bitstream. */
  1560. uint32_t bitStreamSize; /**< [out]: Size of generated bitstream in bytes. */
  1561. uint32_t picType; /**< [out]: Picture type of encoded picture. See ::NV_ENC_PIC_TYPE. */
  1562. uint32_t lastValidByteOffset; /**< [out]: Offset of last valid bytes of completed bitstream */
  1563. uint32_t sliceOffsets[16]; /**< [out]: Offsets of each slice */
  1564. uint32_t picIdx; /**< [out]: Picture number */
  1565. uint32_t reserved1[233]; /**< [in]: Reserved and must be set to 0 */
  1566. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1567. } NV_ENC_STAT;
  1568. /** Macro for constructing the version field of ::_NV_ENC_STAT */
  1569. #define NV_ENC_STAT_VER NVENCAPI_STRUCT_VERSION(1)
  1570. /**
  1571. * \struct _NV_ENC_SEQUENCE_PARAM_PAYLOAD
  1572. * Sequence and picture paramaters payload.
  1573. */
  1574. typedef struct _NV_ENC_SEQUENCE_PARAM_PAYLOAD
  1575. {
  1576. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_INITIALIZE_PARAMS_VER. */
  1577. uint32_t inBufferSize; /**< [in]: Specifies the size of the spsppsBuffer provied by the client */
  1578. uint32_t spsId; /**< [in]: Specifies the SPS id to be used in sequence header. Default value is 0. */
  1579. uint32_t ppsId; /**< [in]: Specifies the PPS id to be used in picture header. Default value is 0. */
  1580. void* spsppsBuffer; /**< [in]: Specifies bitstream header pointer of size NV_ENC_SEQUENCE_PARAM_PAYLOAD::inBufferSize. It is the client's responsibility to manage this memory. */
  1581. uint32_t* outSPSPPSPayloadSize; /**< [out]: Size of the sequence and picture header in bytes written by the NvEncodeAPI interface to the SPSPPSBuffer. */
  1582. uint32_t reserved [250]; /**< [in]: Reserved and must be set to 0 */
  1583. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1584. } NV_ENC_SEQUENCE_PARAM_PAYLOAD;
  1585. /** Macro for constructing the version field of ::_NV_ENC_SEQUENCE_PARAM_PAYLOAD */
  1586. #define NV_ENC_SEQUENCE_PARAM_PAYLOAD_VER NVENCAPI_STRUCT_VERSION(1)
  1587. /**
  1588. * Event registration/unregistration parameters.
  1589. */
  1590. typedef struct _NV_ENC_EVENT_PARAMS
  1591. {
  1592. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_EVENT_PARAMS_VER. */
  1593. uint32_t reserved; /**< [in]: Reserved and must be set to 0 */
  1594. void* completionEvent; /**< [in]: Handle to event to be registered/unregistered with the NvEncodeAPI interface. */
  1595. uint32_t reserved1[253]; /**< [in]: Reserved and must be set to 0 */
  1596. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1597. } NV_ENC_EVENT_PARAMS;
  1598. /** Macro for constructing the version field of ::_NV_ENC_EVENT_PARAMS */
  1599. #define NV_ENC_EVENT_PARAMS_VER NVENCAPI_STRUCT_VERSION(1)
  1600. /**
  1601. * Encoder Session Creation parameters
  1602. */
  1603. typedef struct _NV_ENC_OPEN_ENCODE_SESSIONEX_PARAMS
  1604. {
  1605. uint32_t version; /**< [in]: Struct version. Must be set to ::NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS_VER. */
  1606. NV_ENC_DEVICE_TYPE deviceType; /**< [in]: Specified the device Type */
  1607. void* device; /**< [in]: Pointer to client device. */
  1608. void* reserved; /**< [in]: Reserved and must be set to 0. */
  1609. uint32_t apiVersion; /**< [in]: API version. Should be set to NVENCAPI_VERSION. */
  1610. uint32_t reserved1[253]; /**< [in]: Reserved and must be set to 0 */
  1611. void* reserved2[64]; /**< [in]: Reserved and must be set to NULL */
  1612. } NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS;
  1613. /** Macro for constructing the version field of ::_NV_ENC_OPEN_ENCODE_SESSIONEX_PARAMS */
  1614. #define NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS_VER NVENCAPI_STRUCT_VERSION(1)
  1615. /** @} */ /* END ENCODER_STRUCTURE */
  1616. /**
  1617. * \addtogroup ENCODE_FUNC NvEncodeAPI Functions
  1618. * @{
  1619. */
  1620. // NvEncOpenEncodeSession
  1621. /**
  1622. * \brief Opens an encoding session.
  1623. *
  1624. * Deprecated.
  1625. *
  1626. * \return
  1627. * ::NV_ENC_ERR_INVALID_CALL\n
  1628. *
  1629. */
  1630. NVENCSTATUS NVENCAPI NvEncOpenEncodeSession (void* device, uint32_t deviceType, void** encoder);
  1631. // NvEncGetEncodeGuidCount
  1632. /**
  1633. * \brief Retrieves the number of supported encode GUIDs.
  1634. *
  1635. * The function returns the number of codec guids supported by the NvEncodeAPI
  1636. * interface.
  1637. *
  1638. * \param [in] encoder
  1639. * Pointer to the NvEncodeAPI interface.
  1640. * \param [out] encodeGUIDCount
  1641. * Number of supported encode GUIDs.
  1642. *
  1643. * \return
  1644. * ::NV_ENC_SUCCESS \n
  1645. * ::NV_ENC_ERR_INVALID_PTR \n
  1646. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1647. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1648. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1649. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1650. * ::NV_ENC_ERR_INVALID_PARAM \n
  1651. * ::NV_ENC_ERR_GENERIC \n
  1652. *
  1653. */
  1654. NVENCSTATUS NVENCAPI NvEncGetEncodeGUIDCount (void* encoder, uint32_t* encodeGUIDCount);
  1655. // NvEncGetEncodeGUIDs
  1656. /**
  1657. * \brief Retrieves an array of supported encoder codec GUIDs.
  1658. *
  1659. * The function returns an array of codec guids supported by the NvEncodeAPI interface.
  1660. * The client must allocate an array where the NvEncodeAPI interface can
  1661. * fill the supported guids and pass the pointer in \p *GUIDs parameter.
  1662. * The size of the array can be determined by using ::NvEncGetEncodeGUIDCount() API.
  1663. * The Nvidia Encoding interface returns the number of codec guids it has actually
  1664. * filled in the guid array in the \p GUIDCount parameter.
  1665. *
  1666. * \param [in] encoder
  1667. * Pointer to the NvEncodeAPI interface.
  1668. * \param [in] guidArraySize
  1669. * Number of GUIDs to retrieved. Should be set to the number retrieved using
  1670. * ::NvEncGetEncodeGUIDCount.
  1671. * \param [out] GUIDs
  1672. * Array of supported Encode GUIDs.
  1673. * \param [out] GUIDCount
  1674. * Number of supported Encode GUIDs.
  1675. *
  1676. * \return
  1677. * ::NV_ENC_SUCCESS \n
  1678. * ::NV_ENC_ERR_INVALID_PTR \n
  1679. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1680. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1681. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1682. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1683. * ::NV_ENC_ERR_INVALID_PARAM \n
  1684. * ::NV_ENC_ERR_GENERIC \n
  1685. *
  1686. */
  1687. NVENCSTATUS NVENCAPI NvEncGetEncodeGUIDs (void* encoder, GUID* GUIDs, uint32_t guidArraySize, uint32_t* GUIDCount);
  1688. // NvEncGetEncodeProfileGuidCount
  1689. /**
  1690. * \brief Retrieves the number of supported profile GUIDs.
  1691. *
  1692. * The function returns the number of profile GUIDs supported for a given codec.
  1693. * The client must first enumerate the codec guids supported by the NvEncodeAPI
  1694. * interface. After determining the codec guid, it can query the NvEncodeAPI
  1695. * interface to determine the number of profile guids supported for a particular
  1696. * codec guid.
  1697. *
  1698. * \param [in] encoder
  1699. * Pointer to the NvEncodeAPI interface.
  1700. * \param [in] encodeGUID
  1701. * The codec guid for which the profile guids are being enumerated.
  1702. * \param [out] encodeProfileGUIDCount
  1703. * Number of encode profiles supported for the given encodeGUID.
  1704. *
  1705. * \return
  1706. * ::NV_ENC_SUCCESS \n
  1707. * ::NV_ENC_ERR_INVALID_PTR \n
  1708. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1709. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1710. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1711. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1712. * ::NV_ENC_ERR_INVALID_PARAM \n
  1713. * ::NV_ENC_ERR_GENERIC \n
  1714. *
  1715. */
  1716. NVENCSTATUS NVENCAPI NvEncGetEncodeProfileGUIDCount (void* encoder, GUID encodeGUID, uint32_t* encodeProfileGUIDCount);
  1717. // NvEncGetEncodeProfileGUIDs
  1718. /**
  1719. * \brief Retrieves an array of supported encode profile GUIDs.
  1720. *
  1721. * The function returns an array of supported profile guids for a particular
  1722. * codec guid. The client must allocate an array where the NvEncodeAPI interface
  1723. * can populate the profile guids. The client can determine the array size using
  1724. * ::NvEncGetEncodeProfileGUIDCount() API. The client must also validiate that the
  1725. * NvEncodeAPI interface supports the GUID the client wants to pass as \p encodeGUID
  1726. * parameter.
  1727. *
  1728. * \param [in] encoder
  1729. * Pointer to the NvEncodeAPI interface.
  1730. * \param [in] encodeGUID
  1731. * The encode guid whose profile guids are being enumerated.
  1732. * \param [in] guidArraySize
  1733. * Number of GUIDs to be retrieved. Should be set to the number retrieved using
  1734. * ::NvEncGetEncodeProfileGUIDCount.
  1735. * \param [out] profileGUIDs
  1736. * Array of supported Encode Profile GUIDs
  1737. * \param [out] GUIDCount
  1738. * Number of valid encode profile GUIDs in \p profileGUIDs array.
  1739. *
  1740. * \return
  1741. * ::NV_ENC_SUCCESS \n
  1742. * ::NV_ENC_ERR_INVALID_PTR \n
  1743. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1744. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1745. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1746. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1747. * ::NV_ENC_ERR_INVALID_PARAM \n
  1748. * ::NV_ENC_ERR_GENERIC \n
  1749. *
  1750. */
  1751. NVENCSTATUS NVENCAPI NvEncGetEncodeProfileGUIDs (void* encoder, GUID encodeGUID, GUID* profileGUIDs, uint32_t guidArraySize, uint32_t* GUIDCount);
  1752. // NvEncGetInputFormatCount
  1753. /**
  1754. * \brief Retrieve the number of supported Input formats.
  1755. *
  1756. * The function returns the number of supported input formats. The client must
  1757. * query the NvEncodeAPI interface to determine the supported input formats
  1758. * before creating the input surfaces.
  1759. *
  1760. * \param [in] encoder
  1761. * Pointer to the NvEncodeAPI interface.
  1762. * \param [in] encodeGUID
  1763. * Encode GUID, corresponding to which the number of supported input formats
  1764. * is to be retrieved.
  1765. * \param [out] inputFmtCount
  1766. * Number of input formats supported for specified Encode GUID.
  1767. *
  1768. * \return
  1769. * ::NV_ENC_SUCCESS \n
  1770. * ::NV_ENC_ERR_INVALID_PTR \n
  1771. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1772. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1773. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1774. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1775. * ::NV_ENC_ERR_INVALID_PARAM \n
  1776. * ::NV_ENC_ERR_GENERIC \n
  1777. */
  1778. NVENCSTATUS NVENCAPI NvEncGetInputFormatCount (void* encoder, GUID encodeGUID, uint32_t* inputFmtCount);
  1779. // NvEncGetInputFormats
  1780. /**
  1781. * \brief Retrieves an array of supported Input formats
  1782. *
  1783. * Returns an array of supported input formats The client must use the input
  1784. * format to create input surface using ::NvEncCreateInputBuffer() API.
  1785. *
  1786. * \param [in] encoder
  1787. * Pointer to the NvEncodeAPI interface.
  1788. * \param [in] encodeGUID
  1789. * Encode GUID, corresponding to which the number of supported input formats
  1790. * is to be retrieved.
  1791. *\param [in] inputFmtArraySize
  1792. * Size input format count array passed in \p inputFmts.
  1793. *\param [out] inputFmts
  1794. * Array of input formats supported for this Encode GUID.
  1795. *\param [out] inputFmtCount
  1796. * The number of valid input format types returned by the NvEncodeAPI
  1797. * interface in \p inputFmts array.
  1798. *
  1799. * \return
  1800. * ::NV_ENC_SUCCESS \n
  1801. * ::NV_ENC_ERR_INVALID_PTR \n
  1802. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1803. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1804. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1805. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1806. * ::NV_ENC_ERR_INVALID_PARAM \n
  1807. * ::NV_ENC_ERR_GENERIC \n
  1808. *
  1809. */
  1810. NVENCSTATUS NVENCAPI NvEncGetInputFormats (void* encoder, GUID encodeGUID, NV_ENC_BUFFER_FORMAT* inputFmts, uint32_t inputFmtArraySize, uint32_t* inputFmtCount);
  1811. // NvEncGetEncodeCaps
  1812. /**
  1813. * \brief Retrieves the capability value for a specified encoder attribute.
  1814. *
  1815. * The function returns the capability value for a given encoder attribute. The
  1816. * client must validate the encodeGUID using ::NvEncGetEncodeGUIDs() API before
  1817. * calling this function. The encoder attribute being queried are enumerated in
  1818. * ::NV_ENC_CAPS_PARAM enum.
  1819. *
  1820. * \param [in] encoder
  1821. * Pointer to the NvEncodeAPI interface.
  1822. * \param [in] encodeGUID
  1823. * Encode GUID, corresponding to which the capability attribute is to be retrieved.
  1824. * \param [in] capsParam
  1825. * Used to specify attribute being queried. Refer ::NV_ENC_CAPS_PARAM for more
  1826. * details.
  1827. * \param [out] capsVal
  1828. * The value corresponding to the capability attribute being queried.
  1829. *
  1830. * \return
  1831. * ::NV_ENC_SUCCESS \n
  1832. * ::NV_ENC_ERR_INVALID_PTR \n
  1833. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1834. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1835. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1836. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1837. * ::NV_ENC_ERR_INVALID_PARAM \n
  1838. * ::NV_ENC_ERR_GENERIC \n
  1839. */
  1840. NVENCSTATUS NVENCAPI NvEncGetEncodeCaps (void* encoder, GUID encodeGUID, NV_ENC_CAPS_PARAM* capsParam, int* capsVal);
  1841. // NvEncGetEncodePresetCount
  1842. /**
  1843. * \brief Retrieves the number of supported preset GUIDs.
  1844. *
  1845. * The function returns the number of preset GUIDs available for a given codec.
  1846. * The client must validate the codec guid using ::NvEncGetEncodeGUIDs() API
  1847. * before calling this function.
  1848. *
  1849. * \param [in] encoder
  1850. * Pointer to the NvEncodeAPI interface.
  1851. * \param [in] encodeGUID
  1852. * Encode GUID, corresponding to which the number of supported presets is to
  1853. * be retrieved.
  1854. * \param [out] encodePresetGUIDCount
  1855. * Receives the number of supported preset GUIDs.
  1856. *
  1857. * \return
  1858. * ::NV_ENC_SUCCESS \n
  1859. * ::NV_ENC_ERR_INVALID_PTR \n
  1860. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1861. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1862. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1863. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1864. * ::NV_ENC_ERR_INVALID_PARAM \n
  1865. * ::NV_ENC_ERR_GENERIC \n
  1866. *
  1867. */
  1868. NVENCSTATUS NVENCAPI NvEncGetEncodePresetCount (void* encoder, GUID encodeGUID, uint32_t* encodePresetGUIDCount);
  1869. // NvEncGetEncodePresetGUIDs
  1870. /**
  1871. * \brief Receives an array of supported encoder preset GUIDs.
  1872. *
  1873. * The function returns an array of encode preset guids available for a given codec.
  1874. * The client can directly use one of the preset guids based upon the use case
  1875. * or target device. The preset guid chosen can be directly used in
  1876. * NV_ENC_INITIALIZE_PARAMS::presetGUID parameter to ::NvEncEncodePicture() API.
  1877. * Alternately client can also use the preset guid to retrieve the encoding config
  1878. * parameters being used by NvEncodeAPI interface for that given preset, using
  1879. * ::NvEncGetEncodePresetConfig() API. It can then modify preset config parameters
  1880. * as per its use case and send it to NvEncodeAPI interface as part of
  1881. * NV_ENC_INITIALIZE_PARAMS::encodeConfig parameter for NvEncInitializeEncoder()
  1882. * API.
  1883. *
  1884. *
  1885. * \param [in] encoder
  1886. * Pointer to the NvEncodeAPI interface.
  1887. * \param [in] encodeGUID
  1888. * Encode GUID, corresponding to which the list of supported presets is to be
  1889. * retrieved.
  1890. * \param [in] guidArraySize
  1891. * Size of array of preset guids passed in \p preset GUIDs
  1892. * \param [out] presetGUIDs
  1893. * Array of supported Encode preset GUIDs from the NvEncodeAPI interface
  1894. * to client.
  1895. * \param [out] encodePresetGUIDCount
  1896. * Receives the number of preset GUIDs returned by the NvEncodeAPI
  1897. * interface.
  1898. *
  1899. * \return
  1900. * ::NV_ENC_SUCCESS \n
  1901. * ::NV_ENC_ERR_INVALID_PTR \n
  1902. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1903. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1904. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1905. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1906. * ::NV_ENC_ERR_INVALID_PARAM \n
  1907. * ::NV_ENC_ERR_GENERIC \n
  1908. *
  1909. */
  1910. NVENCSTATUS NVENCAPI NvEncGetEncodePresetGUIDs (void* encoder, GUID encodeGUID, GUID* presetGUIDs, uint32_t guidArraySize, uint32_t* encodePresetGUIDCount);
  1911. // NvEncGetEncodePresetConfig
  1912. /**
  1913. * \brief Returns a preset config structure supported for given preset GUID.
  1914. *
  1915. * The function returns a preset config structure for a given preset guid. Before
  1916. * using this function the client must enumerate the preset guids available for
  1917. * a given codec. The preset config structure can be modified by the client depending
  1918. * upon its use case and can be then used to initialize the encoder using
  1919. * ::NvEncInitializeEncoder() API. The client can use this function only if it
  1920. * wants to modify the NvEncodeAPI preset configuration, otherwise it can
  1921. * directly use the preset guid.
  1922. *
  1923. * \param [in] encoder
  1924. * Pointer to the NvEncodeAPI interface.
  1925. * \param [in] encodeGUID
  1926. * Encode GUID, corresponding to which the list of supported presets is to be
  1927. * retrieved.
  1928. * \param [in] presetGUID
  1929. * Preset GUID, corresponding to which the Encoding configurations is to be
  1930. * retrieved.
  1931. * \param [out] presetConfig
  1932. * The requested Preset Encoder Attribute set. Refer ::_NV_ENC_CONFIG for
  1933. * more details.
  1934. *
  1935. * \return
  1936. * ::NV_ENC_SUCCESS \n
  1937. * ::NV_ENC_ERR_INVALID_PTR \n
  1938. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  1939. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  1940. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  1941. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  1942. * ::NV_ENC_ERR_INVALID_PARAM \n
  1943. * ::NV_ENC_ERR_INVALID_VERSION \n
  1944. * ::NV_ENC_ERR_GENERIC \n
  1945. *
  1946. */
  1947. NVENCSTATUS NVENCAPI NvEncGetEncodePresetConfig (void* encoder, GUID encodeGUID, GUID presetGUID, NV_ENC_PRESET_CONFIG* presetConfig);
  1948. // NvEncInitializeEncoder
  1949. /**
  1950. * \brief Initialize the encoder.
  1951. *
  1952. * This API must be used to initialize the encoder. The initialization parameter
  1953. * is passed using \p *createEncodeParams The client must send the following
  1954. * fields of the _NV_ENC_INITIALIZE_PARAMS structure with a valid value.
  1955. * - NV_ENC_INITIALIZE_PARAMS::encodeGUID
  1956. * - NV_ENC_INITIALIZE_PARAMS::encodeWidth
  1957. * - NV_ENC_INITIALIZE_PARAMS::encodeHeight
  1958. *
  1959. * The client can pass a preset guid directly to the NvEncodeAPI interface using
  1960. * NV_ENC_INITIALIZE_PARAMS::presetGUID field. If the client doesn't pass
  1961. * NV_ENC_INITIALIZE_PARAMS::encodeConfig structure, the codec specific parameters
  1962. * will be selected based on the preset guid. The preset guid must have been
  1963. * validated by the client using ::NvEncGetEncodePresetGUIDs() API.
  1964. * If the client passes a custom ::_NV_ENC_CONFIG structure through
  1965. * NV_ENC_INITIALIZE_PARAMS::encodeConfig , it will override the codec specific parameters
  1966. * based on the preset guid. It is recommended that even if the client passes a custom config,
  1967. * it should also send a preset guid. In this case, the preset guid passed by the client
  1968. * will not override any of the custom config parameters programmed by the client,
  1969. * it is only used as a hint by the NvEncodeAPI interface to determine certain encoder parameters
  1970. * which are not exposed to the client.
  1971. *
  1972. * There are two modes of operation for the encoder namely:
  1973. * - Asynchronous mode
  1974. * - Synchronous mode
  1975. *
  1976. * The client can select asynchronous or synchronous mode by setting the \p
  1977. * enableEncodeAsync field in ::_NV_ENC_INITIALIZE_PARAMS to 1 or 0 respectively.
  1978. *\par Asynchronous mode of operation:
  1979. * The Asynchronous mode can be enabled by setting NV_ENC_INITIALIZE_PARAMS::enableEncodeAsync to 1.
  1980. * The client operating in asynchronous mode must allocate completion event object
  1981. * for each output buffer and pass the completion event object in the
  1982. * ::NvEncEncodePicture() API. The client can create another thread and wait on
  1983. * the event object to be signalled by NvEncodeAPI interface on completion of the
  1984. * encoding process for the output frame. This should unblock the main thread from
  1985. * submitting work to the encoder. When the event is signalled the client can call
  1986. * NvEncodeAPI interfaces to copy the bitstream data using ::NvEncLockBitstream()
  1987. * API. This is the preferred mode of operation.
  1988. *
  1989. * NOTE: Asynchronous mode is not supported on Linux.
  1990. *
  1991. *\par Synchronous mode of operation:
  1992. * The client can select synchronous mode by setting NV_ENC_INITIALIZE_PARAMS::enableEncodeAsync to 0.
  1993. * The client working in synchronous mode can work in a single threaded or multi
  1994. * threaded mode. The client need not allocate any event objects. The client can
  1995. * only lock the bitstream data after NvEncodeAPI interface has returned
  1996. * ::NV_ENC_SUCCESS from encode picture. The NvEncodeAPI interface can return
  1997. * ::NV_ENC_ERR_NEED_MORE_INPUT error code from ::NvEncEncodePicture() API. The
  1998. * client must not lock the output buffer in such case but should send the next
  1999. * frame for encoding. The client must keep on calling ::NvEncEncodePicture() API
  2000. * until it returns ::NV_ENC_SUCCESS. \n
  2001. * The client must always lock the bitstream data in order in which it has submitted.
  2002. * This is true for both asynchronous and synchronous mode.
  2003. *
  2004. *\par Picture type decision:
  2005. * If the client is taking the picture type decision and it must disable the picture
  2006. * type decision module in NvEncodeAPI by setting NV_ENC_INITIALIZE_PARAMS::enablePTD
  2007. * to 0. In this case the client is required to send the picture in encoding
  2008. * order to NvEncodeAPI by doing the re-ordering for B frames. \n
  2009. * If the client doesn't want to take the picture type decision it can enable
  2010. * picture type decision module in the NvEncodeAPI interface by setting
  2011. * NV_ENC_INITIALIZE_PARAMS::enablePTD to 1 and send the input pictures in display
  2012. * order.
  2013. *
  2014. * \param [in] encoder
  2015. * Pointer to the NvEncodeAPI interface.
  2016. * \param [in] createEncodeParams
  2017. * Refer ::_NV_ENC_INITIALIZE_PARAMS for details.
  2018. *
  2019. * \return
  2020. * ::NV_ENC_SUCCESS \n
  2021. * ::NV_ENC_ERR_INVALID_PTR \n
  2022. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2023. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2024. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2025. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2026. * ::NV_ENC_ERR_INVALID_PARAM \n
  2027. * ::NV_ENC_ERR_INVALID_VERSION \n
  2028. * ::NV_ENC_ERR_GENERIC \n
  2029. *
  2030. */
  2031. NVENCSTATUS NVENCAPI NvEncInitializeEncoder (void* encoder, NV_ENC_INITIALIZE_PARAMS* createEncodeParams);
  2032. // NvEncCreateInputBuffer
  2033. /**
  2034. * \brief Allocates Input buffer.
  2035. *
  2036. * This function is used to allocate an input buffer. The client must enumerate
  2037. * the input buffer format before allocating the input buffer resources. The
  2038. * NV_ENC_INPUT_PTR returned by the NvEncodeAPI interface in the
  2039. * NV_ENC_CREATE_INPUT_BUFFER::inputBuffer field can be directly used in
  2040. * ::NvEncEncodePicture() API. The number of input buffers to be allocated by the
  2041. * client must be at least 4 more than the number of B frames being used for encoding.
  2042. *
  2043. * \param [in] encoder
  2044. * Pointer to the NvEncodeAPI interface.
  2045. * \param [in,out] createInputBufferParams
  2046. * Pointer to the ::NV_ENC_CREATE_INPUT_BUFFER structure.
  2047. *
  2048. * \return
  2049. * ::NV_ENC_SUCCESS \n
  2050. * ::NV_ENC_ERR_INVALID_PTR \n
  2051. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2052. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2053. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2054. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2055. * ::NV_ENC_ERR_INVALID_PARAM \n
  2056. * ::NV_ENC_ERR_INVALID_VERSION \n
  2057. * ::NV_ENC_ERR_GENERIC \n
  2058. *
  2059. */
  2060. NVENCSTATUS NVENCAPI NvEncCreateInputBuffer (void* encoder, NV_ENC_CREATE_INPUT_BUFFER* createInputBufferParams);
  2061. // NvEncDestroyInputBuffer
  2062. /**
  2063. * \brief Release an input buffers.
  2064. *
  2065. * This function is used to free an input buffer. If the client has allocated
  2066. * any input buffer using ::NvEncCreateInputBuffer() API, it must free those
  2067. * input buffers by calling this function. The client must release the input
  2068. * buffers before destroying the encoder using ::NvEncDestroyEncoder() API.
  2069. *
  2070. * \param [in] encoder
  2071. * Pointer to the NvEncodeAPI interface.
  2072. * \param [in] inputBuffer
  2073. * Pointer to the input buffer to be released.
  2074. *
  2075. * \return
  2076. * ::NV_ENC_SUCCESS \n
  2077. * ::NV_ENC_ERR_INVALID_PTR \n
  2078. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2079. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2080. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2081. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2082. * ::NV_ENC_ERR_INVALID_PARAM \n
  2083. * ::NV_ENC_ERR_INVALID_VERSION \n
  2084. * ::NV_ENC_ERR_GENERIC \n
  2085. *
  2086. */
  2087. NVENCSTATUS NVENCAPI NvEncDestroyInputBuffer (void* encoder, NV_ENC_INPUT_PTR inputBuffer);
  2088. // NvEncCreateBitstreamBuffer
  2089. /**
  2090. * \brief Allocates an output bitstream buffer
  2091. *
  2092. * This function is used to allocate an output bitstream buffer and returns a
  2093. * NV_ENC_OUTPUT_PTR to bitstream buffer to the client in the
  2094. * NV_ENC_CREATE_BITSTREAM_BUFFER::bitstreamBuffer field.
  2095. * The client can only call this function after the encoder session has been
  2096. * initialized using ::NvEncInitializeEncoder() API. The minimum number of output
  2097. * buffers allocated by the client must be at least 4 more than the number of B
  2098. * B frames being used for encoding. The client can only access the output
  2099. * bitsteam data by locking the \p bitstreamBuffer using the ::NvEncLockBitstream()
  2100. * function.
  2101. *
  2102. * \param [in] encoder
  2103. * Pointer to the NvEncodeAPI interface.
  2104. * \param [in,out] createBitstreamBufferParams
  2105. * Pointer ::NV_ENC_CREATE_BITSTREAM_BUFFER for details.
  2106. *
  2107. * \return
  2108. * ::NV_ENC_SUCCESS \n
  2109. * ::NV_ENC_ERR_INVALID_PTR \n
  2110. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2111. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2112. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2113. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2114. * ::NV_ENC_ERR_INVALID_PARAM \n
  2115. * ::NV_ENC_ERR_INVALID_VERSION \n
  2116. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2117. * ::NV_ENC_ERR_GENERIC \n
  2118. *
  2119. */
  2120. NVENCSTATUS NVENCAPI NvEncCreateBitstreamBuffer (void* encoder, NV_ENC_CREATE_BITSTREAM_BUFFER* createBitstreamBufferParams);
  2121. // NvEncDestroyBitstreamBuffer
  2122. /**
  2123. * \brief Release a bitstream buffer.
  2124. *
  2125. * This function is used to release the output bitstream buffer allocated using
  2126. * the ::NvEncCreateBitstreamBuffer() function. The client must release the output
  2127. * bitstreamBuffer using this function before destroying the encoder session.
  2128. *
  2129. * \param [in] encoder
  2130. * Pointer to the NvEncodeAPI interface.
  2131. * \param [in] bitstreamBuffer
  2132. * Pointer to the bitstream buffer being released.
  2133. *
  2134. * \return
  2135. * ::NV_ENC_SUCCESS \n
  2136. * ::NV_ENC_ERR_INVALID_PTR \n
  2137. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2138. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2139. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2140. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2141. * ::NV_ENC_ERR_INVALID_PARAM \n
  2142. * ::NV_ENC_ERR_INVALID_VERSION \n
  2143. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2144. * ::NV_ENC_ERR_GENERIC \n
  2145. *
  2146. */
  2147. NVENCSTATUS NVENCAPI NvEncDestroyBitstreamBuffer (void* encoder, NV_ENC_OUTPUT_PTR bitstreamBuffer);
  2148. // NvEncEncodePicture
  2149. /**
  2150. * \brief Submit an input picture for encoding.
  2151. *
  2152. * This function is used to submit an input picture buffer for encoding. The
  2153. * encoding parameters are passed using \p *encodePicParams which is a pointer
  2154. * to the ::_NV_ENC_PIC_PARAMS structure.
  2155. *
  2156. * If the client has set NV_ENC_INITIALIZE_PARAMS::enablePTD to 0, then it must
  2157. * send a valid value for the following fields.
  2158. * - NV_ENC_PIC_PARAMS::pictureType
  2159. * - NV_ENC_PIC_PARAMS_H264::displayPOCSyntax (H264 only)
  2160. * - NV_ENC_PIC_PARAMS_H264::frameNumSyntax(H264 only)
  2161. * - NV_ENC_PIC_PARAMS_H264::refPicFlag(H264 only)
  2162. *
  2163. *
  2164. *\par Asynchronous Encoding
  2165. * If the client has enabled asynchronous mode of encoding by setting
  2166. * NV_ENC_INITIALIZE_PARAMS::enableEncodeAsync to 1 in the ::NvEncInitializeEncoder()
  2167. * API ,then the client must send a valid NV_ENC_PIC_PARAMS::completionEvent.
  2168. * Incase of asynchronous mode of operation, client can queue the ::NvEncEncodePicture()
  2169. * API commands from the main thread and then queue output buffers to be processed
  2170. * to a secondary worker thread. Before the locking the output buffers in the
  2171. * secondary thread , the client must wait on NV_ENC_PIC_PARAMS::completionEvent
  2172. * it has queued in ::NvEncEncodePicture() API call. The client must always process
  2173. * completion event and the output buffer in the same order in which they have been
  2174. * submitted for encoding. The NvEncodeAPI interface is responsible for any
  2175. * re-ordering required for B frames and will always ensure that encoded bitstream
  2176. * data is written in the same order in which output buffer is submitted.
  2177. *\code
  2178. The below example shows how asynchronous encoding in case of 1 B frames
  2179. ------------------------------------------------------------------------
  2180. Suppose the client allocated 4 input buffers(I1,I2..), 4 output buffers(O1,O2..)
  2181. and 4 completion events(E1, E2, ...). The NvEncodeAPI interface will need to
  2182. keep a copy of the input buffers for re-ordering and it allocates following
  2183. internal buffers (NvI1, NvI2...). These internal buffers are managed by NvEncodeAPI
  2184. and the client is not responsible for the allocating or freeing the memory of
  2185. the internal buffers.
  2186. a) The client main thread will queue the following encode frame calls.
  2187. Note the picture type is unknown to the client, the decision is being taken by
  2188. NvEncodeAPI interface. The client should pass ::_NV_ENC_PIC_PARAMS parameter
  2189. consisting of allocated input buffer, output buffer and output events in successive
  2190. ::NvEncEncodePicture() API calls along with other required encode picture params.
  2191. For example:
  2192. 1st EncodePicture parameters - (I1, O1, E1)
  2193. 2nd EncodePicture parameters - (I2, O2, E2)
  2194. 3rd EncodePicture parameters - (I3, O3, E3)
  2195. b) NvEncodeAPI SW will receive the following encode Commands from the client.
  2196. The left side shows input from client in the form (Input buffer, Output Buffer,
  2197. Output Event). The right hand side shows a possible picture type decision take by
  2198. the NvEncodeAPI interface.
  2199. (I1, O1, E1) ---P1 Frame
  2200. (I2, O2, E2) ---B2 Frame
  2201. (I3, O3, E3) ---P3 Frame
  2202. c) NvEncodeAPI interface will make a copy of the input buffers to its internal
  2203. buffersfor re-ordering. These copies are done as part of nvEncEncodePicture
  2204. function call from the client and NvEncodeAPI interface is responsible for
  2205. synchronization of copy operation with the actual encoding operation.
  2206. I1 --> NvI1
  2207. I2 --> NvI2
  2208. I3 --> NvI3
  2209. d) After returning from ::NvEncEncodePicture() call , the client must queue the output
  2210. bitstream processing work to the secondary thread. The output bitstream processing
  2211. for asynchronous mode consist of first waiting on completion event(E1, E2..)
  2212. and then locking the output bitstream buffer(O1, O2..) for reading the encoded
  2213. data. The work queued to the secondary thread by the client is in the following order
  2214. (I1, O1, E1)
  2215. (I2, O2, E2)
  2216. (I3, O3, E3)
  2217. Note they are in the same order in which client calls ::NvEncEncodePicture() API
  2218. in \p step a).
  2219. e) NvEncodeAPI interface will do the re-ordering such that Encoder HW will receive
  2220. the following encode commands:
  2221. (NvI1, O1, E1) ---P1 Frame
  2222. (NvI3, O2, E2) ---P3 Frame
  2223. (NvI2, O3, E3) ---B2 frame
  2224. f) After the encoding operations are completed, the events will be signalled
  2225. by NvEncodeAPI interface in the following order :
  2226. (O1, E1) ---P1 Frame ,output bitstream copied to O1 and event E1 signalled.
  2227. (O2, E2) ---P3 Frame ,output bitstream copied to O2 and event E2 signalled.
  2228. (O3, E3) ---B2 Frame ,output bitstream copied to O3 and event E3 signalled.
  2229. g) The client must lock the bitstream data using ::NvEncLockBitstream() API in
  2230. the order O1,O2,O3 to read the encoded data, after waiting for the events
  2231. to be signalled in the same order i.e E1, E2 and E3.The output processing is
  2232. done in the secondary thread in the following order:
  2233. Waits on E1, copies encoded bitstream from O1
  2234. Waits on E2, copies encoded bitstream from O2
  2235. Waits on E3, copies encoded bitstream from O3
  2236. -Note the client will receive the events signalling and output buffer in the
  2237. same order in which they have submitted for encoding.
  2238. -Note the LockBitstream will have picture type field which will notify the
  2239. output picture type to the clients.
  2240. -Note the input, output buffer and the output completion event are free to be
  2241. reused once NvEncodeAPI interfaced has signalled the event and the client has
  2242. copied the data from the output buffer.
  2243. * \endcode
  2244. *
  2245. *\par Synchronous Encoding
  2246. * The client can enable synchronous mode of encoding by setting
  2247. * NV_ENC_INITIALIZE_PARAMS::enableEncodeAsync to 0 in ::NvEncInitializeEncoder() API.
  2248. * The NvEncodeAPI interface may return ::NV_ENC_ERR_NEED_MORE_INPUT error code for
  2249. * some ::NvEncEncodePicture() API calls when NV_ENC_INITIALIZE_PARAMS::enablePTD
  2250. * is set to 1, but the client must not treat it as a fatal error. The NvEncodeAPI
  2251. * interface might not be able to submit an input picture buffer for encoding
  2252. * immediately due to re-ordering for B frames. The NvEncodeAPI interface cannot
  2253. * submit the input picture which is decided to be encoded as B frame as it waits
  2254. * for backward reference from temporally subsequent frames. This input picture
  2255. * is buffered internally and waits for more input picture to arrive. The client
  2256. * must not call ::NvEncLockBitstream() API on the output buffers whose
  2257. * ::NvEncEncodePicture() API returns ::NV_ENC_ERR_NEED_MORE_INPUT. The client must
  2258. * wait for the NvEncodeAPI interface to return ::NV_ENC_SUCCESS before locking the
  2259. * output bitstreams to read the encoded bitstream data. The following example
  2260. * explains the scenario with synchronous encoding with 2 B frames.
  2261. *\code
  2262. The below example shows how synchronous encoding works in case of 1 B frames
  2263. -----------------------------------------------------------------------------
  2264. Suppose the client allocated 4 input buffers(I1,I2..), 4 output buffers(O1,O2..)
  2265. and 4 completion events(E1, E2, ...). The NvEncodeAPI interface will need to
  2266. keep a copy of the input buffers for re-ordering and it allocates following
  2267. internal buffers (NvI1, NvI2...). These internal buffers are managed by NvEncodeAPI
  2268. and the client is not responsible for the allocating or freeing the memory of
  2269. the internal buffers.
  2270. The client calls ::NvEncEncodePicture() API with input buffer I1 and output buffer O1.
  2271. The NvEncodeAPI decides to encode I1 as P frame and submits it to encoder
  2272. HW and returns ::NV_ENC_SUCCESS.
  2273. The client can now read the encoded data by locking the output O1 by calling
  2274. NvEncLockBitstream API.
  2275. The client calls ::NvEncEncodePicture() API with input buffer I2 and output buffer O2.
  2276. The NvEncodeAPI decides to encode I2 as B frame and buffers I2 by copying it
  2277. to internal buffer and returns ::NV_ENC_ERR_NEED_MORE_INPUT.
  2278. The error is not fatal and it notifies client that it cannot read the encoded
  2279. data by locking the output O2 by calling ::NvEncLockBitstream() API without submitting
  2280. more work to the NvEncodeAPI interface.
  2281. The client calls ::NvEncEncodePicture() with input buffer I3 and output buffer O3.
  2282. The NvEncodeAPI decides to encode I3 as P frame and it first submits I3 for
  2283. encoding which will be used as backward reference frame for I2.
  2284. The NvEncodeAPI then submits I2 for encoding and returns ::NV_ENC_SUCESS. Both
  2285. the submission are part of the same ::NvEncEncodePicture() function call.
  2286. The client can now read the encoded data for both the frames by locking the output
  2287. O2 followed by O3 ,by calling ::NvEncLockBitstream() API.
  2288. The client must always lock the output in the same order in which it has submitted
  2289. to receive the encoded bitstream in correct encoding order.
  2290. * \endcode
  2291. *
  2292. * \param [in] encoder
  2293. * Pointer to the NvEncodeAPI interface.
  2294. * \param [in,out] encodePicParams
  2295. * Pointer to the ::_NV_ENC_PIC_PARAMS structure.
  2296. *
  2297. * \return
  2298. * ::NV_ENC_SUCCESS \n
  2299. * ::NV_ENC_ERR_INVALID_PTR \n
  2300. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2301. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2302. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2303. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2304. * ::NV_ENC_ERR_INVALID_PARAM \n
  2305. * ::NV_ENC_ERR_INVALID_VERSION \n
  2306. * ::NV_ENC_ERR_ENCODER_BUSY \n
  2307. * ::NV_ENC_ERR_NEED_MORE_INPUT \n
  2308. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2309. * ::NV_ENC_ERR_GENERIC \n
  2310. *
  2311. */
  2312. NVENCSTATUS NVENCAPI NvEncEncodePicture (void* encoder, NV_ENC_PIC_PARAMS* encodePicParams);
  2313. // NvEncLockBitstream
  2314. /**
  2315. * \brief Lock output bitstream buffer
  2316. *
  2317. * This function is used to lock the bitstream buffer to read the encoded data.
  2318. * The client can only access the encoded data by calling this function.
  2319. * The pointer to client accessible encoded data is returned in the
  2320. * NV_ENC_LOCK_BITSTREAM::bitstreamBufferPtr field. The size of the encoded data
  2321. * in the output buffer is returned in the NV_ENC_LOCK_BITSTREAM::bitstreamSizeInBytes
  2322. * The NvEncodeAPI interface also returns the output picture type and picture structure
  2323. * of the encoded frame in NV_ENC_LOCK_BITSTREAM::pictureType and
  2324. * NV_ENC_LOCK_BITSTREAM::pictureStruct fields respectively. If the client has
  2325. * set NV_ENC_LOCK_BITSTREAM::doNotWait to 1, the function might return
  2326. * ::NV_ENC_ERR_LOCK_BUSY if client is operating in synchronous mode. This is not
  2327. * a fatal failure if NV_ENC_LOCK_BITSTREAM::doNotWait is set to 1. In the above case the client can
  2328. * retry the function after few milliseconds.
  2329. *
  2330. * \param [in] encoder
  2331. * Pointer to the NvEncodeAPI interface.
  2332. * \param [in,out] lockBitstreamBufferParams
  2333. * Pointer to the ::_NV_ENC_LOCK_BITSTREAM structure.
  2334. *
  2335. * \return
  2336. * ::NV_ENC_SUCCESS \n
  2337. * ::NV_ENC_ERR_INVALID_PTR \n
  2338. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2339. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2340. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2341. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2342. * ::NV_ENC_ERR_INVALID_PARAM \n
  2343. * ::NV_ENC_ERR_INVALID_VERSION \n
  2344. * ::NV_ENC_ERR_LOCK_BUSY \n
  2345. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2346. * ::NV_ENC_ERR_GENERIC \n
  2347. *
  2348. */
  2349. NVENCSTATUS NVENCAPI NvEncLockBitstream (void* encoder, NV_ENC_LOCK_BITSTREAM* lockBitstreamBufferParams);
  2350. // NvEncUnlockBitstream
  2351. /**
  2352. * \brief Unlock the output bitstream buffer
  2353. *
  2354. * This function is used to unlock the output bitstream buffer after the client
  2355. * has read the encoded data from output buffer. The client must call this function
  2356. * to unlock the output buffer which it has previously locked using ::NvEncLockBitstream()
  2357. * function. Using a locked bitstream buffer in ::NvEncEncodePicture() API will cause
  2358. * the function to fail.
  2359. *
  2360. * \param [in] encoder
  2361. * Pointer to the NvEncodeAPI interface.
  2362. * \param [in,out] bitstreamBuffer
  2363. * bitstream buffer pointer being unlocked
  2364. *
  2365. * \return
  2366. * ::NV_ENC_SUCCESS \n
  2367. * ::NV_ENC_ERR_INVALID_PTR \n
  2368. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2369. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2370. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2371. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2372. * ::NV_ENC_ERR_INVALID_PARAM \n
  2373. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2374. * ::NV_ENC_ERR_GENERIC \n
  2375. *
  2376. */
  2377. NVENCSTATUS NVENCAPI NvEncUnlockBitstream (void* encoder, NV_ENC_OUTPUT_PTR bitstreamBuffer);
  2378. // NvLockInputBuffer
  2379. /**
  2380. * \brief Locks an input buffer
  2381. *
  2382. * This function is used to lock the input buffer to load the uncompressed YUV
  2383. * pixel data into input buffer memory. The client must pass the NV_ENC_INPUT_PTR
  2384. * it had previously allocated using ::NvEncCreateInputBuffer()in the
  2385. * NV_ENC_LOCK_INPUT_BUFFER::inputBuffer field.
  2386. * The NvEncodeAPI interface returns pointer to client accessible input buffer
  2387. * memory in NV_ENC_LOCK_INPUT_BUFFER::bufferDataPtr field.
  2388. *
  2389. * \param [in] encoder
  2390. * Pointer to the NvEncodeAPI interface.
  2391. * \param [in,out] lockInputBufferParams
  2392. * Pointer to the ::_NV_ENC_LOCK_INPUT_BUFFER structure
  2393. *
  2394. * \return
  2395. * \return
  2396. * ::NV_ENC_SUCCESS \n
  2397. * ::NV_ENC_ERR_INVALID_PTR \n
  2398. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2399. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2400. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2401. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2402. * ::NV_ENC_ERR_INVALID_PARAM \n
  2403. * ::NV_ENC_ERR_INVALID_VERSION \n
  2404. * ::NV_ENC_ERR_LOCK_BUSY \n
  2405. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2406. * ::NV_ENC_ERR_GENERIC \n
  2407. *
  2408. */
  2409. NVENCSTATUS NVENCAPI NvEncLockInputBuffer (void* encoder, NV_ENC_LOCK_INPUT_BUFFER* lockInputBufferParams);
  2410. // NvUnlockInputBuffer
  2411. /**
  2412. * \brief Unlocks the input buffer
  2413. *
  2414. * This function is used to unlock the input buffer memory previously locked for
  2415. * uploading YUV pixel data. The input buffer must be unlocked before being used
  2416. * again for encoding, otherwise NvEncodeAPI will fail the ::NvEncEncodePicture()
  2417. *
  2418. * \param [in] encoder
  2419. * Pointer to the NvEncodeAPI interface.
  2420. * \param [in] inputBuffer
  2421. * Pointer to the input buffer that is being unlocked.
  2422. *
  2423. * \return
  2424. * ::NV_ENC_SUCCESS \n
  2425. * ::NV_ENC_ERR_INVALID_PTR \n
  2426. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2427. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2428. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2429. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2430. * ::NV_ENC_ERR_INVALID_VERSION \n
  2431. * ::NV_ENC_ERR_INVALID_PARAM \n
  2432. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2433. * ::NV_ENC_ERR_GENERIC \n
  2434. *
  2435. *
  2436. */
  2437. NVENCSTATUS NVENCAPI NvEncUnlockInputBuffer (void* encoder, NV_ENC_INPUT_PTR inputBuffer);
  2438. // NvEncGetEncodeStats
  2439. /**
  2440. * \brief Get encoding statistics.
  2441. *
  2442. * This function is used to retrieve the encoding statistics.
  2443. * This API is not supported when encode device type is CUDA.
  2444. *
  2445. * \param [in] encoder
  2446. * Pointer to the NvEncodeAPI interface.
  2447. * \param [in,out] encodeStats
  2448. * Pointer to the ::_NV_ENC_STAT structure.
  2449. *
  2450. * \return
  2451. * ::NV_ENC_SUCCESS \n
  2452. * ::NV_ENC_ERR_INVALID_PTR \n
  2453. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2454. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2455. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2456. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2457. * ::NV_ENC_ERR_INVALID_PARAM \n
  2458. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2459. * ::NV_ENC_ERR_GENERIC \n
  2460. *
  2461. */
  2462. NVENCSTATUS NVENCAPI NvEncGetEncodeStats (void* encoder, NV_ENC_STAT* encodeStats);
  2463. // NvEncGetSequenceParams
  2464. /**
  2465. * \brief Get encoded sequence and picture header.
  2466. *
  2467. * This function can be used to retrieve the sequence and picture header out of
  2468. * band. The client must call this function only after the encoder has been
  2469. * initialized using ::NvEncInitializeEncoder() function. The client must
  2470. * allocate the memory where the NvEncodeAPI interface can copy the bitstream
  2471. * header and pass the pointer to the memory in NV_ENC_SEQUENCE_PARAM_PAYLOAD::spsppsBuffer.
  2472. * The size of buffer is passed in the field NV_ENC_SEQUENCE_PARAM_PAYLOAD::inBufferSize.
  2473. * The NvEncodeAPI interface will copy the bitstream header payload and returns
  2474. * the actual size of the bitstream header in the field
  2475. * NV_ENC_SEQUENCE_PARAM_PAYLOAD::outSPSPPSPayloadSize.
  2476. * The client must call ::NvEncGetSequenceParams() function from the same thread which is
  2477. * being used to call ::NvEncEncodePicture() function.
  2478. *
  2479. * \param [in] encoder
  2480. * Pointer to the NvEncodeAPI interface.
  2481. * \param [in,out] sequenceParamPayload
  2482. * Pointer to the ::_NV_ENC_SEQUENCE_PARAM_PAYLOAD structure.
  2483. *
  2484. * \return
  2485. * ::NV_ENC_SUCCESS \n
  2486. * ::NV_ENC_ERR_INVALID_PTR \n
  2487. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2488. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2489. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2490. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2491. * ::NV_ENC_ERR_INVALID_VERSION \n
  2492. * ::NV_ENC_ERR_INVALID_PARAM \n
  2493. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2494. * ::NV_ENC_ERR_GENERIC \n
  2495. *
  2496. */
  2497. NVENCSTATUS NVENCAPI NvEncGetSequenceParams (void* encoder, NV_ENC_SEQUENCE_PARAM_PAYLOAD* sequenceParamPayload);
  2498. // NvEncRegisterAsyncEvent
  2499. /**
  2500. * \brief Register event for notification to encoding completion.
  2501. *
  2502. * This function is used to register the completion event with NvEncodeAPI
  2503. * interface. The event is required when the client has configured the encoder to
  2504. * work in asynchronous mode. In this mode the client needs to send a completion
  2505. * event with every output buffer. The NvEncodeAPI interface will signal the
  2506. * completion of the encoding process using this event. Only after the event is
  2507. * signalled the client can get the encoded data using ::NvEncLockBitstream() function.
  2508. *
  2509. * \param [in] encoder
  2510. * Pointer to the NvEncodeAPI interface.
  2511. * \param [in] eventParams
  2512. * Pointer to the ::_NV_ENC_EVENT_PARAMS structure.
  2513. *
  2514. * \return
  2515. * ::NV_ENC_SUCCESS \n
  2516. * ::NV_ENC_ERR_INVALID_PTR \n
  2517. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2518. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2519. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2520. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2521. * ::NV_ENC_ERR_INVALID_VERSION \n
  2522. * ::NV_ENC_ERR_INVALID_PARAM \n
  2523. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2524. * ::NV_ENC_ERR_GENERIC \n
  2525. *
  2526. */
  2527. NVENCSTATUS NVENCAPI NvEncRegisterAsyncEvent (void* encoder, NV_ENC_EVENT_PARAMS* eventParams);
  2528. // NvEncUnregisterAsyncEvent
  2529. /**
  2530. * \brief Unregister completion event.
  2531. *
  2532. * This function is used to unregister completion event which has been previously
  2533. * registered using ::NvEncRegisterAsyncEvent() function. The client must unregister
  2534. * all events before destroying the encoder using ::NvEncDestroyEncoder() function.
  2535. *
  2536. * \param [in] encoder
  2537. * Pointer to the NvEncodeAPI interface.
  2538. * \param [in] eventParams
  2539. * Pointer to the ::_NV_ENC_EVENT_PARAMS structure.
  2540. *
  2541. * \return
  2542. * ::NV_ENC_SUCCESS \n
  2543. * ::NV_ENC_ERR_INVALID_PTR \n
  2544. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2545. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2546. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2547. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2548. * ::NV_ENC_ERR_INVALID_VERSION \n
  2549. * ::NV_ENC_ERR_INVALID_PARAM \n
  2550. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2551. * ::NV_ENC_ERR_GENERIC \n
  2552. *
  2553. */
  2554. NVENCSTATUS NVENCAPI NvEncUnregisterAsyncEvent (void* encoder, NV_ENC_EVENT_PARAMS* eventParams);
  2555. // NvEncMapInputResource
  2556. /**
  2557. * \brief Map an externally created input resource pointer for encoding.
  2558. *
  2559. * Maps an externally allocated input resource [using and returns a NV_ENC_INPUT_PTR
  2560. * which can be used for encoding in the ::NvEncEncodePicture() function. The
  2561. * mapped resource is returned in the field NV_ENC_MAP_INPUT_RESOURCE::outputResourcePtr.
  2562. * The NvEncodeAPI interface also returns the buffer format of the mapped resource
  2563. * in the field NV_ENC_MAP_INPUT_RESOURCE::outbufferFmt.
  2564. * This function provides synchronization guarantee that any graphics or compute
  2565. * work submitted on the input buffer is completed before the buffer is used for encoding.
  2566. * The client should not access any input buffer while they are mapped by the encoder.
  2567. *
  2568. * \param [in] encoder
  2569. * Pointer to the NvEncodeAPI interface.
  2570. * \param [in,out] mapInputResParams
  2571. * Pointer to the ::_NV_ENC_MAP_INPUT_RESOURCE structure.
  2572. *
  2573. * \return
  2574. * ::NV_ENC_SUCCESS \n
  2575. * ::NV_ENC_ERR_INVALID_PTR \n
  2576. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2577. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2578. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2579. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2580. * ::NV_ENC_ERR_INVALID_VERSION \n
  2581. * ::NV_ENC_ERR_INVALID_PARAM \n
  2582. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2583. * ::NV_ENC_ERR_RESOURCE_NOT_REGISTERED \n
  2584. * ::NV_ENC_ERR_MAP_FAILED \n
  2585. * ::NV_ENC_ERR_GENERIC \n
  2586. *
  2587. */
  2588. NVENCSTATUS NVENCAPI NvEncMapInputResource (void* encoder, NV_ENC_MAP_INPUT_RESOURCE* mapInputResParams);
  2589. // NvEncUnmapInputResource
  2590. /**
  2591. * \brief UnMaps a NV_ENC_INPUT_PTR which was mapped for encoding
  2592. *
  2593. *
  2594. * UnMaps an input buffer which was previously mapped using ::NvEncMapInputResource()
  2595. * API. The mapping created using ::NvEncMapInputResource() should be invalidated
  2596. * using this API before the external resource is destroyed by the client. The client
  2597. * must unmap the buffer after ::NvEncLockBitstream() API returns succuessfully for encode
  2598. * work submitted using the mapped input buffer.
  2599. *
  2600. *
  2601. * \param [in] encoder
  2602. * Pointer to the NvEncodeAPI interface.
  2603. * \param [in] mappedInputBuffer
  2604. * Pointer to the NV_ENC_INPUT_PTR
  2605. *
  2606. * \return
  2607. * ::NV_ENC_SUCCESS \n
  2608. * ::NV_ENC_ERR_INVALID_PTR \n
  2609. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2610. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2611. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2612. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2613. * ::NV_ENC_ERR_INVALID_VERSION \n
  2614. * ::NV_ENC_ERR_INVALID_PARAM \n
  2615. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2616. * ::NV_ENC_ERR_RESOURCE_NOT_REGISTERED \n
  2617. * ::NV_ENC_ERR_RESOURCE_NOT_MAPPED \n
  2618. * ::NV_ENC_ERR_GENERIC \n
  2619. *
  2620. */
  2621. NVENCSTATUS NVENCAPI NvEncUnmapInputResource (void* encoder, NV_ENC_INPUT_PTR mappedInputBuffer);
  2622. // NvEncDestroyEncoder
  2623. /**
  2624. * \brief Destroy Encoding Session
  2625. *
  2626. * Destroys the encoder session previously created using ::NvEncOpenEncodeSession()
  2627. * function. The client must flush the encoder before freeing any resources. In order
  2628. * to flush the encoder the client must pass a NULL encode picture packet and either
  2629. * wait for the ::NvEncEncodePicture() function to return in synchronous mode or wait
  2630. * for the flush event to be signaled by the encoder in asynchronous mode.
  2631. * The client must free all the input and output resources created using the
  2632. * NvEncodeAPI interface before destroying the encoder. If the client is operating
  2633. * in asynchronous mode, it must also unregister the completion events previously
  2634. * registered.
  2635. *
  2636. * \param [in] encoder
  2637. * Pointer to the NvEncodeAPI interface.
  2638. *
  2639. * \return
  2640. * ::NV_ENC_SUCCESS \n
  2641. * ::NV_ENC_ERR_INVALID_PTR \n
  2642. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2643. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2644. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2645. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2646. * ::NV_ENC_ERR_INVALID_PARAM \n
  2647. * ::NV_ENC_ERR_GENERIC \n
  2648. *
  2649. */
  2650. NVENCSTATUS NVENCAPI NvEncDestroyEncoder (void* encoder);
  2651. // NvEncInvalidateRefFrames
  2652. /**
  2653. * \brief Invalidate reference frames
  2654. *
  2655. * Invalidates reference frame based on the time stamp provided by the client.
  2656. * The encoder marks any reference frames or any frames which have been reconstructed
  2657. * using the corrupt frame as invalid for motion estimation and uses older reference
  2658. * frames for motion estimation. The encoded forces the current frame to be encoded
  2659. * as an intra frame if no reference frames are left after invalidation process.
  2660. * This is useful for low latency application for error resiliency. The client
  2661. * is recommended to set NV_ENC_CONFIG_H264::maxNumRefFrames to a large value so
  2662. * that encoder can keep a backup of older reference frames in the DPB and can use them
  2663. * for motion estimation when the newer reference frames have been invalidated.
  2664. * This API can be called multiple times.
  2665. *
  2666. * \param [in] encoder
  2667. * Pointer to the NvEncodeAPI interface.
  2668. * \param [in] invalidRefFrameTimeStamp
  2669. * Timestamp of the invalid reference frames which needs to be invalidated.
  2670. *
  2671. * \return
  2672. * ::NV_ENC_SUCCESS \n
  2673. * ::NV_ENC_ERR_INVALID_PTR \n
  2674. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2675. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2676. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2677. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2678. * ::NV_ENC_ERR_INVALID_PARAM \n
  2679. * ::NV_ENC_ERR_GENERIC \n
  2680. *
  2681. */
  2682. NVENCSTATUS NVENCAPI NvEncInvalidateRefFrames(void* encoder, uint64_t invalidRefFrameTimeStamp);
  2683. // NvEncOpenEncodeSessionEx
  2684. /**
  2685. * \brief Opens an encoding session.
  2686. *
  2687. * Opens an encoding session and returns a pointer to the encoder interface in
  2688. * the \p **encoder parameter. The client should start encoding process by calling
  2689. * this API first.
  2690. * The client must pass a pointer to IDirect3DDevice9 device or CUDA context in the \p *device parameter.
  2691. * For the OpenGL interface, \p device must be NULL. An OpenGL context must be current when
  2692. * calling all NvEncodeAPI functions.
  2693. * If the creation of encoder session fails, the client must call ::NvEncDestroyEncoder API
  2694. * before exiting.
  2695. *
  2696. * \param [in] openSessionExParams
  2697. * Pointer to a ::NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS structure.
  2698. * \param [out] encoder
  2699. * Encode Session pointer to the NvEncodeAPI interface.
  2700. * \return
  2701. * ::NV_ENC_SUCCESS \n
  2702. * ::NV_ENC_ERR_INVALID_PTR \n
  2703. * ::NV_ENC_ERR_NO_ENCODE_DEVICE \n
  2704. * ::NV_ENC_ERR_UNSUPPORTED_DEVICE \n
  2705. * ::NV_ENC_ERR_INVALID_DEVICE \n
  2706. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2707. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2708. * ::NV_ENC_ERR_GENERIC \n
  2709. *
  2710. */
  2711. NVENCSTATUS NVENCAPI NvEncOpenEncodeSessionEx (NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS *openSessionExParams, void** encoder);
  2712. // NvEncRegisterResource
  2713. /**
  2714. * \brief Registers a resource with the Nvidia Video Encoder Interface.
  2715. *
  2716. * Registers a resource with the Nvidia Video Encoder Interface for book keeping.
  2717. * The client is expected to pass the registered resource handle as well, while calling ::NvEncMapInputResource API.
  2718. *
  2719. * \param [in] encoder
  2720. * Pointer to the NVEncodeAPI interface.
  2721. *
  2722. * \param [in] registerResParams
  2723. * Pointer to a ::_NV_ENC_REGISTER_RESOURCE structure
  2724. *
  2725. * \return
  2726. * ::NV_ENC_SUCCESS \n
  2727. * ::NV_ENC_ERR_INVALID_PTR \n
  2728. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2729. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2730. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2731. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2732. * ::NV_ENC_ERR_INVALID_VERSION \n
  2733. * ::NV_ENC_ERR_INVALID_PARAM \n
  2734. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2735. * ::NV_ENC_ERR_RESOURCE_REGISTER_FAILED \n
  2736. * ::NV_ENC_ERR_GENERIC \n
  2737. * ::NV_ENC_ERR_UNIMPLEMENTED \n
  2738. *
  2739. */
  2740. NVENCSTATUS NVENCAPI NvEncRegisterResource (void* encoder, NV_ENC_REGISTER_RESOURCE* registerResParams);
  2741. // NvEncUnregisterResource
  2742. /**
  2743. * \brief Unregisters a resource previously registered with the Nvidia Video Encoder Interface.
  2744. *
  2745. * Unregisters a resource previously registered with the Nvidia Video Encoder Interface.
  2746. * The client is expected to unregister any resource that it has registered with the
  2747. * Nvidia Video Encoder Interface before destroying the resource.
  2748. *
  2749. * \param [in] encoder
  2750. * Pointer to the NVEncodeAPI interface.
  2751. *
  2752. * \param [in] registeredResource
  2753. * The registered resource pointer that was returned in ::NvEncRegisterResource.
  2754. *
  2755. * \return
  2756. * ::NV_ENC_SUCCESS \n
  2757. * ::NV_ENC_ERR_INVALID_PTR \n
  2758. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2759. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2760. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2761. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2762. * ::NV_ENC_ERR_INVALID_VERSION \n
  2763. * ::NV_ENC_ERR_INVALID_PARAM \n
  2764. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2765. * ::NV_ENC_ERR_RESOURCE_NOT_REGISTERED \n
  2766. * ::NV_ENC_ERR_GENERIC \n
  2767. * ::NV_ENC_ERR_UNIMPLEMENTED \n
  2768. *
  2769. */
  2770. NVENCSTATUS NVENCAPI NvEncUnregisterResource (void* encoder, NV_ENC_REGISTERED_PTR registeredResource);
  2771. // NvEncReconfigureEncoder
  2772. /**
  2773. * \brief Reconfigure an existing encoding session.
  2774. *
  2775. * Reconfigure an existing encoding session.
  2776. * The client should call this API to change/reconfigure the parameter passed during
  2777. * NvEncInitializeEncoder API call.
  2778. * Currently Reconfiguration of following are not supported.
  2779. * Change in GOP structure.
  2780. * Change in sync-Async mode.
  2781. * Change in MaxWidth & MaxHeight.
  2782. * Change in PTDmode.
  2783. *
  2784. * Resolution change is possible only if maxEncodeWidth & maxEncodeHeight of NV_ENC_INITIALIZE_PARAMS
  2785. * is set while creating encoder session.
  2786. *
  2787. * \param [in] encoder
  2788. * Pointer to the NVEncodeAPI interface.
  2789. *
  2790. * \param [in] reInitEncodeParams
  2791. * Pointer to a ::NV_ENC_RECONFIGURE_PARAMS structure.
  2792. * \return
  2793. * ::NV_ENC_SUCCESS \n
  2794. * ::NV_ENC_ERR_INVALID_PTR \n
  2795. * ::NV_ENC_ERR_NO_ENCODE_DEVICE \n
  2796. * ::NV_ENC_ERR_UNSUPPORTED_DEVICE \n
  2797. * ::NV_ENC_ERR_INVALID_DEVICE \n
  2798. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2799. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2800. * ::NV_ENC_ERR_GENERIC \n
  2801. *
  2802. */
  2803. NVENCSTATUS NVENCAPI NvEncReconfigureEncoder (void *encoder, NV_ENC_RECONFIGURE_PARAMS* reInitEncodeParams);
  2804. // NvEncCreateMVBuffer
  2805. /**
  2806. * \brief Allocates output MV buffer for ME only mode.
  2807. *
  2808. * This function is used to allocate an output MV buffer. The size of the mvBuffer is
  2809. * dependent on the frame height and width of the last ::NvEncCreateInputBuffer() call.
  2810. * The NV_ENC_OUTPUT_PTR returned by the NvEncodeAPI interface in the
  2811. * ::NV_ENC_CREATE_MV_BUFFER::mvBuffer field should be used in
  2812. * ::NvEncRunMotionEstimationOnly() API.
  2813. * Client must lock ::NV_ENC_CREATE_MV_BUFFER::mvBuffer using ::NvEncLockBitstream() API to get the motion vector data.
  2814. *
  2815. * \param [in] encoder
  2816. * Pointer to the NvEncodeAPI interface.
  2817. * \param [in,out] createMVBufferParams
  2818. * Pointer to the ::NV_ENC_CREATE_MV_BUFFER structure.
  2819. *
  2820. * \return
  2821. * ::NV_ENC_SUCCESS \n
  2822. * ::NV_ENC_ERR_INVALID_PTR \n
  2823. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2824. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2825. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2826. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2827. * ::NV_ENC_ERR_INVALID_PARAM \n
  2828. * ::NV_ENC_ERR_INVALID_VERSION \n
  2829. * ::NV_ENC_ERR_GENERIC \n
  2830. */
  2831. NVENCSTATUS NVENCAPI NvEncCreateMVBuffer (void* encoder, NV_ENC_CREATE_MV_BUFFER* createMVBufferParams);
  2832. // NvEncDestroyMVBuffer
  2833. /**
  2834. * \brief Release an output MV buffer for ME only mode.
  2835. *
  2836. * This function is used to release the output MV buffer allocated using
  2837. * the ::NvEncCreateMVBuffer() function. The client must release the output
  2838. * mvBuffer using this function before destroying the encoder session.
  2839. *
  2840. * \param [in] encoder
  2841. * Pointer to the NvEncodeAPI interface.
  2842. * \param [in] mvBuffer
  2843. * Pointer to the mvBuffer being released.
  2844. *
  2845. * \return
  2846. * ::NV_ENC_SUCCESS \n
  2847. * ::NV_ENC_ERR_INVALID_PTR \n
  2848. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2849. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2850. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2851. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2852. * ::NV_ENC_ERR_INVALID_PARAM \n
  2853. * ::NV_ENC_ERR_INVALID_VERSION \n
  2854. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2855. * ::NV_ENC_ERR_GENERIC \n
  2856. */
  2857. NVENCSTATUS NVENCAPI NvEncDestroyMVBuffer (void* encoder, NV_ENC_OUTPUT_PTR mvBuffer);
  2858. // NvEncRunMotionEstimationOnly
  2859. /**
  2860. * \brief Submit an input picture and reference frame for motion estimation in ME only mode.
  2861. *
  2862. * This function is used to submit the input frame and reference frame for motion
  2863. * estimation. The ME parameters are passed using *meOnlyParams which is a pointer
  2864. * to ::_NV_ENC_MEONLY_PARAMS structure.
  2865. * Client must lock ::NV_ENC_CREATE_MV_BUFFER::mvBuffer using ::NvEncLockBitstream() API to get the motion vector data.
  2866. * to get motion vector data.
  2867. *
  2868. * \param [in] encoder
  2869. * Pointer to the NvEncodeAPI interface.
  2870. * \param [in] meOnlyParams
  2871. * Pointer to the ::_NV_ENC_MEONLY_PARAMS structure.
  2872. *
  2873. * \return
  2874. * ::NV_ENC_SUCCESS \n
  2875. * ::NV_ENC_ERR_INVALID_PTR \n
  2876. * ::NV_ENC_ERR_INVALID_ENCODERDEVICE \n
  2877. * ::NV_ENC_ERR_DEVICE_NOT_EXIST \n
  2878. * ::NV_ENC_ERR_UNSUPPORTED_PARAM \n
  2879. * ::NV_ENC_ERR_OUT_OF_MEMORY \n
  2880. * ::NV_ENC_ERR_INVALID_PARAM \n
  2881. * ::NV_ENC_ERR_INVALID_VERSION \n
  2882. * ::NV_ENC_ERR_NEED_MORE_INPUT \n
  2883. * ::NV_ENC_ERR_ENCODER_NOT_INITIALIZED \n
  2884. * ::NV_ENC_ERR_GENERIC \n
  2885. */
  2886. NVENCSTATUS NVENCAPI NvEncRunMotionEstimationOnly (void* encoder, NV_ENC_MEONLY_PARAMS* meOnlyParams);
  2887. // NvEncodeAPIGetMaxSupportedVersion
  2888. /**
  2889. * \brief Get the largest NvEncodeAPI version supported by the driver.
  2890. *
  2891. * This function can be used by clients to determine if the driver supports
  2892. * the NvEncodeAPI header the application was compiled with.
  2893. *
  2894. * \param [out] version
  2895. * Pointer to the requested value. The 4 least significant bits in the returned
  2896. * indicate the minor version and the rest of the bits indicate the major
  2897. * version of the largest supported version.
  2898. *
  2899. * \return
  2900. * ::NV_ENC_SUCCESS \n
  2901. * ::NV_ENC_ERR_INVALID_PTR \n
  2902. */
  2903. NVENCSTATUS NVENCAPI NvEncodeAPIGetMaxSupportedVersion (uint32_t* version);
  2904. /// \cond API PFN
  2905. /*
  2906. * Defines API function pointers
  2907. */
  2908. typedef NVENCSTATUS (NVENCAPI* PNVENCOPENENCODESESSION) (void* device, uint32_t deviceType, void** encoder);
  2909. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEGUIDCOUNT) (void* encoder, uint32_t* encodeGUIDCount);
  2910. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEGUIDS) (void* encoder, GUID* GUIDs, uint32_t guidArraySize, uint32_t* GUIDCount);
  2911. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEPROFILEGUIDCOUNT) (void* encoder, GUID encodeGUID, uint32_t* encodeProfileGUIDCount);
  2912. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEPROFILEGUIDS) (void* encoder, GUID encodeGUID, GUID* profileGUIDs, uint32_t guidArraySize, uint32_t* GUIDCount);
  2913. typedef NVENCSTATUS (NVENCAPI* PNVENCGETINPUTFORMATCOUNT) (void* encoder, GUID encodeGUID, uint32_t* inputFmtCount);
  2914. typedef NVENCSTATUS (NVENCAPI* PNVENCGETINPUTFORMATS) (void* encoder, GUID encodeGUID, NV_ENC_BUFFER_FORMAT* inputFmts, uint32_t inputFmtArraySize, uint32_t* inputFmtCount);
  2915. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODECAPS) (void* encoder, GUID encodeGUID, NV_ENC_CAPS_PARAM* capsParam, int* capsVal);
  2916. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEPRESETCOUNT) (void* encoder, GUID encodeGUID, uint32_t* encodePresetGUIDCount);
  2917. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEPRESETGUIDS) (void* encoder, GUID encodeGUID, GUID* presetGUIDs, uint32_t guidArraySize, uint32_t* encodePresetGUIDCount);
  2918. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODEPRESETCONFIG) (void* encoder, GUID encodeGUID, GUID presetGUID, NV_ENC_PRESET_CONFIG* presetConfig);
  2919. typedef NVENCSTATUS (NVENCAPI* PNVENCINITIALIZEENCODER) (void* encoder, NV_ENC_INITIALIZE_PARAMS* createEncodeParams);
  2920. typedef NVENCSTATUS (NVENCAPI* PNVENCCREATEINPUTBUFFER) (void* encoder, NV_ENC_CREATE_INPUT_BUFFER* createInputBufferParams);
  2921. typedef NVENCSTATUS (NVENCAPI* PNVENCDESTROYINPUTBUFFER) (void* encoder, NV_ENC_INPUT_PTR inputBuffer);
  2922. typedef NVENCSTATUS (NVENCAPI* PNVENCCREATEBITSTREAMBUFFER) (void* encoder, NV_ENC_CREATE_BITSTREAM_BUFFER* createBitstreamBufferParams);
  2923. typedef NVENCSTATUS (NVENCAPI* PNVENCDESTROYBITSTREAMBUFFER) (void* encoder, NV_ENC_OUTPUT_PTR bitstreamBuffer);
  2924. typedef NVENCSTATUS (NVENCAPI* PNVENCENCODEPICTURE) (void* encoder, NV_ENC_PIC_PARAMS* encodePicParams);
  2925. typedef NVENCSTATUS (NVENCAPI* PNVENCLOCKBITSTREAM) (void* encoder, NV_ENC_LOCK_BITSTREAM* lockBitstreamBufferParams);
  2926. typedef NVENCSTATUS (NVENCAPI* PNVENCUNLOCKBITSTREAM) (void* encoder, NV_ENC_OUTPUT_PTR bitstreamBuffer);
  2927. typedef NVENCSTATUS (NVENCAPI* PNVENCLOCKINPUTBUFFER) (void* encoder, NV_ENC_LOCK_INPUT_BUFFER* lockInputBufferParams);
  2928. typedef NVENCSTATUS (NVENCAPI* PNVENCUNLOCKINPUTBUFFER) (void* encoder, NV_ENC_INPUT_PTR inputBuffer);
  2929. typedef NVENCSTATUS (NVENCAPI* PNVENCGETENCODESTATS) (void* encoder, NV_ENC_STAT* encodeStats);
  2930. typedef NVENCSTATUS (NVENCAPI* PNVENCGETSEQUENCEPARAMS) (void* encoder, NV_ENC_SEQUENCE_PARAM_PAYLOAD* sequenceParamPayload);
  2931. typedef NVENCSTATUS (NVENCAPI* PNVENCREGISTERASYNCEVENT) (void* encoder, NV_ENC_EVENT_PARAMS* eventParams);
  2932. typedef NVENCSTATUS (NVENCAPI* PNVENCUNREGISTERASYNCEVENT) (void* encoder, NV_ENC_EVENT_PARAMS* eventParams);
  2933. typedef NVENCSTATUS (NVENCAPI* PNVENCMAPINPUTRESOURCE) (void* encoder, NV_ENC_MAP_INPUT_RESOURCE* mapInputResParams);
  2934. typedef NVENCSTATUS (NVENCAPI* PNVENCUNMAPINPUTRESOURCE) (void* encoder, NV_ENC_INPUT_PTR mappedInputBuffer);
  2935. typedef NVENCSTATUS (NVENCAPI* PNVENCDESTROYENCODER) (void* encoder);
  2936. typedef NVENCSTATUS (NVENCAPI* PNVENCINVALIDATEREFFRAMES) (void* encoder, uint64_t invalidRefFrameTimeStamp);
  2937. typedef NVENCSTATUS (NVENCAPI* PNVENCOPENENCODESESSIONEX) (NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS *openSessionExParams, void** encoder);
  2938. typedef NVENCSTATUS (NVENCAPI* PNVENCREGISTERRESOURCE) (void* encoder, NV_ENC_REGISTER_RESOURCE* registerResParams);
  2939. typedef NVENCSTATUS (NVENCAPI* PNVENCUNREGISTERRESOURCE) (void* encoder, NV_ENC_REGISTERED_PTR registeredRes);
  2940. typedef NVENCSTATUS (NVENCAPI* PNVENCRECONFIGUREENCODER) (void* encoder, NV_ENC_RECONFIGURE_PARAMS* reInitEncodeParams);
  2941. typedef NVENCSTATUS (NVENCAPI* PNVENCCREATEMVBUFFER) (void* encoder, NV_ENC_CREATE_MV_BUFFER* createMVBufferParams);
  2942. typedef NVENCSTATUS (NVENCAPI* PNVENCDESTROYMVBUFFER) (void* encoder, NV_ENC_OUTPUT_PTR mvBuffer);
  2943. typedef NVENCSTATUS (NVENCAPI* PNVENCRUNMOTIONESTIMATIONONLY) (void* encoder, NV_ENC_MEONLY_PARAMS* meOnlyParams);
  2944. /// \endcond
  2945. /** @} */ /* END ENCODE_FUNC */
  2946. /**
  2947. * \ingroup ENCODER_STRUCTURE
  2948. * NV_ENCODE_API_FUNCTION_LIST
  2949. */
  2950. typedef struct _NV_ENCODE_API_FUNCTION_LIST
  2951. {
  2952. uint32_t version; /**< [in]: Client should pass NV_ENCODE_API_FUNCTION_LIST_VER. */
  2953. uint32_t reserved; /**< [in]: Reserved and should be set to 0. */
  2954. PNVENCOPENENCODESESSION nvEncOpenEncodeSession; /**< [out]: Client should access ::NvEncOpenEncodeSession() API through this pointer. */
  2955. PNVENCGETENCODEGUIDCOUNT nvEncGetEncodeGUIDCount; /**< [out]: Client should access ::NvEncGetEncodeGUIDCount() API through this pointer. */
  2956. PNVENCGETENCODEPRESETCOUNT nvEncGetEncodeProfileGUIDCount; /**< [out]: Client should access ::NvEncGetEncodeProfileGUIDCount() API through this pointer.*/
  2957. PNVENCGETENCODEPRESETGUIDS nvEncGetEncodeProfileGUIDs; /**< [out]: Client should access ::NvEncGetEncodeProfileGUIDs() API through this pointer. */
  2958. PNVENCGETENCODEGUIDS nvEncGetEncodeGUIDs; /**< [out]: Client should access ::NvEncGetEncodeGUIDs() API through this pointer. */
  2959. PNVENCGETINPUTFORMATCOUNT nvEncGetInputFormatCount; /**< [out]: Client should access ::NvEncGetInputFormatCount() API through this pointer. */
  2960. PNVENCGETINPUTFORMATS nvEncGetInputFormats; /**< [out]: Client should access ::NvEncGetInputFormats() API through this pointer. */
  2961. PNVENCGETENCODECAPS nvEncGetEncodeCaps; /**< [out]: Client should access ::NvEncGetEncodeCaps() API through this pointer. */
  2962. PNVENCGETENCODEPRESETCOUNT nvEncGetEncodePresetCount; /**< [out]: Client should access ::NvEncGetEncodePresetCount() API through this pointer. */
  2963. PNVENCGETENCODEPRESETGUIDS nvEncGetEncodePresetGUIDs; /**< [out]: Client should access ::NvEncGetEncodePresetGUIDs() API through this pointer. */
  2964. PNVENCGETENCODEPRESETCONFIG nvEncGetEncodePresetConfig; /**< [out]: Client should access ::NvEncGetEncodePresetConfig() API through this pointer. */
  2965. PNVENCINITIALIZEENCODER nvEncInitializeEncoder; /**< [out]: Client should access ::NvEncInitializeEncoder() API through this pointer. */
  2966. PNVENCCREATEINPUTBUFFER nvEncCreateInputBuffer; /**< [out]: Client should access ::NvEncCreateInputBuffer() API through this pointer. */
  2967. PNVENCDESTROYINPUTBUFFER nvEncDestroyInputBuffer; /**< [out]: Client should access ::NvEncDestroyInputBuffer() API through this pointer. */
  2968. PNVENCCREATEBITSTREAMBUFFER nvEncCreateBitstreamBuffer; /**< [out]: Client should access ::NvEncCreateBitstreamBuffer() API through this pointer. */
  2969. PNVENCDESTROYBITSTREAMBUFFER nvEncDestroyBitstreamBuffer; /**< [out]: Client should access ::NvEncDestroyBitstreamBuffer() API through this pointer. */
  2970. PNVENCENCODEPICTURE nvEncEncodePicture; /**< [out]: Client should access ::NvEncEncodePicture() API through this pointer. */
  2971. PNVENCLOCKBITSTREAM nvEncLockBitstream; /**< [out]: Client should access ::NvEncLockBitstream() API through this pointer. */
  2972. PNVENCUNLOCKBITSTREAM nvEncUnlockBitstream; /**< [out]: Client should access ::NvEncUnlockBitstream() API through this pointer. */
  2973. PNVENCLOCKINPUTBUFFER nvEncLockInputBuffer; /**< [out]: Client should access ::NvEncLockInputBuffer() API through this pointer. */
  2974. PNVENCUNLOCKINPUTBUFFER nvEncUnlockInputBuffer; /**< [out]: Client should access ::NvEncUnlockInputBuffer() API through this pointer. */
  2975. PNVENCGETENCODESTATS nvEncGetEncodeStats; /**< [out]: Client should access ::NvEncGetEncodeStats() API through this pointer. */
  2976. PNVENCGETSEQUENCEPARAMS nvEncGetSequenceParams; /**< [out]: Client should access ::NvEncGetSequenceParams() API through this pointer. */
  2977. PNVENCREGISTERASYNCEVENT nvEncRegisterAsyncEvent; /**< [out]: Client should access ::NvEncRegisterAsyncEvent() API through this pointer. */
  2978. PNVENCUNREGISTERASYNCEVENT nvEncUnregisterAsyncEvent; /**< [out]: Client should access ::NvEncUnregisterAsyncEvent() API through this pointer. */
  2979. PNVENCMAPINPUTRESOURCE nvEncMapInputResource; /**< [out]: Client should access ::NvEncMapInputResource() API through this pointer. */
  2980. PNVENCUNMAPINPUTRESOURCE nvEncUnmapInputResource; /**< [out]: Client should access ::NvEncUnmapInputResource() API through this pointer. */
  2981. PNVENCDESTROYENCODER nvEncDestroyEncoder; /**< [out]: Client should access ::NvEncDestroyEncoder() API through this pointer. */
  2982. PNVENCINVALIDATEREFFRAMES nvEncInvalidateRefFrames; /**< [out]: Client should access ::NvEncInvalidateRefFrames() API through this pointer. */
  2983. PNVENCOPENENCODESESSIONEX nvEncOpenEncodeSessionEx; /**< [out]: Client should access ::NvEncOpenEncodeSession() API through this pointer. */
  2984. PNVENCREGISTERRESOURCE nvEncRegisterResource; /**< [out]: Client should access ::NvEncRegisterResource() API through this pointer. */
  2985. PNVENCUNREGISTERRESOURCE nvEncUnregisterResource; /**< [out]: Client should access ::NvEncUnregisterResource() API through this pointer. */
  2986. PNVENCRECONFIGUREENCODER nvEncReconfigureEncoder; /**< [out]: Client should access ::NvEncReconfigureEncoder() API through this pointer. */
  2987. void* reserved1;
  2988. PNVENCCREATEMVBUFFER nvEncCreateMVBuffer; /**< [out]: Client should access ::NvEncCreateMVBuffer API through this pointer. */
  2989. PNVENCDESTROYMVBUFFER nvEncDestroyMVBuffer; /**< [out]: Client should access ::NvEncDestroyMVBuffer API through this pointer. */
  2990. PNVENCRUNMOTIONESTIMATIONONLY nvEncRunMotionEstimationOnly; /**< [out]: Client should access ::NvEncRunMotionEstimationOnly API through this pointer. */
  2991. void* reserved2[281]; /**< [in]: Reserved and must be set to NULL */
  2992. } NV_ENCODE_API_FUNCTION_LIST;
  2993. /** Macro for constructing the version field of ::_NV_ENCODEAPI_FUNCTION_LIST. */
  2994. #define NV_ENCODE_API_FUNCTION_LIST_VER NVENCAPI_STRUCT_VERSION(2)
  2995. // NvEncodeAPICreateInstance
  2996. /**
  2997. * \ingroup ENCODE_FUNC
  2998. * Entry Point to the NvEncodeAPI interface.
  2999. *
  3000. * Creates an instance of the NvEncodeAPI interface, and populates the
  3001. * pFunctionList with function pointers to the API routines implemented by the
  3002. * NvEncodeAPI interface.
  3003. *
  3004. * \param [out] functionList
  3005. *
  3006. * \return
  3007. * ::NV_ENC_SUCCESS
  3008. * ::NV_ENC_ERR_INVALID_PTR
  3009. */
  3010. NVENCSTATUS NVENCAPI NvEncodeAPICreateInstance(NV_ENCODE_API_FUNCTION_LIST *functionList);
  3011. #ifdef __cplusplus
  3012. }
  3013. #endif
  3014. #endif