[asterisk-commits] trunk r31977 - /trunk/translate.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun Jun 4 01:15:42 MST 2006


Author: oej
Date: Sun Jun  4 03:15:41 2006
New Revision: 31977

URL: http://svn.digium.com/view/asterisk?rev=31977&view=rev
Log:
Doxygen formatting fixes

Modified:
    trunk/translate.c

Modified: trunk/translate.c
URL: http://svn.digium.com/view/asterisk/trunk/translate.c?rev=31977&r1=31976&r2=31977&view=diff
==============================================================================
--- trunk/translate.c (original)
+++ trunk/translate.c Sun Jun  4 03:15:41 2006
@@ -67,13 +67,13 @@
  */
 static struct translator_path tr_matrix[MAX_FORMAT][MAX_FORMAT];
 
-/*
+/*! \todo
  * TODO: sample frames for each supported input format.
  * We build this on the fly, by taking an SLIN frame and using
  * the existing converter to play with it.
  */
 
-/* returns the index of the lowest bit set */
+/*! \brief returns the index of the lowest bit set */
 static int powerof(int d)
 {
 	int x;
@@ -146,9 +146,7 @@
 	ast_update_use_count();
 }
 
-/*
- * framein wrapper, deals with plc and bound checks.
- */
+/*! \brief framein wrapper, deals with plc and bound checks.  */
 static int framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
 {
 	int16_t *dst = (int16_t *)pvt->outbuf;
@@ -200,8 +198,7 @@
         return ret;
 }
 
-/*
- * generic frameout routine.
+/*! \brief generic frameout routine.
  * If samples and datalen are 0, take whatever is in pvt
  * and reset them, otherwise take the values in the caller and
  * leave alone the pvt values.
@@ -251,7 +248,7 @@
 	}
 }
 
-/*! Build a chain of translators based upon the given source and dest formats */
+/*! \brief Build a chain of translators based upon the given source and dest formats */
 struct ast_trans_pvt *ast_translator_build_path(int dest, int source)
 {
 	struct ast_trans_pvt *head = NULL, *tail = NULL;
@@ -545,6 +542,7 @@
 static struct ast_cli_entry show_trans =
 { { "show", "translation", NULL }, show_translation, "Display translation matrix", show_trans_usage };
 
+/*! \brief register codec translator */
 int ast_register_translator(struct ast_translator *t, void *module)
 {
 	static int added_cli = 0;



More information about the asterisk-commits mailing list