[asterisk-commits] north: trunk r38009 - in /trunk: ./ channels/
formats/ include/asterisk/
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Wed Jul 19 15:40:36 MST 2006
Author: north
Date: Wed Jul 19 17:40:36 2006
New Revision: 38009
URL: http://svn.digium.com/view/asterisk?rev=38009&view=rev
Log:
Fix a few doxygen warnings.
Modified:
trunk/ast_expr2f.c
trunk/channels/chan_sip.c
trunk/formats/format_ogg_vorbis.c
trunk/include/asterisk/abstract_jb.h
Modified: trunk/ast_expr2f.c
URL: http://svn.digium.com/view/asterisk/trunk/ast_expr2f.c?rev=38009&r1=38008&r2=38009&view=diff
==============================================================================
--- trunk/ast_expr2f.c (original)
+++ trunk/ast_expr2f.c Wed Jul 19 17:40:36 2006
@@ -2722,8 +2722,8 @@
/** Setup the input buffer state to scan the given bytes. The next call to ast_yylex() will
* scan from a @e copy of @a bytes.
- * @param bytes the byte buffer to scan
- * @param len the number of bytes in the buffer pointed to by @a bytes.
+ * @param yybytes the byte buffer to scan
+ * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
*/
@@ -2884,7 +2884,7 @@
}
/** Set the current column.
- * @param line_number
+ * @param column_no
* @param yyscanner The scanner object.
*/
void ast_yyset_column (int column_no , yyscan_t yyscanner)
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=38009&r1=38008&r2=38009&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Wed Jul 19 17:40:36 2006
@@ -6739,7 +6739,7 @@
return send_request(p, &req, 1, p->ocseq);
}
-/*! \build Convert registration state status to string */
+/*! \brief Convert registration state status to string */
static char *regstate2str(enum sipregistrystate regstate)
{
switch(regstate) {
Modified: trunk/formats/format_ogg_vorbis.c
URL: http://svn.digium.com/view/asterisk/trunk/formats/format_ogg_vorbis.c?rev=38009&r1=38008&r2=38009&view=diff
==============================================================================
--- trunk/formats/format_ogg_vorbis.c (original)
+++ trunk/formats/format_ogg_vorbis.c Wed Jul 19 17:40:36 2006
@@ -85,7 +85,7 @@
/*!
* \brief Create a new OGG/Vorbis filestream and set it up for reading.
- * \param f File that points to on disk storage of the OGG/Vorbis data.
+ * \param s File that points to on disk storage of the OGG/Vorbis data.
* \return The new filestream.
*/
static int ogg_vorbis_open(struct ast_filestream *s)
@@ -195,7 +195,7 @@
/*!
* \brief Create a new OGG/Vorbis filestream and set it up for writing.
- * \param f File pointer that points to on-disk storage.
+ * \param s File pointer that points to on-disk storage.
* \param comment Comment that should be embedded in the OGG/Vorbis file.
* \return A new filestream.
*/
@@ -272,7 +272,7 @@
/*!
* \brief Write audio data from a frame to an OGG/Vorbis filestream.
- * \param s A OGG/Vorbis filestream.
+ * \param fs A OGG/Vorbis filestream.
* \param f An frame containing audio to be written to the filestream.
* \return -1 ifthere was an error, 0 on success.
*/
@@ -316,7 +316,7 @@
/*!
* \brief Close a OGG/Vorbis filestream.
- * \param s A OGG/Vorbis filestream.
+ * \param fs A OGG/Vorbis filestream.
*/
static void ogg_vorbis_close(struct ast_filestream *fs)
{
@@ -342,7 +342,7 @@
/*!
* \brief Get audio data.
- * \param s An OGG/Vorbis filestream.
+ * \param fs An OGG/Vorbis filestream.
* \param pcm Pointer to a buffere to store audio data in.
*/
@@ -421,7 +421,7 @@
/*!
* \brief Read a frame full of audio data from the filestream.
- * \param s The filestream.
+ * \param fs The filestream.
* \param whennext Number of sample times to schedule the next call.
* \return A pointer to a frame containing audio data or NULL ifthere is no more audio data.
*/
Modified: trunk/include/asterisk/abstract_jb.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/abstract_jb.h?rev=38009&r1=38008&r2=38009&view=diff
==============================================================================
--- trunk/include/asterisk/abstract_jb.h (original)
+++ trunk/include/asterisk/abstract_jb.h Wed Jul 19 17:40:36 2006
@@ -137,7 +137,7 @@
/*!
* \brief Puts a frame into a channel jitterbuffer.
* \param chan channel.
- * \param frame frame.
+ * \param f frame.
*
* Called from ast_generic_bridge() to put a frame into a channel's jitterbuffer.
* The function will successfuly enqueue a frame if and only if:
More information about the asterisk-commits
mailing list