summaryrefslogtreecommitdiffstats
path: root/stream/freesdp
diff options
context:
space:
mode:
Diffstat (limited to 'stream/freesdp')
-rw-r--r--stream/freesdp/common.h4
-rw-r--r--stream/freesdp/parser.c6
-rw-r--r--stream/freesdp/parser.h16
-rw-r--r--stream/freesdp/parserpriv.h10
-rw-r--r--stream/freesdp/priv.h4
5 files changed, 20 insertions, 20 deletions
diff --git a/stream/freesdp/common.h b/stream/freesdp/common.h
index ae59406049..bd051a57a7 100644
--- a/stream/freesdp/common.h
+++ b/stream/freesdp/common.h
@@ -127,7 +127,7 @@ typedef enum
} fsdp_error_t;
/**
- * @short Type of network
+ * @short Type of network
*
* Initially, SDP defines "Internet". New network types may be
* registered with IANA. However, the number of types is expected to
@@ -154,7 +154,7 @@ typedef enum
} fsdp_address_type_t;
/**
- * @short Type of bandwith modifiers
+ * @short Type of bandwith modifiers
*
* Bandwidth modifiers specify the meaning of the bandwidth
* value. Initially "Conference Total" and "Application Specific" are
diff --git a/stream/freesdp/parser.c b/stream/freesdp/parser.c
index bf6f985e94..34e6737a05 100644
--- a/stream/freesdp/parser.c
+++ b/stream/freesdp/parser.c
@@ -1,7 +1,7 @@
/*
This file is part of FreeSDP
Copyright (C) 2001,2002,2003 Federico Montesino Pouzols <fedemp@altern.org>
-
+
FreeSDP is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
@@ -380,7 +380,7 @@ fsdp_parse (const char *text_description, fsdp_description_t * dsc)
}
/* `k=' line (encryption key) [optional] */
- /* k=<method>
+ /* k=<method>
k=<method>:<encryption key> */
result = fsdp_parse_k (&p, &(dsc->k_encryption_method),
&(dsc->k_encryption_content));
@@ -687,7 +687,7 @@ fsdp_parse (const char *text_description, fsdp_description_t * dsc)
return result;
/* `k=' line (encryption key) [optional] */
- /* k=<method>
+ /* k=<method>
k=<method>:<encryption key> */
result = fsdp_parse_k (&p, &(media->k_encryption_method),
&(media->k_encryption_content));
diff --git a/stream/freesdp/parser.h b/stream/freesdp/parser.h
index 80c61d0115..76d10adb5b 100644
--- a/stream/freesdp/parser.h
+++ b/stream/freesdp/parser.h
@@ -46,7 +46,7 @@ BEGIN_C_DECLS
* functions.
*
* @param description a multimedia session description formatted in
- * SDP.
+ * SDP.
* @param dsc pointer that is updated to point to a fsdp_description_t
* object. This fsdp_description_t object should have been previously
* allocated using <code>fsdp_description_new()</code>; to free it,
@@ -60,12 +60,12 @@ fsdp_error_t fsdp_parse (const char *description, fsdp_description_t * dsc);
/**
* Get the SDP protocol version of the description.
*
- * @return SDP protocol version number.
+ * @return SDP protocol version number.
**/
unsigned int fsdp_get_version (const fsdp_description_t * dsc);
/**
- * Get the username provided by the originator of the session.
+ * Get the username provided by the originator of the session.
*
* @param dsc SDP description object.
* @return username of the session owner
@@ -73,7 +73,7 @@ unsigned int fsdp_get_version (const fsdp_description_t * dsc);
const char *fsdp_get_owner_username (const fsdp_description_t * dsc);
/**
- * Get the id for the session described in <code>dsc</code>.
+ * Get the id for the session described in <code>dsc</code>.
*
* @param dsc SDP description object.
* @return id string for this session.
@@ -241,7 +241,7 @@ unsigned int fsdp_get_bw_modifier_count (const fsdp_description_t * dsc);
* @param dsc SDP description object.
* @param index number of bandwidth modifier.
*
- * @return global bandwidth modifier type.
+ * @return global bandwidth modifier type.
* @retval FSDP_BW_MOD_TYPE_UNDEFINED if no global bandwith modifier
* type is defined or invalid index.
* @retval FSDP_BW_MOD_TYPE_UNKNOWN if an unknown bandwith modifier is
@@ -254,7 +254,7 @@ fsdp_get_bw_modifier_type (const fsdp_description_t * dsc,
unsigned int index);
/**
- * Get the textual bandwidth modifier type when it is unknown.
+ * Get the textual bandwidth modifier type when it is unknown.
*
* @param dsc SDP description object.
* @param index number of bandwidth modifier.
@@ -267,7 +267,7 @@ const char *fsdp_get_bw_modifier_type_unknown (const fsdp_description_t * dsc,
unsigned int index);
/**
- * Get the value for the bandwidth modifier.
+ * Get the value for the bandwidth modifier.
*
* @param dsc SDP description object.
* @param index number of bandwidth modifier.
@@ -474,7 +474,7 @@ unsigned int fsdp_get_sdplang_count (const fsdp_description_t * dsc);
const char *fsdp_get_sdplang (const fsdp_description_t * dsc,
unsigned int index);
-/**
+/**
* Get the mode of the conference, specified with attributes sendrecv,
* sendonly, recvonly and inactive.
*
diff --git a/stream/freesdp/parserpriv.h b/stream/freesdp/parserpriv.h
index 9d44102d31..b6762a4d55 100644
--- a/stream/freesdp/parserpriv.h
+++ b/stream/freesdp/parserpriv.h
@@ -33,12 +33,12 @@
* Parse a connection (c=<network type> <address type> <connection
* address>) line. If the textual description in <code>p</code> begins
* with a connection line, it is parsed. If not, nothing is done.
- *
+ *
* @param p fraction of textual SDP description.
* @param ntype where to store the network type.
* @param atype where to store the address type.
* @param address where to store the connection address as a string.
- *
+ *
* @return parse error code.
**/
static fsdp_error_t
@@ -51,7 +51,7 @@ fsdp_parse_c (const char **p, fsdp_network_type_t * ntype,
* textual description in <code>p</code> begins with a bandwidth line,
* it is parsed as well as all b lines inmediately after it. If not,
* nothing is done.
- *
+ *
* @param p fraction of textual SDP description.
* @param bw_modifiers pointer to empty array of bandwidth modifiers to fill.
* @param bw_modifiers_count where to set the number of bandwidth
@@ -96,11 +96,11 @@ static fsdp_error_t
fsdp_parse_rtpmap (fsdp_rtpmap_t *** rtpmap, unsigned int *counter,
const char *value);
-/**
+/**
* Maximun default field len for "expected to be short" fields, like
* username, session_id or inet addresses.
*
- * MDFLENS value must be MAXSHORTFIELDLEN - 1
+ * MDFLENS value must be MAXSHORTFIELDLEN - 1
**/
#define MAXSHORTFIELDLEN 96
#define MSFLENS "95"
diff --git a/stream/freesdp/priv.h b/stream/freesdp/priv.h
index 4a16830356..07d6e3dfb3 100644
--- a/stream/freesdp/priv.h
+++ b/stream/freesdp/priv.h
@@ -51,13 +51,13 @@
/**
* @example formatdemo.c
- *
+ *
* A basic SDP descriptions formatter based on FreeSDP.
**/
/**
* @example parsedemo.c
- *
+ *
* A basic SDP descriptions parser based on FreeSDP.
**/