Skip to content
Snippets Groups Projects
Commit e8c0b671 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

examples/muxing: fix typo: allocated -> allocate

parent 6a302331
No related branches found
No related tags found
No related merge requests found
...@@ -209,7 +209,7 @@ int main (int argc, char **argv) ...@@ -209,7 +209,7 @@ int main (int argc, char **argv)
/* register all formats and codecs */ /* register all formats and codecs */
av_register_all(); av_register_all();
/* open input file, and allocated format context */ /* open input file, and allocate format context */
if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) { if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
fprintf(stderr, "Could not open source file %s\n", src_filename); fprintf(stderr, "Could not open source file %s\n", src_filename);
exit(1); exit(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment