summaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-11-06 11:28:28 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-11-06 11:28:28 +0100
commite8c0b6710cec23a71f7c85b6960f0b334750d346 (patch)
tree1060e2c23a36f745b56cf12f95e56eb57b4d6e04 /doc/examples
parent6a302331dd02af5d164069fb73747a6c5cf0947a (diff)
examples/muxing: fix typo: allocated -> allocate
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/demuxing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/demuxing.c b/doc/examples/demuxing.c
index 2aa00ce0c9..3c9d4a1278 100644
--- a/doc/examples/demuxing.c
+++ b/doc/examples/demuxing.c
@@ -209,7 +209,7 @@ int main (int argc, char **argv)
/* register all formats and codecs */
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) {
fprintf(stderr, "Could not open source file %s\n", src_filename);
exit(1);