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

examples/demuxing: fix braino

s/video/audio/ in a log message.
parent 794cea58
No related branches found
No related tags found
No related merge requests found
...@@ -289,7 +289,7 @@ int main (int argc, char **argv) ...@@ -289,7 +289,7 @@ int main (int argc, char **argv)
if (video_stream) if (video_stream)
printf("Demuxing video from file '%s' into '%s'\n", src_filename, video_dst_filename); printf("Demuxing video from file '%s' into '%s'\n", src_filename, video_dst_filename);
if (audio_stream) 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 */ /* read frames from the file */
while (av_read_frame(fmt_ctx, &pkt) >= 0) while (av_read_frame(fmt_ctx, &pkt) >= 0)
......
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