mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-28 21:16:56 +08:00
doc/example/muxing: fix video timestamps
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -500,7 +500,7 @@ int main(int argc, char **argv)
|
||||
|
||||
/* write the stream header, if any */
|
||||
av_write_header(oc);
|
||||
|
||||
picture->pts = 0;
|
||||
for(;;) {
|
||||
/* compute current audio and video time */
|
||||
if (audio_st)
|
||||
@ -522,6 +522,7 @@ int main(int argc, char **argv)
|
||||
write_audio_frame(oc, audio_st);
|
||||
} else {
|
||||
write_video_frame(oc, video_st);
|
||||
picture->pts++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user