mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
Add some comments.
This commit is contained in:
parent
b312f98627
commit
f00188b50e
1 changed files with 7 additions and 2 deletions
|
@ -46,7 +46,8 @@ typedef struct _GstRTSPSessionMedia GstRTSPSessionMedia;
|
||||||
/**
|
/**
|
||||||
* GstRTSPSessionStream:
|
* GstRTSPSessionStream:
|
||||||
*
|
*
|
||||||
* Configuration of a stream.
|
* Configuration of a stream. A stream is an audio or video stream related to a
|
||||||
|
* media.
|
||||||
*/
|
*/
|
||||||
struct _GstRTSPSessionStream
|
struct _GstRTSPSessionStream
|
||||||
{
|
{
|
||||||
|
@ -76,7 +77,9 @@ struct _GstRTSPSessionStream
|
||||||
/**
|
/**
|
||||||
* GstRTSPSessionMedia:
|
* GstRTSPSessionMedia:
|
||||||
*
|
*
|
||||||
* State of a client session regarding a specific media.
|
* State of a client session regarding a specific media. The media is identified
|
||||||
|
* with the media factory. The media is typically composed of multiple streams,
|
||||||
|
* such as an audio and video stream.
|
||||||
*/
|
*/
|
||||||
struct _GstRTSPSessionMedia
|
struct _GstRTSPSessionMedia
|
||||||
{
|
{
|
||||||
|
@ -103,6 +106,8 @@ struct _GstRTSPSessionMedia
|
||||||
* GstRTSPSession:
|
* GstRTSPSession:
|
||||||
*
|
*
|
||||||
* Session information kept by the server for a specific client.
|
* Session information kept by the server for a specific client.
|
||||||
|
* One client session, identified with a session id, can handle multiple medias
|
||||||
|
* identified with the media factory.
|
||||||
*/
|
*/
|
||||||
struct _GstRTSPSession {
|
struct _GstRTSPSession {
|
||||||
GObject parent;
|
GObject parent;
|
||||||
|
|
Loading…
Reference in a new issue