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