2
3
4
5
17
18
22
23
27 esp_h264_enc_out_frame_t *out_frame);
33
34
35
36
37
38
39
40
41
42
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
75
76
77
78
79
80
81
82
83
87
88
89
90
91
92
93
94
95
esp_h264_err_t esp_h264_enc_close(esp_h264_enc_handle_t enc)
This function closes the H.264 encoder instance specified by enc
Definition: esp_h264_enc_single.c:28
esp_h264_err_t esp_h264_enc_open(esp_h264_enc_handle_t enc)
This function opens an H.264 encoder in single stream.
Definition: esp_h264_enc_single.c:12
esp_h264_err_t esp_h264_enc_process(esp_h264_enc_handle_t enc, esp_h264_enc_in_frame_t *in_frame, esp_h264_enc_out_frame_t *out_frame)
This function performs single encoding of H.264 video frames. To encode one image using an image enco...
Definition: esp_h264_enc_single.c:19
esp_h264_err_t esp_h264_enc_del(esp_h264_enc_handle_t enc)
This function is used to delete an H.264 encoder.
Definition: esp_h264_enc_single.c:35
struct esp_h264_enc_if * esp_h264_enc_handle_t
H.264 single stream encoder handle.
Definition: esp_h264_enc_single.h:19
The H.264 single stream encoder interface.
Definition: esp_h264_enc_single.h:24