sip: codestyle changes

Shuffle the code around and make use of docstrings to conform to
the newly introduced coding style as described in `HACKING.md`

This commit also introduces docstrings describing each source file.
This commit is contained in:
Evangelos Ribeiro Tzaras
2021-04-11 00:25:13 +02:00
parent 765cd2ebb9
commit 7ed1ee2502
5 changed files with 135 additions and 82 deletions

View File

@@ -24,12 +24,21 @@
#define G_LOG_DOMAIN "CallsSipMediaManager"
#include "calls-sip-media-pipeline.h"
#include "gst-rfc3551.h"
#include "calls-sip-media-manager.h"
#include "gst-rfc3551.h"
#include <gst/gst.h>
/**
* SECTION:sip-media-manager
* @short_description: The media manager singleton
* @Title: CallsSipMediaManager
*
* #CallsSipMediaManager is mainly responsible for generating appropriate
* SDP messages for the set of supported codecs. In the future it
* shall also manage the #CallsSipMediaPipeline objects that are in use.
*/
typedef struct _CallsSipMediaManager
{
GObject parent;