mirror of
https://github.com/nginx/nginx.git
synced 2025-01-23 23:03:18 -06:00
Fixing mp4 module seeking on 32-bit platforms.
This commit is contained in:
parent
2fdb547f3a
commit
840ef3980c
@ -1882,7 +1882,7 @@ ngx_http_mp4_update_stts_atom(ngx_http_mp4_file_t *mp4,
|
||||
}
|
||||
|
||||
entries = trak->time_to_sample_entries;
|
||||
start_time = mp4->start * trak->timescale / 1000;
|
||||
start_time = (uint64_t) mp4->start * trak->timescale / 1000;
|
||||
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, mp4->file.log, 0,
|
||||
"time-to-sample start_time:%uL", start_time);
|
||||
|
Loading…
Reference in New Issue
Block a user