Fork me on GitHub
Loading...
Searching...
No Matches
janus_lua_data.h
Go to the documentation of this file.
1
23#ifndef JANUS_LUA_DATA_H
24#define JANUS_LUA_DATA_H
25
26#include <lua.h>
27#include <lualib.h>
28#include <lauxlib.h>
29
30#include "plugin.h"
31
32#include "debug.h"
33#include "apierror.h"
34#include "config.h"
35#include "mutex.h"
36#include "rtp.h"
37#include "rtcp.h"
38#include "sdp-utils.h"
39#include "record.h"
40#include "utils.h"
41
42/* Core pointer and related flags */
43extern volatile gint lua_initialized, lua_stopping;
45
46/* Lua state: we define state and mutex as extern */
47extern lua_State *lua_state;
49
50/* Lua session: we keep only the barebone stuff here, the rest will be in the Lua script */
51typedef struct janus_lua_session {
52 janus_plugin_session *handle; /* Pointer to the core-plugin session */
53 uint32_t id; /* Unique session ID (will be used to correlate with the Lua script) */
54 /* The following are only needed for media manipulation, feedback and routing, and may not all be used */
55 gboolean accept_audio; /* Whether incoming audio can be accepted or must be dropped */
56 gboolean accept_video; /* Whether incoming video can be accepted or must be dropped */
57 gboolean accept_data; /* Whether incoming data can be accepted or must be dropped */
58 gboolean send_audio; /* Whether outgoing audio can be sent or must be dropped */
59 gboolean send_video; /* Whether outgoing video can be sent or must be dropped */
60 gboolean send_data; /* Whether outgoing data can be sent or must be dropped */
61 janus_rtp_switching_context rtpctx; /* RTP switching context */
62 janus_videocodec vcodec; /* Video codec this session is using */
63 uint32_t ssrc[3]; /* Only needed in case VP8 (or H.264) simulcasting is involved */
64 char *rid[3]; /* Only needed if simulcasting is rid-based */
65 int rid_extmap_id; /* rid extmap ID */
68 uint32_t bitrate; /* Bitrate limit */
69 uint16_t pli_freq; /* Regular PLI frequency (0=disabled) */
70 gint64 pli_latest; /* Time of latest sent PLI (to avoid flooding) */
71 GSList *recipients; /* Sessions that should receive media from this session */
72 struct janus_lua_session *sender; /* Other session this session is receiving media from */
73 janus_mutex recipients_mutex; /* Mutex to lock the recipients list */
74 janus_recorder *arc; /* The Janus recorder instance for audio, if enabled */
75 janus_recorder *vrc; /* The Janus recorder instance for video, if enabled */
76 janus_recorder *drc; /* The Janus recorder instance for data, if enabled */
79 gboolean e2ee; /* Whether media is encrypted, e.g., using Insertable Streams */
80 janus_mutex rec_mutex; /* Mutex to protect the recorders from race conditions */
81 volatile gint started; /* Whether this session's PeerConnection is ready or not */
82 volatile gint dataready; /* Whether the data channel was established on this sessions's PeerConnection */
83 volatile gint hangingup; /* Whether this session's PeerConnection is hanging up */
84 volatile gint destroyed; /* Whether this session's been marked as destroyed */
85 /* If you need any additional property (e.g., for hooks you added in janus_lua_extra.c) add them below this line */
86
87 /* Reference counter */
90extern GHashTable *lua_sessions, *lua_ids;
93
94#endif
Janus API errors definition.
Configuration files parsing (headers)
Logging and Debugging.
volatile gint lua_initialized
Definition: janus_lua.c:269
janus_mutex lua_sessions_mutex
Definition: janus_lua.c:346
volatile gint lua_stopping
Definition: janus_lua_data.h:43
lua_State * lua_state
Definition: janus_lua.c:273
janus_mutex lua_mutex
Definition: janus_lua.c:274
GHashTable * lua_sessions
Definition: janus_lua.c:345
janus_callbacks * lua_janus_core
Definition: janus_lua.c:270
GHashTable * lua_ids
Definition: janus_lua_data.h:90
janus_lua_session * janus_lua_lookup_session(janus_plugin_session *handle)
Definition: janus_lua.c:1751
Semaphors, Mutexes and Conditions.
GMutex janus_mutex
Janus mutex implementation.
Definition: mutex.h:73
Plugin-Core communication (implementation)
Audio/Video recorder.
RTCP processing (headers)
RTP processing (headers)
janus_videocodec
Definition: rtp.h:130
SDP utilities (headers)
Callbacks to contact the Janus core.
Definition: plugin.h:354
Definition: janus_lua_data.h:51
janus_mutex rec_mutex
Definition: janus_lua_data.h:80
uint32_t ssrc[3]
Definition: janus_lua_data.h:63
gboolean accept_data
Definition: janus_lua_data.h:57
janus_rtp_simulcasting_context sim_context
Definition: janus_lua_data.h:66
char * rid[3]
Definition: janus_lua_data.h:64
janus_rtp_simulcasting_context rec_simctx
Definition: janus_lua_data.h:78
janus_rtp_switching_context rec_ctx
Definition: janus_lua_data.h:77
janus_refcount ref
Definition: janus_lua_data.h:88
volatile gint started
Definition: janus_lua_data.h:81
janus_recorder * vrc
Definition: janus_lua_data.h:75
volatile gint hangingup
Definition: janus_lua_data.h:83
struct janus_lua_session * sender
Definition: janus_lua_data.h:72
gboolean send_data
Definition: janus_lua_data.h:60
janus_recorder * arc
Definition: janus_lua_data.h:74
janus_recorder * drc
Definition: janus_lua_data.h:76
janus_mutex recipients_mutex
Definition: janus_lua_data.h:73
janus_vp8_simulcast_context vp8_context
Definition: janus_lua_data.h:67
gint64 pli_latest
Definition: janus_lua_data.h:70
uint16_t pli_freq
Definition: janus_lua_data.h:69
GSList * recipients
Definition: janus_lua_data.h:71
janus_plugin_session * handle
Definition: janus_lua_data.h:52
int rid_extmap_id
Definition: janus_lua_data.h:65
janus_videocodec vcodec
Definition: janus_lua_data.h:62
gboolean accept_video
Definition: janus_lua_data.h:56
gboolean e2ee
Definition: janus_lua_data.h:79
uint32_t id
Definition: janus_lua_data.h:53
gboolean send_video
Definition: janus_lua_data.h:59
gboolean send_audio
Definition: janus_lua_data.h:58
gboolean accept_audio
Definition: janus_lua_data.h:55
volatile gint dataready
Definition: janus_lua_data.h:82
uint32_t bitrate
Definition: janus_lua_data.h:68
janus_rtp_switching_context rtpctx
Definition: janus_lua_data.h:61
volatile gint destroyed
Definition: janus_lua_data.h:84
Plugin-Gateway session mapping.
Definition: plugin.h:239
Structure that represents a recorder.
Definition: record.h:41
Definition: refcount.h:78
Helper struct for processing and tracking simulcast streams.
Definition: rtp.h:321
RTP context, in order to make sure SSRC changes result in coherent seq/ts increases.
Definition: rtp.h:273
VP8 simulcasting context, in order to make sure SSRC changes result in coherent picid/temporal level ...
Definition: utils.h:362
TURN REST API client.