pull/920/merge
Maks Maltsev 2 weeks ago committed by GitHub
commit 39c7937b46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/http/modules/ngx_http_mp4_module.c

@ -2460,7 +2460,7 @@ found:
start_sample -= key_prefix;
while (rest < key_prefix) {
trak->prefix += rest * duration;
trak->prefix += (uint64_t) rest * duration;
key_prefix -= rest;
entry--;
@ -2471,7 +2471,7 @@ found:
rest = count;
}
trak->prefix += key_prefix * duration;
trak->prefix += (uint64_t) key_prefix * duration;
trak->duration += trak->prefix;
rest -= key_prefix;

Loading…
Cancel
Save