diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-06-25 21:09:03 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-06-25 21:36:53 +0200 |
commit | 4b6cf1ce0e9dc3c53aa505a4fe31efc08a35cf49 (patch) | |
tree | 116a3df02813950ce0ad4aa01ba78c35a9e3ba62 | |
parent | 0a3589bf2f0a23b0eb68664fbb00078abe882a88 (diff) | |
download | ffmpeg-4b6cf1ce0e9dc3c53aa505a4fe31efc08a35cf49.tar.gz |
examples/muxing: vertically align
-rw-r--r-- | doc/examples/muxing.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c index 7305cc6284..303064a82f 100644 --- a/doc/examples/muxing.c +++ b/doc/examples/muxing.c @@ -467,8 +467,7 @@ int main(int argc, char **argv) audio_pts = 0.0; if (video_st) - video_pts = (double)video_st->pts.val * video_st->time_base.num / - video_st->time_base.den; + video_pts = (double)video_st->pts.val * video_st->time_base.num / video_st->time_base.den; else video_pts = 0.0; |