git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1126 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-04-12 16:34:34 +00:00
parent 9ac4da17f6
commit e2cae5587c
10 changed files with 17 additions and 9 deletions

View File

@ -46,7 +46,7 @@ extern "C" {
/** /**
* @defgroup switch_buffer Buffer Routines * @defgroup switch_buffer Buffer Routines
* @ingroup FREESWITCH * @ingroup core1
* The purpose of this module is to make a plain buffering interface that can be used for read/write buffers * The purpose of this module is to make a plain buffering interface that can be used for read/write buffers
* throughout the application. The first implementation was done to provide the functionality and the interface * throughout the application. The first implementation was done to provide the functionality and the interface
* and I think it can be optimized under the hood as we go using bucket brigades and/or ring buffering techniques. * and I think it can be optimized under the hood as we go using bucket brigades and/or ring buffering techniques.

View File

@ -36,7 +36,7 @@
*/ */
/** /**
* @defgroup caller Caller Identity / Dialplan * @defgroup caller Caller Identity / Dialplan
* @ingroup FREESWITCH * @ingroup core1
* *
* This module implements a caller profile which is a group of information about a connected endpoint * This module implements a caller profile which is a group of information about a connected endpoint
* such as common caller id and other useful information such as ip address and destination number. * such as common caller id and other useful information such as ip address and destination number.

View File

@ -52,7 +52,7 @@ typedef struct {
/** /**
* @defgroup switch_channel Channel Functions * @defgroup switch_channel Channel Functions
* @ingroup FREESWITCH * @ingroup core1
* The switch_channel object is a private entity that belongs to a session that contains the call * The switch_channel object is a private entity that belongs to a session that contains the call
* specific information such as the call state, variables, caller profiles and DTMF queue * specific information such as the call state, variables, caller profiles and DTMF queue
* @{ * @{

View File

@ -37,7 +37,7 @@
/** /**
* @defgroup config Config File Parser * @defgroup config Config File Parser
* @ingroup FREESWITCH * @ingroup core1
* This module implements a basic interface and file format parser it may be depricated in favor of database entries * This module implements a basic interface and file format parser it may be depricated in favor of database entries
* or expanded to tie to external handlers in the future as necessary. * or expanded to tie to external handlers in the future as necessary.
* <pre> * <pre>

View File

@ -51,7 +51,7 @@
/*! /*!
\defgroup events Eventing Engine \defgroup events Eventing Engine
\ingroup FREESWITCH \ingroup core1
\{ \{
*/ */

View File

@ -46,7 +46,7 @@ extern "C" {
/** /**
* @defgroup switch_ivr IVR Library * @defgroup switch_ivr IVR Library
* @ingroup FREESWITCH * @ingroup core1
* A group of core functions to do IVR related functions designed to be * A group of core functions to do IVR related functions designed to be
* building blocks for a higher level IVR interface. * building blocks for a higher level IVR interface.
* @{ * @{

View File

@ -49,7 +49,7 @@ extern "C" {
/*! /*!
\defgroup mods Loadable Module Functions \defgroup mods Loadable Module Functions
\ingroup FREESWITCH \ingroup core1
\{ \{
*/ */

View File

@ -48,6 +48,12 @@ extern "C" {
#include <stdlib.h> #include <stdlib.h>
#include <switch.h> #include <switch.h>
/*!
\defgroup resamp Audio Resample Functions
\ingroup core1
\{
*/
/*! \brief An audio resampling handle */ /*! \brief An audio resampling handle */
struct switch_audio_resampler { struct switch_audio_resampler {
/*! a pointer to store the resampler object */ /*! a pointer to store the resampler object */
@ -150,6 +156,8 @@ SWITCH_DECLARE(int) switch_short_to_float(short *s, float *f, int len);
*/ */
SWITCH_DECLARE(void) switch_swap_linear(int16_t *buf, int len); SWITCH_DECLARE(void) switch_swap_linear(int16_t *buf, int len);
///\}
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@ -43,7 +43,7 @@ extern "C" {
/** /**
* @defgroup switch_sqlite_top Brought To You By SQLite * @defgroup switch_sqlite_top Brought To You By SQLite
* @ingroup FREESWITCH * @ingroup FREESWITCH
* @{ * @{
*/ */

View File

@ -31,7 +31,7 @@
*/ */
/*! /*!
\defgroup stun1 STUN code \defgroup stun1 STUN code
\ingroup FREESWITCH \ingroup core1
\{ \{
*/ */
#ifndef _SWITCH_STUN_PARSER_H #ifndef _SWITCH_STUN_PARSER_H