4
5
6
15#include "h264/esp_h264_alloc.h"
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
60
61
62
63
67
68
69
70
71
72
73
74
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
96 if (
n == 0)
return nullptr;
101 return static_cast<
T*>(
p);
105
106
107
108
109
110
111
112
113
114
115
122
123
124
125
126
127
128
137
138
139
140
141
142
143
144
145
146
147
148
150using RAMVec = std::vector<T, RAMAllocatorH264<T>>;
155
156
157
158
159
160
161
162
163
164
165
166template <
class T,
class U>
168 const esp_h264::RAMAllocatorH264<U>&)
noexcept {
173
174
175
176
177
178
179
180
181
182
183
184template <
class T,
class U>
186 const esp_h264::RAMAllocatorH264<U>&)
noexcept {
bool operator!=(const esp_h264::RAMAllocatorH264< T > &, const esp_h264::RAMAllocatorH264< U > &) noexcept
Inequality operator for RAMAllocatorH264 instances.
Definition: RAMAllocatorH264.h:185
bool operator==(const esp_h264::RAMAllocatorH264< T > &, const esp_h264::RAMAllocatorH264< U > &) noexcept
Equality operator for RAMAllocatorH264 instances.
Definition: RAMAllocatorH264.h:167
#define esp_h264_free
Free memory previously allocated.
Definition: esp_h264_alloc.h:19
Definition: H264Decoder.h:31