Janus AudioBridge plugin.
More...
#include "plugin.h"
#include <jansson.h>
#include <opus/opus.h>
#include <netdb.h>
#include <sys/time.h>
#include "../debug.h"
#include "../apierror.h"
#include "../config.h"
#include "../mutex.h"
#include "../rtp.h"
#include "../rtpsrtp.h"
#include "../rtcp.h"
#include "../record.h"
#include "../sdp-utils.h"
#include "../utils.h"
#include "../ip-utils.h"
Janus AudioBridge plugin.
- Author
- Lorenzo Miniero loren.nosp@m.zo@m.nosp@m.eetec.nosp@m.ho.c.nosp@m.om
- Copyright
- GNU General Public License v3
Check the AudioBridge plugin documentation for more details.
Plugins
#define DEFAULT_COMPLEXITY 4 |
#define DEFAULT_PREBUFFERING 6 |
#define JANUS_AUDIOBRIDGE_AUTHOR "Meetecho s.r.l." |
#define JANUS_AUDIOBRIDGE_DESCRIPTION "This is a plugin implementing an audio conference bridge for Janus, mixing Opus streams." |
#define JANUS_AUDIOBRIDGE_ERROR_ALREADY_JOINED 491 |
#define JANUS_AUDIOBRIDGE_ERROR_ID_EXISTS 490 |
#define JANUS_AUDIOBRIDGE_ERROR_INVALID_ELEMENT 484 |
#define JANUS_AUDIOBRIDGE_ERROR_INVALID_JSON 481 |
#define JANUS_AUDIOBRIDGE_ERROR_INVALID_REQUEST 482 |
#define JANUS_AUDIOBRIDGE_ERROR_INVALID_SDP 493 |
#define JANUS_AUDIOBRIDGE_ERROR_LIBOPUS_ERROR 488 |
#define JANUS_AUDIOBRIDGE_ERROR_MISSING_ELEMENT 483 |
#define JANUS_AUDIOBRIDGE_ERROR_NO_MESSAGE 480 |
#define JANUS_AUDIOBRIDGE_ERROR_NO_SUCH_ROOM 485 |
#define JANUS_AUDIOBRIDGE_ERROR_NO_SUCH_USER 492 |
#define JANUS_AUDIOBRIDGE_ERROR_NOT_JOINED 487 |
#define JANUS_AUDIOBRIDGE_ERROR_ROOM_EXISTS 486 |
#define JANUS_AUDIOBRIDGE_ERROR_UNAUTHORIZED 489 |
#define JANUS_AUDIOBRIDGE_ERROR_UNKNOWN_ERROR 499 |
#define JANUS_AUDIOBRIDGE_NAME "JANUS AudioBridge plugin" |
#define JANUS_AUDIOBRIDGE_PACKAGE "janus.plugin.audiobridge" |
#define JANUS_AUDIOBRIDGE_VERSION 11 |
#define JANUS_AUDIOBRIDGE_VERSION_STRING "0.0.11" |
#define MAX_PREBUFFERING 50 |
void janus_audiobridge_destroy |
( |
void |
| ) |
|
int janus_audiobridge_get_api_compatibility |
( |
void |
| ) |
|
const char * janus_audiobridge_get_author |
( |
void |
| ) |
|
const char * janus_audiobridge_get_description |
( |
void |
| ) |
|
const char * janus_audiobridge_get_name |
( |
void |
| ) |
|
const char * janus_audiobridge_get_package |
( |
void |
| ) |
|
int janus_audiobridge_get_version |
( |
void |
| ) |
|
const char * janus_audiobridge_get_version_string |
( |
void |
| ) |
|
json_t * janus_audiobridge_handle_admin_message |
( |
json_t * |
message | ) |
|
int janus_audiobridge_init |
( |
janus_callbacks * |
callback, |
|
|
const char * |
config_path |
|
) |
| |