20 #ifndef JANUS_RECORD_H
21 #define JANUS_RECORD_H
Semaphors, Mutexes and Conditions.
GMutex janus_mutex
Janus mutex implementation.
Definition: mutex.h:61
int janus_recorder_add_extmap(janus_recorder *recorder, int id, const char *extmap)
Add an RTP extension to this recording.
Definition: record.c:258
void janus_recorder_deinit(void)
De-initialize the recorder code.
Definition: record.c:60
int janus_recorder_encrypted(janus_recorder *recorder)
Mark this recorder as end-to-end encrypted (e.g., via Insertable Streams)
Definition: record.c:269
int janus_recorder_close(janus_recorder *recorder)
Close the recorder.
Definition: record.c:403
janus_recorder * janus_recorder_create_full(const char *dir, const char *codec, const char *fmtp, const char *filename)
Create a new recorder with additional info.
Definition: record.c:89
janus_recorder_medium
Media types we can record.
Definition: record.h:33
@ JANUS_RECORDER_VIDEO
Definition: record.h:35
@ JANUS_RECORDER_AUDIO
Definition: record.h:34
@ JANUS_RECORDER_DATA
Definition: record.h:36
int janus_recorder_save_frame(janus_recorder *recorder, char *buffer, uint length)
Save an RTP frame in the recorder.
Definition: record.c:279
void janus_recorder_init(gboolean tempnames, const char *extension)
Initialize the recorder code.
Definition: record.c:46
struct janus_recorder janus_recorder
Structure that represents a recorder.
void janus_recorder_destroy(janus_recorder *recorder)
Destroy the recorder instance.
Definition: record.c:441
janus_recorder * janus_recorder_create(const char *dir, const char *codec, const char *filename)
Create a new recorder.
Definition: record.c:85
Reference counter mechanism.
Structure that represents a recorder.
Definition: record.h:40
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition: record.h:66
char * filename
Filename of this recorder file.
Definition: record.h:44
char * dir
Absolute path to the directory where the recorder file is stored.
Definition: record.h:42
FILE * file
Recording file.
Definition: record.h:46
janus_mutex mutex
Mutex to lock/unlock this recorder instance.
Definition: record.h:64
janus_refcount ref
Reference counter for this instance.
Definition: record.h:68
char * codec
Codec the packets to record are encoded in ("vp8", "vp9", "h264", "opus", "pcma", "pcmu",...
Definition: record.h:48
gint64 started
Definition: record.h:54
gint64 created
When the recording file has been created and started.
Definition: record.h:54
gboolean encrypted
Whether the recording contains end-to-end encrypted media or not.
Definition: record.h:58
GHashTable * extensions
List of RTP extensions (as a hashtable, indexed by ID) in this recording.
Definition: record.h:52
volatile int writable
Whether this recorder instance can be used for writing or not.
Definition: record.h:62
janus_recorder_medium type
Media this instance is recording.
Definition: record.h:56
char * fmtp
Codec-specific info (e.g., H.264 or VP9 profile)
Definition: record.h:50
volatile int header
Whether the info header for this recorder instance has already been written or not.
Definition: record.h:60
Definition: refcount.h:78