diff options
Diffstat (limited to 'client_examples')
-rw-r--r-- | client_examples/vnc2mpg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client_examples/vnc2mpg.c b/client_examples/vnc2mpg.c index 38578d6..a7438af 100644 --- a/client_examples/vnc2mpg.c +++ b/client_examples/vnc2mpg.c @@ -465,7 +465,7 @@ int main(int argc, char **argv) } if (!quit) { clock_gettime(CLOCK_MONOTONIC, &cur_time); - write_video_frame(oc, &video_st, update_time_for_next(framerate, &start_time, &cur_time)); + write_video_frame(oc, &video_st, time_to_pts(framerate, &start_time, &cur_time)); if ((cur_time.tv_sec - start_time.tv_sec) > max_time && max_time > 0) { quit = TRUE; } |