summaryrefslogtreecommitdiff
path: root/include/asterisk/translate.h
diff options
context:
space:
mode:
authorSean Bright <sean.bright@gmail.com>2017-12-22 09:14:07 -0500
committerSean Bright <sean.bright@gmail.com>2017-12-22 09:14:07 -0500
commitce3d56920b15facbb64b3caf0d823a3f57c0dded (patch)
tree0ea4a13885afb281237b3747e85eb6315863ae0a /include/asterisk/translate.h
parent35a2e09c655f26067db0f51837704886d6ffff78 (diff)
Remove as much trailing whitespace as possible.
Change-Id: I873c1c6d00f447269bd841494459efccdd2c19c0
Diffstat (limited to 'include/asterisk/translate.h')
-rw-r--r--include/asterisk/translate.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asterisk/translate.h b/include/asterisk/translate.h
index ce46cd083..54c6d9f44 100644
--- a/include/asterisk/translate.h
+++ b/include/asterisk/translate.h
@@ -107,7 +107,7 @@ enum ast_trans_cost_table {
};
/*! \brief
- * Descriptor of a translator.
+ * Descriptor of a translator.
*
* Name, callbacks, and various options
* related to run-time operation (size of buffers, auxiliary
@@ -148,19 +148,19 @@ struct ast_translator {
* on computation time. This cost value is computed based
* on the time required to translate sample data. */
- int (*newpvt)(struct ast_trans_pvt *); /*!< initialize private data
+ int (*newpvt)(struct ast_trans_pvt *); /*!< initialize private data
* associated with the translator */
int (*framein)(struct ast_trans_pvt *pvt, struct ast_frame *in);
- /*!< Input frame callback. Store
+ /*!< Input frame callback. Store
* (and possibly convert) input frame. */
struct ast_frame * (*frameout)(struct ast_trans_pvt *pvt);
- /*!< Output frame callback. Generate a frame
+ /*!< Output frame callback. Generate a frame
* with outbuf content. */
void (*destroy)(struct ast_trans_pvt *pvt);
- /*!< cleanup private data, if needed
+ /*!< cleanup private data, if needed
* (often unnecessary). */
struct ast_frame * (*sample)(void); /*!< Generate an example frame */
@@ -296,9 +296,9 @@ int ast_translator_best_choice(struct ast_format_cap *dst_cap,
struct ast_format **dst_fmt_out,
struct ast_format **src_fmt_out);
-/*!
+/*!
* \brief Builds a translator path
- * Build a path (possibly NULL) from source to dest
+ * Build a path (possibly NULL) from source to dest
* \param dst dest destination format
* \param src source source format
* \return ast_trans_pvt on success, NULL on failure