We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2085e2 commit 2d5a66cCopy full SHA for 2d5a66c
0_hello_world.c
@@ -159,14 +159,14 @@ int main(int argc, const char *argv[])
159
AVFrame *pFrame = av_frame_alloc();
160
if (!pFrame)
161
{
162
- logging("failed to allocated memory for AVFrame");
+ logging("failed to allocate memory for AVFrame");
163
return -1;
164
}
165
// https://ffmpeg.org/doxygen/trunk/structAVPacket.html
166
AVPacket *pPacket = av_packet_alloc();
167
if (!pPacket)
168
169
- logging("failed to allocated memory for AVPacket");
+ logging("failed to allocate memory for AVPacket");
170
171
172
0 commit comments