2
3
4
5
16
17
21
22
31} esp_h264_enc_param_t;
34
35
36
37
38
39
40
41
42
43
44
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
68
69
70
71
72
73
74
75
76
77
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
99
100
101
102
103
104
105
106
107
108
112
113
114
115
116
117
118
119
120
121
125
126
127
128
129
130
131
132
133
134
138
139
140
141
142
143
144
145
146
esp_h264_err_t esp_h264_enc_get_bitrate(esp_h264_enc_param_handle_t handle, uint32_t *out_bitrate)
This function is used to retrieve the bitrate from the encoder.
Definition: esp_h264_enc_param.c:59
esp_h264_err_t esp_h264_enc_set_bitrate(esp_h264_enc_param_handle_t handle, uint32_t bitrate)
This function sets the bitrate parameter for the H.264 encoder.
Definition: esp_h264_enc_param.c:52
esp_h264_err_t esp_h264_enc_get_gop(esp_h264_enc_param_handle_t handle, uint8_t *out_gop)
This function is used to retrieve the group of picture(GOP) from the encoder.
Definition: esp_h264_enc_param.c:44
esp_h264_err_t esp_h264_enc_set_gop(esp_h264_enc_param_handle_t handle, uint8_t gop)
This function sets the group of picture(GOP) parameter for the H.264 encoder.
Definition: esp_h264_enc_param.c:36
esp_h264_err_t esp_h264_enc_get_resolution(esp_h264_enc_param_handle_t handle, esp_h264_resolution_t *out_res)
This function retrieves the resolution of the video encoder specified by the handle parameter The enc...
Definition: esp_h264_enc_param.c:12
esp_h264_err_t esp_h264_enc_set_fps(esp_h264_enc_param_handle_t handle, uint8_t fps)
This function sets the frames per second (FPS) parameter for the H.264 encoder.
Definition: esp_h264_enc_param.c:20
esp_h264_err_t esp_h264_enc_get_fps(esp_h264_enc_param_handle_t handle, uint8_t *out_fps)
This function is used to retrieve the frames per second (FPS) from the encoder.
Definition: esp_h264_enc_param.c:28
esp_h264_err_t esp_h264_enc_get_bpp(esp_h264_enc_param_handle_t handle, float *out_bpp)
This function is used to retrieve the bits per pixel from the encoder.
struct esp_h264_enc_param_if * esp_h264_enc_param_handle_t
It is a pointer to the H.264 encoding parameters structure.
Definition: esp_h264_enc_param.h:18
The H.264 encoder parameter interface.
Definition: esp_h264_enc_param.h:23