Skip to content

DD_VIDEO_ENCODE_MODE

Enum Definition

1
2
3
4
5
6
typedef enum _dd_video_encode_mode_
{
    DD_VIDEO_ENCODE_MODE_NONE,
    DD_VIDEO_ENCODE_MODE_VBR = 0x01,
    DD_VIDEO_ENCODE_MODE_CBR = 0x02
} DD_VIDEO_ENCODE_MODE;
1
2
3
4
5
6
public enum DD_VIDEO_ENCODE_MODE
{
    DD_VIDEO_ENCODE_MODE_NONE,
    DD_VIDEO_ENCODE_MODE_VBR = 0x01,
    DD_VIDEO_ENCODE_MODE_CBR = 0x02
}

Function Description

Video encoding mode, saved bit by bit, can only be 32 at most.

Member Description

Enum name Value Remark
DD_VIDEO_ENCODE_MODE_NONE 0 None.
DD_VIDEO_ENCODE_MODE_VBR 0x01 Variable code stream.
DD_VIDEO_ENCODE_MODE_CBR 0x02 Fixed bitrate.
Error Code