diff options
author | John Stebbins <[email protected]> | 2017-09-06 10:39:31 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-09-06 10:39:31 -0700 |
commit | 013a6e9d5b23a69a6ec8c6bbbbdae4cef0740cba (patch) | |
tree | 468c41b85f2d74889d73c106f6836c6bccaf0e87 /test | |
parent | bb3235e43de4c8bafd24fb25391e506005c796e2 (diff) |
CLI: fix integer wrapping of p-to-p start/end times
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index 052161d9b..d83215203 100644 --- a/test/test.c +++ b/test/test.c @@ -4228,7 +4228,7 @@ PrepareJob(hb_handle_t *h, hb_title_t *title, hb_dict_t *preset_dict) hb_value_get_string(hb_dict_get(dest_dict, "Mux"))); // Now set non-preset settings in the job dict - int range_start = 0, range_end = 0, range_seek_points = 0; + int64_t range_start = 0, range_end = 0, range_seek_points = 0; const char *range_type = "chapter"; if (chapter_start && chapter_end && !start_at_pts && !stop_at_pts && |