Browse Source

examples/demuxing: fix braino

s/video/audio/ in a log message.
tags/n1.1
Stefano Sabatini 13 years ago
parent
commit
7f6f8f642c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc/examples/demuxing.c

+ 1
- 1
doc/examples/demuxing.c View File

@@ -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)


Loading…
Cancel
Save