Browse Source

doc/example/muxing: fix video timestamps

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 13 years ago
parent
commit
cf257f30b9
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      doc/examples/muxing.c

+ 2
- 1
doc/examples/muxing.c View File

@@ -500,7 +500,7 @@ int main(int argc, char **argv)


/* write the stream header, if any */ /* write the stream header, if any */
av_write_header(oc); av_write_header(oc);
picture->pts = 0;
for(;;) { for(;;) {
/* compute current audio and video time */ /* compute current audio and video time */
if (audio_st) if (audio_st)
@@ -522,6 +522,7 @@ int main(int argc, char **argv)
write_audio_frame(oc, audio_st); write_audio_frame(oc, audio_st);
} else { } else {
write_video_frame(oc, video_st); write_video_frame(oc, video_st);
picture->pts++;
} }
} }




Loading…
Cancel
Save