mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
examples/demuxing: fix braino
s/video/audio/ in a log message.
This commit is contained in:
parent
794cea588c
commit
7f6f8f642c
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user