Fork me on GitHub
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 */
43 extern volatile gint lua_initialized, lua_stopping;
45 
46 /* Lua state: we define state and mutex as extern */
47 extern lua_State *lua_state;
48 extern janus_mutex lua_mutex;
49 
50 /* Lua session: we keep only the barebone stuff here, the rest will be in the Lua script */
51 typedef 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; /* Needed in case the source changes (e.g., stale operator/customer) */
62  uint32_t bitrate; /* Bitrate limit */
63  uint16_t pli_freq; /* Regular PLI frequency (0=disabled) */
64  gint64 pli_latest; /* Time of latest sent PLI (to avoid flooding) */
65  GSList *recipients; /* Sessions that should receive media from this session */
66  struct janus_lua_session *sender; /* Other session this session is receiving media from */
67  janus_mutex recipients_mutex; /* Mutex to lock the recipients list */
68  janus_recorder *arc; /* The Janus recorder instance for audio, if enabled */
69  janus_recorder *vrc; /* The Janus recorder instance for video, if enabled */
70  janus_recorder *drc; /* The Janus recorder instance for data, if enabled */
71  janus_mutex rec_mutex; /* Mutex to protect the recorders from race conditions */
72  volatile gint started; /* Whether this session's PeerConnection is ready or not */
73  volatile gint dataready; /* Whether the data channel was established on this sessions's PeerConnection */
74  volatile gint hangingup; /* Whether this session's PeerConnection is hanging up */
75  volatile gint destroyed; /* Whether this session's been marked as destroyed */
76  /* If you need any additional property (e.g., for hooks you added in janus_lua_extra.c) add them below this line */
77 
78  /* Reference counter */
81 extern GHashTable *lua_sessions, *lua_ids;
84 
85 #endif
janus_recorder * drc
Definition: janus_lua_data.h:70
SDP utilities (headers)
janus_mutex lua_mutex
Definition: janus_lua.c:268
Logging and Debugging.
lua_State * lua_state
Definition: janus_lua.c:267
Janus API errors definition.
volatile gint started
Definition: janus_lua_data.h:72
GHashTable * lua_ids
Definition: janus_lua.c:327
gboolean send_data
Definition: janus_lua_data.h:60
GMutex janus_mutex
Janus mutex implementation.
Definition: mutex.h:61
volatile gint dataready
Definition: janus_lua_data.h:73
gint64 pli_latest
Definition: janus_lua_data.h:64
Plugin-Core communication (implementation)
janus_lua_session * janus_lua_lookup_session(janus_plugin_session *handle)
Definition: janus_lua.c:1596
volatile gint lua_stopping
Definition: janus_lua.c:263
janus_rtp_switching_context rtpctx
Definition: janus_lua_data.h:61
Configuration files parsing (headers)
gboolean accept_audio
Definition: janus_lua_data.h:55
gboolean accept_data
Definition: janus_lua_data.h:57
struct janus_lua_session * sender
Definition: janus_lua_data.h:66
janus_recorder * vrc
Definition: janus_lua_data.h:69
janus_mutex rec_mutex
Definition: janus_lua_data.h:71
Definition: refcount.h:78
TURN REST API client.
Definition: janus_lua_data.h:51
struct janus_lua_session janus_lua_session
volatile gint lua_initialized
Definition: janus_lua.c:263
gboolean send_audio
Definition: janus_lua_data.h:58
RTP context, in order to make sure SSRC changes result in coherent seq/ts increases.
Definition: rtp.h:234
RTCP processing (headers)
uint32_t id
Definition: janus_lua_data.h:53
janus_mutex recipients_mutex
Definition: janus_lua_data.h:67
janus_mutex lua_sessions_mutex
Definition: janus_lua.c:328
Structure that represents a recorder.
Definition: record.h:40
janus_refcount ref
Definition: janus_lua_data.h:79
gboolean accept_video
Definition: janus_lua_data.h:56
Callbacks to contact the Janus core.
Definition: plugin.h:354
Semaphors, Mutexes and Conditions.
Audio/Video recorder.
GHashTable * lua_sessions
Definition: janus_lua.c:327
uint16_t pli_freq
Definition: janus_lua_data.h:63
Plugin-Gateway session mapping.
Definition: plugin.h:239
janus_callbacks * janus_core
Definition: janus_duktape.c:263
janus_recorder * arc
Definition: janus_lua_data.h:68
janus_plugin_session * handle
Definition: janus_lua_data.h:52
GSList * recipients
Definition: janus_lua_data.h:65
RTP processing (headers)
uint32_t bitrate
Definition: janus_lua_data.h:62
volatile gint hangingup
Definition: janus_lua_data.h:74
volatile gint destroyed
Definition: janus_lua_data.h:75
gboolean send_video
Definition: janus_lua_data.h:59