summaryrefslogtreecommitdiff
path: root/include/asterisk/mod_format.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/mod_format.h')
-rw-r--r--include/asterisk/mod_format.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/asterisk/mod_format.h b/include/asterisk/mod_format.h
index d76be5eca..2bf75925f 100644
--- a/include/asterisk/mod_format.h
+++ b/include/asterisk/mod_format.h
@@ -42,7 +42,7 @@ extern "C" {
*/
struct ast_format_def {
char name[80]; /*!< Name of format */
- char exts[80]; /*!< Extensions (separated by | if more than one)
+ char exts[80]; /*!< Extensions (separated by | if more than one)
* this format can read. First is assumed for writing (e.g. .mp3) */
struct ast_format *format; /*!< Format of frames it uses/provides (one only) */
/*!
@@ -53,11 +53,11 @@ struct ast_format_def {
* function can be omitted.
*/
int (*open)(struct ast_filestream *s);
- /*!
+ /*!
* \brief Prepare a stream for output, and comment it appropriately if applicable.
- * \return 0 on success, -1 on error.
- * Same as the open, the FILE is already open so the function just needs to
- * prepare any header and other fields, if any.
+ * \return 0 on success, -1 on error.
+ * Same as the open, the FILE is already open so the function just needs to
+ * prepare any header and other fields, if any.
* The function can be omitted if nothing is needed.
*/
int (*rewrite)(struct ast_filestream *s, const char *comment);
@@ -125,7 +125,7 @@ struct ast_filestream {
char *write_buffer;
};
-/*!
+/*!
* \brief Register a new file format capability.
* Adds a format to Asterisk's format abilities.
* \retval 0 on success
@@ -134,8 +134,8 @@ struct ast_filestream {
int __ast_format_def_register(const struct ast_format_def *f, struct ast_module *mod);
#define ast_format_def_register(f) __ast_format_def_register(f, ast_module_info->self)
-/*!
- * \brief Unregisters a file format
+/*!
+ * \brief Unregisters a file format
* \param name the name of the format you wish to unregister
* Unregisters a format based on the name of the format.
* \retval 0 on success