/**
* @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.
*/
/**
* @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.
/**
* @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
* @{
/**
* @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>
/*!
\defgroup events Eventing Engine
- \ingroup FREESWITCH
+ \ingroup core1
\{
*/
/**
* @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.
* @{
/*!
\defgroup mods Loadable Module Functions
- \ingroup FREESWITCH
+ \ingroup core1
\{
*/
#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 */
*/
SWITCH_DECLARE(void) switch_swap_linear(int16_t *buf, int len);
+///\}
+
#ifdef __cplusplus
}
#endif
/**
* @defgroup switch_sqlite_top Brought To You By SQLite
- * @ingroup FREESWITCH
+ * @ingroup FREESWITCH
* @{
*/
*/
/*!
\defgroup stun1 STUN code
- \ingroup FREESWITCH
+ \ingroup core1
\{
*/
#ifndef _SWITCH_STUN_PARSER_H