[FFmpeg-cvslog] examples/demuxing: fix braino
Stefano Sabatini
git at videolan.org
Tue Nov 6 01:17:59 CET 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue Nov 6 01:06:35 2012 +0100| [7f6f8f642c330d04f1615e69559fc023468faabb] | committer: Stefano Sabatini
examples/demuxing: fix braino
s/video/audio/ in a log message.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7f6f8f642c330d04f1615e69559fc023468faabb
---
doc/examples/demuxing.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/examples/demuxing.c b/doc/examples/demuxing.c
index aa8d16e..2aa00ce 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)
More information about the ffmpeg-cvslog
mailing list