StreamFormat
Description
Defines the video stream data format, which is used for video decoding and encoding.
Structure Definition
1 2 3 4 5 6 | enum class StreamFormat { H265_MAIN_LEVEL = 0, H264_BASELINE_LEVEL = 1, H264_MAIN_LEVEL = 2, H264_HIGH_LEVEL = 3, }; |
Parameters
Parameter |
Description |
|---|---|
H265_MAIN_LEVEL |
H.265 video streams with mainstream image quality |
H264_BASELINE_LEVEL |
H.264 video streams with basic image quality |
H264_MAIN_LEVEL |
H.264 video streams with mainstream image quality |
H264_HIGH_LEVEL |
H.264 video streams with high image quality |
Parent topic: General Data Structures