mirror of
https://github.com/arut/nginx-rtmp-module.git
synced 2025-08-06 15:00:18 +08:00
implemented absolute timestamp feature (atc on)
This commit is contained in:
@ -151,6 +151,7 @@ typedef struct {
|
|||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t csid; /* chunk stream id */
|
uint32_t csid; /* chunk stream id */
|
||||||
uint32_t timestamp; /* timestamp (delta) */
|
uint32_t timestamp; /* timestamp (delta) */
|
||||||
|
uint32_t timeshift; /* clock - timestamp */
|
||||||
uint32_t mlen; /* message length */
|
uint32_t mlen; /* message length */
|
||||||
uint8_t type; /* message type id */
|
uint8_t type; /* message type id */
|
||||||
uint32_t msid; /* message stream id */
|
uint32_t msid; /* message stream id */
|
||||||
@ -201,6 +202,7 @@ typedef struct {
|
|||||||
/* connection timestamps */
|
/* connection timestamps */
|
||||||
ngx_msec_t epoch;
|
ngx_msec_t epoch;
|
||||||
ngx_msec_t peer_epoch;
|
ngx_msec_t peer_epoch;
|
||||||
|
ngx_msec_t base_time;
|
||||||
|
|
||||||
/* ping */
|
/* ping */
|
||||||
ngx_event_t ping_evt;
|
ngx_event_t ping_evt;
|
||||||
|
@ -396,6 +396,7 @@ ngx_rtmp_recv(ngx_event_t *rev)
|
|||||||
st->dtime = timestamp;
|
st->dtime = timestamp;
|
||||||
} else {
|
} else {
|
||||||
h->timestamp = timestamp;
|
h->timestamp = timestamp;
|
||||||
|
h->timeshift = (uint32_t) ngx_current_msec - timestamp;
|
||||||
st->dtime = 0;
|
st->dtime = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,6 +60,13 @@ static ngx_command_t ngx_rtmp_live_commands[] = {
|
|||||||
offsetof(ngx_rtmp_live_app_conf_t, sync),
|
offsetof(ngx_rtmp_live_app_conf_t, sync),
|
||||||
NULL },
|
NULL },
|
||||||
|
|
||||||
|
{ ngx_string("atc"),
|
||||||
|
NGX_RTMP_MAIN_CONF|NGX_RTMP_SRV_CONF|NGX_RTMP_APP_CONF|NGX_CONF_TAKE1,
|
||||||
|
ngx_conf_set_flag_slot,
|
||||||
|
NGX_RTMP_APP_CONF_OFFSET,
|
||||||
|
offsetof(ngx_rtmp_live_app_conf_t, atc),
|
||||||
|
NULL },
|
||||||
|
|
||||||
ngx_null_command
|
ngx_null_command
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -107,6 +114,7 @@ ngx_rtmp_live_create_app_conf(ngx_conf_t *cf)
|
|||||||
lacf->nbuckets = NGX_CONF_UNSET;
|
lacf->nbuckets = NGX_CONF_UNSET;
|
||||||
lacf->buflen = NGX_CONF_UNSET;
|
lacf->buflen = NGX_CONF_UNSET;
|
||||||
lacf->sync = NGX_CONF_UNSET;
|
lacf->sync = NGX_CONF_UNSET;
|
||||||
|
lacf->atc = NGX_CONF_UNSET;
|
||||||
|
|
||||||
return lacf;
|
return lacf;
|
||||||
}
|
}
|
||||||
@ -123,6 +131,7 @@ ngx_rtmp_live_merge_app_conf(ngx_conf_t *cf, void *parent, void *child)
|
|||||||
ngx_conf_merge_value(conf->nbuckets, prev->nbuckets, 1024);
|
ngx_conf_merge_value(conf->nbuckets, prev->nbuckets, 1024);
|
||||||
ngx_conf_merge_msec_value(conf->buflen, prev->buflen, 0);
|
ngx_conf_merge_msec_value(conf->buflen, prev->buflen, 0);
|
||||||
ngx_conf_merge_msec_value(conf->sync, prev->sync, 0);
|
ngx_conf_merge_msec_value(conf->sync, prev->sync, 0);
|
||||||
|
ngx_conf_merge_value(conf->atc, prev->atc, 0);
|
||||||
|
|
||||||
conf->pool = ngx_create_pool(4096, &cf->cycle->new_log);
|
conf->pool = ngx_create_pool(4096, &cf->cycle->new_log);
|
||||||
if (conf->pool == NULL) {
|
if (conf->pool == NULL) {
|
||||||
@ -337,10 +346,10 @@ ngx_rtmp_live_av(ngx_rtmp_session_t *s, ngx_rtmp_header_t *h,
|
|||||||
return NGX_OK;
|
return NGX_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
ngx_log_debug2(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
|
ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
|
||||||
"live: av: %s timestamp=%uD",
|
"live: av: %s timestamp=%uD timeshift=%uD",
|
||||||
h->type == NGX_RTMP_MSG_VIDEO ? "video" : "audio",
|
h->type == NGX_RTMP_MSG_VIDEO ? "video" : "audio",
|
||||||
h->timestamp);
|
h->timestamp, h->timeshift);
|
||||||
|
|
||||||
cscf = ngx_rtmp_get_module_srv_conf(s, ngx_rtmp_core_module);
|
cscf = ngx_rtmp_get_module_srv_conf(s, ngx_rtmp_core_module);
|
||||||
|
|
||||||
@ -410,17 +419,21 @@ ngx_rtmp_live_av(ngx_rtmp_session_t *s, ngx_rtmp_header_t *h,
|
|||||||
++peers;
|
++peers;
|
||||||
ss = pctx->session;
|
ss = pctx->session;
|
||||||
last = (uint32_t *)((u_char *)pctx + last_offset);
|
last = (uint32_t *)((u_char *)pctx + last_offset);
|
||||||
ch.timestamp = s->epoch + h->timestamp - ss->epoch;
|
|
||||||
|
ch.timestamp = lacf->atc ? h->timestamp :
|
||||||
|
h->timeshift + h->timestamp - (uint32_t)ss->epoch;
|
||||||
|
|
||||||
/* send absolute frame */
|
/* send absolute frame */
|
||||||
if ((pctx->msg_mask & (1 << h->type)) == 0) {
|
if ((pctx->msg_mask & (1 << h->type)) == 0) {
|
||||||
|
|
||||||
/* packet from the past for the peer */
|
/* packet from the past for the peer */
|
||||||
if (s->epoch + h->timestamp < ss->epoch) {
|
if (lacf->atc == 0 &&
|
||||||
|
h->timeshift + h->timestamp < (uint32_t)ss->epoch)
|
||||||
|
{
|
||||||
ngx_log_debug3(NGX_LOG_DEBUG_RTMP, ss->connection->log, 0,
|
ngx_log_debug3(NGX_LOG_DEBUG_RTMP, ss->connection->log, 0,
|
||||||
"live: av: %s packet from the past %uD < %uD",
|
"live: av: %s packet from the past %uD < %uD",
|
||||||
h->type == NGX_RTMP_MSG_VIDEO ? "video" : "audio",
|
h->type == NGX_RTMP_MSG_VIDEO ? "video" : "audio",
|
||||||
(uint32_t)(s->epoch + h->timestamp), (uint32_t)ss->epoch);
|
h->timeshift + h->timestamp, (uint32_t)ss->epoch);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,6 +55,7 @@ typedef struct {
|
|||||||
ngx_flag_t live;
|
ngx_flag_t live;
|
||||||
ngx_flag_t meta;
|
ngx_flag_t meta;
|
||||||
ngx_msec_t sync;
|
ngx_msec_t sync;
|
||||||
|
ngx_flag_t atc;
|
||||||
ngx_msec_t buflen;
|
ngx_msec_t buflen;
|
||||||
ngx_pool_t *pool;
|
ngx_pool_t *pool;
|
||||||
ngx_rtmp_live_stream_t *free_streams;
|
ngx_rtmp_live_stream_t *free_streams;
|
||||||
|
Reference in New Issue
Block a user