Top | ![]() |
![]() |
![]() |
![]() |
FsSession * | fs_conference_new_session () |
FsParticipant * | fs_conference_new_participant () |
#define | FS_ERROR |
#define | FS_ERROR_IS_FATAL() |
gboolean | fs_parse_error () |
GObject ╰── GInitiallyUnowned ╰── GstObject ╰── GstElement ╰── GstBin ╰── FsConference
A Farstream conference is a conversation space that takes place between 2 or more participants. Each conference must have one or more Farstream sessions that are associated to the conference participants.
This will communicate asynchronous events to the user through GstMessage of type GST_MESSAGE_ELEMENT sent over the GstBus.
FsSession * fs_conference_new_session (FsConference *conference
,FsMediaType media_type
,GError **error
);
Create a new Farstream session for the given conference.
conference |
FsConference interface of a GstElement |
|
media_type |
FsMediaType of the new session |
|
error |
FsParticipant * fs_conference_new_participant (FsConference *conference
,GError **error
);
Create a new Farstream Participant for the type of the given conference.
the new FsParticipant that has been created. The FsParticipant is owned by the user and he must unref it when he is done with it.
#define FS_ERROR (fs_error_quark ())
This quark is used to denote errors coming from Farstream objects
#define FS_ERROR_IS_FATAL(error)
Tells the programmer if an error if fatal or not, if it returns TRUE
,
the error is fatal, and the object that created it should
be discarded. It returns FALSE
otherwise.
gboolean fs_parse_error (GObject *object
,GstMessage *message
,FsError *error
,const gchar **error_msg
);
Parses a "farstream-farstream" message and checks if it matches
the object
parameters.
object |
a GObject to match against the message |
|
message |
a GstMessage to parse |
|
error |
Returns the FsError error number in
the message if not |
[out] |
error_msg |
Returns the error message if not |
[out][transfer none] |
This is the enum of error numbers that will come either on the "error" signal, from the Gst Bus or for error in the FS_ERROR domain in GErrors
Error constructing some of the sub-elements, this probably denotes an error in the installation of the gstreamer elements. It is a fatal error. |
||
An internal error happened in Farstream, it may be in an inconsistent state. The object from which this error comes should be discarded. |
||
Invalid arguments to the function, this is a programming error and should not be reported to the user |
||
A network related error, this should probably be reported to the user. |
||
The optional functionality is not implemented by this plugin. |
||
The codec negotiation has failed, this means that there are no common codecs between the local and remote codecs. |
||
Data is received on an unknown codec, this most likely denotes an error on the remote side, the buffers will be ignored. It can safely be ignored in most cases (but may result in a call with no media received). |
||
There are no codecs detected for that media type. |
||
All of the codecs have been disabled by the codec preferences, one should try less strict codec preferences. |
||
Could not connect to the to remote party. |
||
The object has been disposed. |
||
The object already exists |