nginx-mod-rtmp/ngx_rtmp_live_module.c

485 lines
14 KiB
C
Raw Normal View History

/*
* Copyright (c) 2012 Roman Arutyunyan
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include "ngx_rtmp.h"
#include "ngx_rtmp_cmd_module.h"
2012-04-20 16:03:00 +02:00
static ngx_rtmp_publish_pt next_publish;
static ngx_rtmp_play_pt next_play;
static ngx_rtmp_delete_stream_pt next_delete_stream;
/* Chunk stream ids for output */
2012-04-20 16:03:00 +02:00
#define NGX_RTMP_LIVE_CSID_AUDIO 6
#define NGX_RTMP_LIVE_CSID_VIDEO 7
#define NGX_RTMP_LIVE_MSID 1
2012-03-18 14:09:19 +01:00
2012-04-20 16:03:00 +02:00
/* session flags */
#define NGX_RTMP_LIVE_PUBLISHING 0x01
2012-03-18 14:09:19 +01:00
static ngx_int_t ngx_rtmp_live_postconfiguration(ngx_conf_t *cf);
static void * ngx_rtmp_live_create_app_conf(ngx_conf_t *cf);
static char * ngx_rtmp_live_merge_app_conf(ngx_conf_t *cf,
void *parent, void *child);
2012-03-21 16:08:59 +01:00
typedef struct ngx_rtmp_live_ctx_s ngx_rtmp_live_ctx_t;
2012-04-20 16:03:00 +02:00
typedef struct ngx_rtmp_live_stream_s ngx_rtmp_live_stream_t;
struct ngx_rtmp_live_ctx_s {
ngx_rtmp_session_t *session;
ngx_rtmp_live_stream_t *stream;
ngx_rtmp_live_ctx_t *next;
ngx_uint_t flags;
ngx_uint_t msg_mask;
uint32_t csid;
uint32_t next_push;
uint32_t last_audio;
uint32_t last_video;
};
struct ngx_rtmp_live_stream_s {
u_char name[256];
ngx_rtmp_live_stream_t *next;
ngx_rtmp_live_ctx_t *ctx;
};
2012-03-23 13:03:32 +01:00
typedef struct {
2012-03-23 13:03:32 +01:00
ngx_int_t nbuckets;
2012-04-20 16:03:00 +02:00
ngx_rtmp_live_stream_t **streams;
2012-03-23 13:03:32 +01:00
ngx_flag_t live;
2012-04-20 07:01:04 +02:00
ngx_msec_t buflen;
2012-04-20 16:03:00 +02:00
ngx_pool_t *pool;
ngx_rtmp_live_stream_t *free_streams;
} ngx_rtmp_live_app_conf_t;
2012-04-20 16:03:00 +02:00
#define NGX_RTMP_LIVE_TIME_ABSOLUTE 0x01
#define NGX_RTMP_LIVE_TIME_RELATIVE 0x02
static ngx_command_t ngx_rtmp_live_commands[] = {
2012-03-21 16:08:59 +01:00
2012-03-23 13:03:32 +01:00
{ ngx_string("live"),
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, live),
2012-03-23 13:03:32 +01:00
NULL },
{ ngx_string("stream_buckets"),
NGX_RTMP_MAIN_CONF|NGX_RTMP_SRV_CONF|NGX_RTMP_APP_CONF|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
2012-03-23 13:03:32 +01:00
NGX_RTMP_APP_CONF_OFFSET,
offsetof(ngx_rtmp_live_app_conf_t, nbuckets),
2012-03-23 13:03:32 +01:00
NULL },
2012-04-20 07:01:04 +02:00
{ ngx_string("buffer"),
NGX_RTMP_MAIN_CONF|NGX_RTMP_SRV_CONF|NGX_RTMP_APP_CONF|NGX_CONF_TAKE1,
2012-04-20 07:01:04 +02:00
ngx_conf_set_msec_slot,
2012-03-23 13:03:32 +01:00
NGX_RTMP_APP_CONF_OFFSET,
2012-04-20 07:01:04 +02:00
offsetof(ngx_rtmp_live_app_conf_t, buflen),
NULL },
ngx_null_command
};
static ngx_rtmp_module_t ngx_rtmp_live_module_ctx = {
NULL, /* preconfiguration */
ngx_rtmp_live_postconfiguration, /* postconfiguration */
NULL, /* create main configuration */
NULL, /* init main configuration */
2012-03-23 13:03:32 +01:00
NULL, /* create server configuration */
NULL, /* merge server configuration */
ngx_rtmp_live_create_app_conf, /* create app configuration */
ngx_rtmp_live_merge_app_conf /* merge app configuration */
};
ngx_module_t ngx_rtmp_live_module = {
NGX_MODULE_V1,
&ngx_rtmp_live_module_ctx, /* module context */
ngx_rtmp_live_commands, /* module directives */
NGX_RTMP_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
NGX_MODULE_V1_PADDING
};
static void *
ngx_rtmp_live_create_app_conf(ngx_conf_t *cf)
{
ngx_rtmp_live_app_conf_t *lacf;
lacf = ngx_pcalloc(cf->pool, sizeof(ngx_rtmp_live_app_conf_t));
if (lacf == NULL) {
return NULL;
}
lacf->live = NGX_CONF_UNSET;
lacf->nbuckets = NGX_CONF_UNSET;
2012-04-20 07:01:04 +02:00
lacf->buflen = NGX_CONF_UNSET;
return lacf;
}
static char *
ngx_rtmp_live_merge_app_conf(ngx_conf_t *cf, void *parent, void *child)
{
ngx_rtmp_live_app_conf_t *prev = parent;
ngx_rtmp_live_app_conf_t *conf = child;
2012-03-23 13:03:32 +01:00
ngx_conf_merge_value(conf->live, prev->live, 0);
ngx_conf_merge_value(conf->nbuckets, prev->nbuckets, 1024);
2012-04-20 07:01:04 +02:00
ngx_conf_merge_msec_value(conf->buflen, prev->buflen, 0);
2012-04-20 16:03:00 +02:00
conf->pool = ngx_create_pool(4096, &cf->cycle->new_log);
if (conf->pool == NULL) {
return NGX_CONF_ERROR;
}
conf->streams = ngx_pcalloc(cf->pool,
sizeof(ngx_rtmp_live_stream_t *) * conf->nbuckets);
return NGX_CONF_OK;
}
2012-04-20 16:03:00 +02:00
static ngx_rtmp_live_stream_t **
ngx_rtmp_live_get_stream(ngx_rtmp_session_t *s, u_char *name, int create)
{
2012-04-20 16:03:00 +02:00
ngx_rtmp_live_app_conf_t *lacf;
ngx_rtmp_live_stream_t **stream;
size_t len;
lacf = ngx_rtmp_get_module_app_conf(s, ngx_rtmp_live_module);
if (lacf == NULL) {
2012-03-23 13:03:32 +01:00
return NULL;
}
2012-04-20 16:03:00 +02:00
len = ngx_strlen(name);
stream = &lacf->streams[ngx_hash_key(name, len) % lacf->nbuckets];
for (; *stream; stream = &(*stream)->next) {
if (ngx_strcmp(name, (*stream)->name) == 0) {
return stream;
}
}
if (!create) {
return NULL;
}
ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: create stream '%s'", name);
2012-04-20 16:03:00 +02:00
if (lacf->free_streams) {
*stream = lacf->free_streams;
lacf->free_streams = lacf->free_streams->next;
} else {
*stream = ngx_palloc(lacf->pool, sizeof(ngx_rtmp_live_stream_t));
}
ngx_memzero(*stream, sizeof(ngx_rtmp_live_stream_t));
ngx_memcpy((*stream)->name, name,
ngx_min(sizeof((*stream)->name) - 1, len));
return stream;
}
static void
ngx_rtmp_live_join(ngx_rtmp_session_t *s, u_char *name,
ngx_uint_t flags)
{
2012-04-20 16:03:00 +02:00
ngx_rtmp_live_ctx_t *ctx;
ngx_rtmp_live_stream_t **stream;
ngx_rtmp_live_app_conf_t *lacf;
2012-04-20 16:03:00 +02:00
lacf = ngx_rtmp_get_module_app_conf(s, ngx_rtmp_live_module);
if (lacf == NULL) {
return;
}
ctx = ngx_rtmp_get_module_ctx(s, ngx_rtmp_live_module);
if (ctx == NULL) {
2012-04-20 16:03:00 +02:00
ctx = ngx_pcalloc(s->connection->pool, sizeof(ngx_rtmp_live_ctx_t));
ctx->session = s;
ngx_rtmp_set_ctx(s, ctx, ngx_rtmp_live_module);
}
2012-04-20 16:03:00 +02:00
if (ctx->stream) {
ngx_log_debug0(NGX_LOG_DEBUG_RTMP, s->connection->log,
0, "live: already joined");
return;
}
2012-04-20 16:03:00 +02:00
ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: join '%s'", name);
2012-04-20 16:03:00 +02:00
stream = ngx_rtmp_live_get_stream(s, name, 1);
if (stream == NULL) {
2012-03-23 13:03:32 +01:00
return;
}
2012-04-20 16:03:00 +02:00
ctx->stream = *stream;
ctx->flags = flags;
2012-04-20 16:03:00 +02:00
ctx->next = (*stream)->ctx;
(*stream)->ctx = ctx;
if (lacf->buflen) {
s->out_buffer = 1;
}
}
2012-03-13 06:41:51 +01:00
static ngx_int_t
ngx_rtmp_live_delete_stream(ngx_rtmp_session_t *s, ngx_rtmp_delete_stream_t *v)
{
2012-04-20 16:03:00 +02:00
ngx_rtmp_live_ctx_t *ctx, **cctx;
ngx_rtmp_live_stream_t **stream;
ngx_rtmp_live_app_conf_t *lacf;
2012-04-20 16:03:00 +02:00
lacf = ngx_rtmp_get_module_app_conf(s, ngx_rtmp_live_module);
if (lacf == NULL) {
goto next;
}
ctx = ngx_rtmp_get_module_ctx(s, ngx_rtmp_live_module);
2012-03-21 16:08:59 +01:00
if (ctx == NULL) {
goto next;
}
2012-04-20 16:03:00 +02:00
if (ctx->stream == NULL) {
ngx_log_debug0(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: not joined ");
goto next;
2012-03-23 13:03:32 +01:00
}
2012-04-20 16:03:00 +02:00
ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: leave '%s'", ctx->stream->name);
for (cctx = &ctx->stream->ctx; *cctx; cctx = &(*cctx)->next) {
if (*cctx == ctx) {
*cctx = ctx->next;
2012-03-13 06:41:51 +01:00
break;
}
}
2012-04-20 16:03:00 +02:00
if (ctx->stream->ctx) {
ctx->stream = NULL;
goto next;
}
2012-04-20 16:03:00 +02:00
ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: delete empty stream '%s'", ctx->stream->name);
2012-04-20 16:03:00 +02:00
stream = ngx_rtmp_live_get_stream(s, ctx->stream->name, 0);
if (stream == NULL) {
return NGX_ERROR;
}
2012-04-20 16:03:00 +02:00
*stream = (*stream)->next;
2012-04-20 16:03:00 +02:00
ctx->stream->next = lacf->free_streams;
lacf->free_streams = ctx->stream;
ctx->stream = NULL;
2012-04-20 16:03:00 +02:00
next:
return next_delete_stream(s, v);
}
2012-03-13 06:41:51 +01:00
static ngx_int_t
ngx_rtmp_live_av(ngx_rtmp_session_t *s, ngx_rtmp_header_t *h,
2012-03-13 06:41:51 +01:00
ngx_chain_t *in)
{
ngx_connection_t *c;
2012-04-20 07:01:04 +02:00
ngx_rtmp_live_ctx_t *ctx, *pctx;
2012-04-20 16:03:00 +02:00
ngx_chain_t *out, *out_abs;
ngx_rtmp_core_srv_conf_t *cscf;
ngx_rtmp_live_app_conf_t *lacf;
2012-03-18 14:09:19 +01:00
ngx_rtmp_session_t *ss;
2012-04-20 16:03:00 +02:00
ngx_rtmp_header_t ch, lh;
ngx_uint_t prio, peer_prio;
2012-03-13 06:41:51 +01:00
c = s->connection;
lacf = ngx_rtmp_get_module_app_conf(s, ngx_rtmp_live_module);
if (lacf == NULL) {
2012-04-20 16:03:00 +02:00
ngx_log_debug0(NGX_LOG_DEBUG_RTMP, c->log, 0,
2012-03-23 13:03:32 +01:00
"live: NULL application");
return NGX_ERROR;
}
ctx = ngx_rtmp_get_module_ctx(s, ngx_rtmp_live_module);
2012-04-20 16:03:00 +02:00
if (!lacf->live
|| in == NULL || in->buf == NULL
|| ctx == NULL || ctx->stream == NULL
|| (h->type != NGX_RTMP_MSG_VIDEO
&& h->type != NGX_RTMP_MSG_AUDIO))
{
return NGX_OK;
}
2012-04-20 16:03:00 +02:00
if ((ctx->flags & NGX_RTMP_LIVE_PUBLISHING) == 0) {
ngx_log_debug0(NGX_LOG_DEBUG_RTMP, c->log, 0,
"live: received audio/video from non-publisher");
return NGX_OK;
}
ngx_log_debug2(NGX_LOG_DEBUG_RTMP, c->log, 0,
"live: av: %s timestamp=%uD",
2012-04-23 17:13:35 +02:00
h->type == NGX_RTMP_MSG_VIDEO ? "video" : "audio",
h->timestamp);
2012-04-20 16:03:00 +02:00
cscf = ngx_rtmp_get_module_srv_conf(s, ngx_rtmp_core_module);
2012-04-20 16:03:00 +02:00
/* prepare output header */
ngx_memzero(&ch, sizeof(ch));
ngx_memzero(&lh, sizeof(lh));
ch.timestamp = h->timestamp;
ch.msid = NGX_RTMP_LIVE_MSID;
ch.type = h->type;
lh.msid = ch.msid;
2012-03-18 14:09:19 +01:00
if (h->type == NGX_RTMP_MSG_VIDEO) {
2012-04-20 17:55:37 +02:00
prio = ngx_rtmp_get_video_frame_type(in);
2012-04-20 16:03:00 +02:00
ch.csid = NGX_RTMP_LIVE_CSID_VIDEO;
lh.timestamp = ctx->last_video;
2012-04-23 17:13:35 +02:00
ctx->last_video = ch.timestamp;
} else {
2012-04-20 16:03:00 +02:00
/* audio priority is the same as video key frame's */
prio = NGX_RTMP_VIDEO_KEY_FRAME;
ch.csid = NGX_RTMP_LIVE_CSID_AUDIO;
lh.timestamp = ctx->last_audio;
2012-04-23 17:13:35 +02:00
ctx->last_audio = ch.timestamp;
2012-03-13 06:41:51 +01:00
}
2012-04-20 16:03:00 +02:00
lh.csid = ch.csid;
2012-03-13 06:41:51 +01:00
out = ngx_rtmp_append_shared_bufs(cscf, NULL, in);
ngx_rtmp_prepare_message(s, &ch, &lh, out);
2012-03-13 06:41:51 +01:00
2012-04-20 07:01:04 +02:00
/* broadcast to all subscribers */
2012-04-20 16:03:00 +02:00
for (pctx = ctx->stream->ctx; pctx; pctx = pctx->next) {
if (pctx == ctx) {
2012-03-21 16:08:59 +01:00
continue;
}
ss = pctx->session;
2012-04-20 16:03:00 +02:00
/* send absolute frame */
if ((pctx->msg_mask & (1 << h->type)) == 0) {
ch.timestamp = ngx_current_msec - ss->epoch;
ngx_log_debug2(NGX_LOG_DEBUG_RTMP, ss->connection->log, 0,
"live: av: abs %s timestamp=%uD",
h->type == NGX_RTMP_MSG_VIDEO ? "video" : "audio",
ch.timestamp);
out_abs = ngx_rtmp_append_shared_bufs(cscf, NULL, in);
ngx_rtmp_prepare_message(s, &ch, NULL, out_abs);
2012-04-20 16:03:00 +02:00
pctx->msg_mask |= (1 << h->type);
ngx_rtmp_send_message(ss, out_abs, prio);
ngx_rtmp_free_shared_chain(cscf, out_abs);
continue;
}
2012-04-20 16:03:00 +02:00
/* push buffered data */
peer_prio = prio;
2012-04-20 07:01:04 +02:00
if (lacf->buflen && h->timestamp >= pctx->next_push) {
2012-04-20 16:03:00 +02:00
peer_prio = 0;
2012-04-20 07:01:04 +02:00
pctx->next_push = h->timestamp + lacf->buflen;
2012-03-21 16:08:59 +01:00
}
2012-04-20 16:03:00 +02:00
ngx_rtmp_send_message(ss, out, peer_prio);
2012-03-13 06:41:51 +01:00
}
2012-04-18 14:37:18 +02:00
ngx_rtmp_free_shared_chain(cscf, out);
2012-03-13 06:41:51 +01:00
return NGX_OK;
}
static ngx_int_t
ngx_rtmp_live_publish(ngx_rtmp_session_t *s, ngx_rtmp_publish_t *v)
{
ngx_rtmp_live_app_conf_t *lacf;
lacf = ngx_rtmp_get_module_app_conf(s, ngx_rtmp_live_module);
2012-03-23 13:03:32 +01:00
if (lacf == NULL || !lacf->live) {
goto next;
2012-03-23 13:03:32 +01:00
}
ngx_log_debug2(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: publish: name='%s' type='%s'",
v->name, v->type);
2012-03-23 13:03:32 +01:00
/* join stream as publisher */
ngx_rtmp_live_join(s, v->name, NGX_RTMP_LIVE_PUBLISHING);
next:
return next_publish(s, v);
}
2012-03-13 06:41:51 +01:00
static ngx_int_t
ngx_rtmp_live_play(ngx_rtmp_session_t *s, ngx_rtmp_play_t *v)
{
ngx_rtmp_live_app_conf_t *lacf;
lacf = ngx_rtmp_get_module_app_conf(s, ngx_rtmp_live_module);
2012-03-23 13:03:32 +01:00
if (lacf == NULL || !lacf->live) {
goto next;
2012-03-23 13:03:32 +01:00
}
ngx_log_debug4(NGX_LOG_DEBUG_RTMP, s->connection->log, 0,
"live: play: name='%s' start=%uD duration=%uD reset=%d",
v->name, (uint32_t)v->start,
(uint32_t)v->duration, (uint32_t)v->reset);
2012-03-23 13:03:32 +01:00
/* join stream as player */
2012-04-20 16:03:00 +02:00
ngx_rtmp_live_join(s, v->name, 0);
next:
return next_play(s, v);
}
static ngx_int_t
ngx_rtmp_live_postconfiguration(ngx_conf_t *cf)
{
ngx_rtmp_core_main_conf_t *cmcf;
2012-03-21 16:08:59 +01:00
ngx_rtmp_handler_pt *h;
/* register raw event handlers */
cmcf = ngx_rtmp_conf_get_module_main_conf(cf, ngx_rtmp_core_module);
2012-03-21 16:08:59 +01:00
h = ngx_array_push(&cmcf->events[NGX_RTMP_MSG_AUDIO]);
*h = ngx_rtmp_live_av;
2012-03-13 06:41:51 +01:00
2012-03-21 16:08:59 +01:00
h = ngx_array_push(&cmcf->events[NGX_RTMP_MSG_VIDEO]);
*h = ngx_rtmp_live_av;
2012-03-13 06:41:51 +01:00
/* chain handlers */
next_publish = ngx_rtmp_publish;
ngx_rtmp_publish = ngx_rtmp_live_publish;
next_play = ngx_rtmp_play;
ngx_rtmp_play = ngx_rtmp_live_play;
next_delete_stream = ngx_rtmp_delete_stream;
ngx_rtmp_delete_stream = ngx_rtmp_live_delete_stream;
return NGX_OK;
}