2
3
4
5
16
17
23
24
28
29
33 esp_h264_dec_out_frame_t *out_frame);
39
40
41
42
43
44
45
46
47
48
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
72
73
74
75
76
77
78
79
80
84
85
86
87
88
89
90
91
92
esp_h264_err_t esp_h264_dec_process(esp_h264_dec_handle_t dec, esp_h264_dec_in_frame_t *in_frame, esp_h264_dec_out_frame_t *out_frame)
This function performs decoding of H.264 video frames.
Definition: esp_h264_dec.c:19
esp_h264_err_t esp_h264_dec_del(esp_h264_dec_handle_t dec)
This function is used to delete an H.264 decoder.
Definition: esp_h264_dec.c:34
esp_h264_err_t esp_h264_dec_open(esp_h264_dec_handle_t dec)
This function opens an H.264 decoder in stream.
Definition: esp_h264_dec.c:12
esp_h264_err_t esp_h264_dec_close(esp_h264_dec_handle_t dec)
This function closes the H.264 decoder instance specified by dec
Definition: esp_h264_dec.c:27
struct esp_h264_dec_if * esp_h264_dec_handle_t
H.264 stream decoder handle.
Definition: esp_h264_dec.h:25
esp_h264_raw_format_t pic_type
Definition: esp_h264_dec.h:19
The H.264 stream decoder interface.
Definition: esp_h264_dec.h:30