aclvencChannelDescParamType
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | enum aclvencChannelDescParamType { ACL_VENC_THREAD_ID_UINT64 = 0, // Callback thread ID. Its value is of the uint64_t type. ACL_VENC_CALLBACK_PTR, // Callback function. Its value is a memory pointer. ACL_VENC_PIXEL_FORMAT_UINT32, // Input image format. Its value is of the uint32_t type. ACL_VENC_ENCODE_TYPE_UINT32, // Video coding protocol. Its value is of the uint32_t type. ACL_VENC_PIC_WIDTH_UINT32, // Input image width. Its value is of the uint32_t type. ACL_VENC_PIC_HEIGHT_UINT32, // Input image height. Its value is of the uint32_t type. ACL_VENC_KEY_FRAME_INTERVAL_UINT32, // Key frame interval. Its value is of the uint32_t type. ACL_VENC_BUF_ADDR_PTR, // Buffer address of the encode output. ACL_VENC_BUF_SIZE_UINT32, // Buffer size of the encoding output. Its value is of the uint32_t type. ACL_VENC_RC_MODE_UINT32, // Bit rate control mode. Its value is of the uint32_t type. ACL_VENC_SRC_RATE_UINT32, // Frame rate of the input stream. Its value is of the uint32_t type. ACL_VENC_MAX_BITRATE_UINT32, // Output bit rate. Its value is of the uint32_t type. ACL_VENC_MAX_IP_PROP_UINT32 // I-frame to P-frame bit allocation ratio within a GOP. Its value is of the uint32_t type. } |
Attribute |
Description |
|---|---|
ACL_VENC_THREAD_ID_UINT64 |
Callback thread ID. Do not pass the same thread ID for subscribing to VENC callback functions on different devices in the same process. |
ACL_VENC_CALLBACK_PTR |
Encoding callback function For details about the type definition, see aclvencCallback. |
ACL_VENC_PIXEL_FORMAT_UINT32 |
The following formats are supported:
|
ACL_VENC_ENCODE_TYPE_UINT32 |
Video coding protocol. For details about the type definition, see acldvppStreamFormat. For details, see acldvppStreamFormat. |
ACL_VENC_PIC_WIDTH_UINT32 |
Image width. |
ACL_VENC_PIC_HEIGHT_UINT32 |
Image height. |
ACL_VENC_KEY_FRAME_INTERVAL_UINT32 |
Key frame interval. Must be in the range of [1, 65536]. |
ACL_VENC_BUF_ADDR_PTR |
Pointer to the buffer address of the encoding output. |
ACL_VENC_BUF_SIZE_UINT32 |
Buffer allocation in bytes of the encode output. In the current version, it is not supported to obtain this attribute. The value obtained is invalid. |
ACL_VENC_RC_MODE_UINT32 |
Bit rate control mode
|
ACL_VENC_SRC_RATE_UINT32 |
Frame rate of the input stream (fps) If it is not set or set to 0, the default value 30 is used. If the difference between the value of this parameter and the actual frame rate of the input stream is too large, the output bit rate is affected. |
ACL_VENC_MAX_BITRATE_UINT32 |
Output bit rate (kbps) |
ACL_VENC_MAX_IP_PROP_UINT32 |
I-frame to P-frame bit allocation ratio within a GOP. Must be 0 or within the range of [1, 100]. The default value is 80 in VBR mode or 70 in CBR mode. If it is set to 0, the default value is used. |