Farsight2 Reference Manual | ||||
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces |
#include <gst/farsight/fs-base-conference.h> struct FsBaseConference; struct FsBaseConferenceClass;
FsBaseConference implements GstChildProxy, GstImplementsInterface and FsConference.
This base class must be subclassed by all Farsight Conference elements. It makes sure to agreggate the errors and maintain the lifecycles of the instances in the API.
struct FsBaseConference;
The FsBaseConference structure, all the members are private
struct FsBaseConferenceClass { GstBinClass parent_class; /* virtual methods */ FsSession *(*new_session) (FsBaseConference *conference, FsMediaType media_type, GError **error); FsParticipant *(*new_participant) (FsBaseConference *conference, const gchar *cname, GError **error); };
The class structure of FsBaseConference. Derived classes should override all members.
GstBinClass |
Our parent |
allocates a new FsSession for this conference | |
Creates a new FsParticipant of the type required for this conference |