fix media sequence counter

This commit is contained in:
Laura Hausmann 2021-01-30 21:24:45 +01:00
parent e475283630
commit 5c0423a788
Signed by: zotan
GPG Key ID: 5EC1D38FFC321311
1 changed files with 2 additions and 1 deletions

View File

@ -69,6 +69,7 @@ typedef struct {
uint64_t key_id;
ngx_uint_t nfrags;
ngx_rtmp_hls_frag_t *frags; /* circular 2 * winfrags + 1 */
uint64_t mediaseq;
ngx_uint_t audio_cc;
ngx_uint_t video_cc;
@ -601,7 +602,7 @@ ngx_rtmp_hls_write_playlist(ngx_rtmp_session_t *s)
"#EXT-X-VERSION:3\n"
"#EXT-X-MEDIA-SEQUENCE:%uL\n"
"#EXT-X-TARGETDURATION:%ui\n",
ctx->frag, max_frag);
ctx->mediaseq++, max_frag);
if (hacf->type == NGX_RTMP_HLS_TYPE_EVENT) {
p = ngx_slprintf(p, end, "#EXT-X-PLAYLIST-TYPE:EVENT\n");