Fixed mp4 module seek.
Igor Sysoev
10 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
src/http/modules/ngx_http_mp4_module.c
less
more
1909
1909
1910
1910
if (start_time < (uint64_t) count * duration) {
1911
1911
start_sample += (ngx_uint_t) (start_time / duration);
1912
count -= start_sample;
1912
count -= start_time;
1913
1913
ngx_mp4_set_32value(entry->count, count);
1914
1914
goto found;
1915
1915
}