summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-11-06 01:06:35 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-11-06 01:10:12 +0100
commit7f6f8f642c330d04f1615e69559fc023468faabb (patch)
tree2060fb5770b7d3cdecdcd04019cb5e48716a9d22 /doc
parent794cea588cc58d82d420ac4c57754a728654dc43 (diff)
examples/demuxing: fix braino
s/video/audio/ in a log message.
Diffstat (limited to 'doc')
-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 aa8d16eb83..2aa00ce0c9 100644
--- a/doc/examples/demuxing.c
+++ b/doc/examples/demuxing.c
@@ -289,7 +289,7 @@ int main (int argc, char **argv)
if (video_stream)
printf("Demuxing video from file '%s' into '%s'\n", src_filename, video_dst_filename);
if (audio_stream)
- printf("Demuxing video from file '%s' into '%s'\n", src_filename, audio_dst_filename);
+ printf("Demuxing audio from file '%s' into '%s'\n", src_filename, audio_dst_filename);
/* read frames from the file */
while (av_read_frame(fmt_ctx, &pkt) >= 0)