• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# OH_VideoEncInfo
2
3
4## Overview
5
6The **OH_VideoEncInfo** struct defines video encoding parameters.
7
8> **NOTE**
9>
10> This struct is reserved and will be provided in later versions.
11
12**System capability**: SystemCapability.Multimedia.Media.AVScreenCapture
13
14**Since**
15
1610
17
18**Related Modules**
19
20[AVScreenCapture](_a_v_screen_capture.md)
21
22
23## Summary
24
25
26### Member Variables
27
28| Name| Description|
29| -------- | -------- |
30| [videoCodec](#videocodec) | [OH_VideoCodecFormat](_a_v_screen_capture.md#oh_videocodecformat)<br>Defines the video encoding format.|
31| [videoBitrate](#videobitrate) | int32_t<br>Defines the video bit rate.|
32| [videoFrameRate](#videoframerate) | int32_t<br>Defines the video frame rate.|
33
34
35## Member Variable Description
36
37
38### videoBitrate
39
40```
41int32_t OH_VideoEncInfo::videoBitrate
42```
43
44**Description**
45
46Defines the video bit rate.
47
48
49### videoCodec
50
51```
52OH_VideoCodecFormat OH_VideoEncInfo::videoCodec
53```
54
55**Description**
56
57Defines the video encoding format.
58
59
60### videoFrameRate
61
62```
63int32_t OH_VideoEncInfo::videoFrameRate
64```
65
66**Description**
67
68Defines the video frame rate.
69