dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1126 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
9ac4da17f6
commit
e2cae5587c
|
@ -46,7 +46,7 @@ extern "C" {
|
|||
|
||||
/**
|
||||
* @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
|
||||
* 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.
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
/**
|
||||
* @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
|
||||
* such as common caller id and other useful information such as ip address and destination number.
|
||||
|
|
|
@ -52,7 +52,7 @@ typedef struct {
|
|||
|
||||
/**
|
||||
* @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
|
||||
* specific information such as the call state, variables, caller profiles and DTMF queue
|
||||
* @{
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
/**
|
||||
* @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
|
||||
* or expanded to tie to external handlers in the future as necessary.
|
||||
* <pre>
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
/*!
|
||||
\defgroup events Eventing Engine
|
||||
\ingroup FREESWITCH
|
||||
\ingroup core1
|
||||
\{
|
||||
*/
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ extern "C" {
|
|||
|
||||
/**
|
||||
* @defgroup switch_ivr IVR Library
|
||||
* @ingroup FREESWITCH
|
||||
* @ingroup core1
|
||||
* A group of core functions to do IVR related functions designed to be
|
||||
* building blocks for a higher level IVR interface.
|
||||
* @{
|
||||
|
|
|
@ -49,7 +49,7 @@ extern "C" {
|
|||
|
||||
/*!
|
||||
\defgroup mods Loadable Module Functions
|
||||
\ingroup FREESWITCH
|
||||
\ingroup core1
|
||||
\{
|
||||
*/
|
||||
|
||||
|
|
|
@ -48,6 +48,12 @@ extern "C" {
|
|||
#include <stdlib.h>
|
||||
#include <switch.h>
|
||||
|
||||
/*!
|
||||
\defgroup resamp Audio Resample Functions
|
||||
\ingroup core1
|
||||
\{
|
||||
*/
|
||||
|
||||
/*! \brief An audio resampling handle */
|
||||
struct switch_audio_resampler {
|
||||
/*! 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);
|
||||
|
||||
///\}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -43,7 +43,7 @@ extern "C" {
|
|||
|
||||
/**
|
||||
* @defgroup switch_sqlite_top Brought To You By SQLite
|
||||
* @ingroup FREESWITCH
|
||||
* @ingroup FREESWITCH
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
/*!
|
||||
\defgroup stun1 STUN code
|
||||
\ingroup FREESWITCH
|
||||
\ingroup core1
|
||||
\{
|
||||
*/
|
||||
#ifndef _SWITCH_STUN_PARSER_H
|
||||
|
|
Loading…
Reference in New Issue