aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-11-23 07:22:15 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-11-23 07:22:15 +0000
commit79df789b47581ef45aaa464dd9fae52a83619a4c (patch)
treeb5c1ec00a1bb6e9219c7f407b3794c9e7201b3cb
parent7f59728d5b78268ff94f9d3ab464022b48d0f6ea (diff)
downloadnginx-79df789b47581ef45aaa464dd9fae52a83619a4c.tar.gz
nginx-79df789b47581ef45aaa464dd9fae52a83619a4c.zip
Fix of mp4 module seeking.
-rw-r--r--src/http/modules/ngx_http_mp4_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_mp4_module.c b/src/http/modules/ngx_http_mp4_module.c
index a4a47ee8e..3c9f88cfc 100644
--- a/src/http/modules/ngx_http_mp4_module.c
+++ b/src/http/modules/ngx_http_mp4_module.c
@@ -1899,7 +1899,7 @@ ngx_http_mp4_update_stts_atom(ngx_http_mp4_file_t *mp4,
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, mp4->file.log, 0,
"count:%uD, duration:%uD", count, duration);
- if (start_time < count * duration) {
+ if (start_time < (uint64_t) count * duration) {
start_sample += (ngx_uint_t) (start_time / duration);
count -= start_sample;
ngx_mp4_set_32value(entry->count, count);