aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-06 15:09:47 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-06 15:09:47 +0000
commitd3ddc001a22ebbbea8ff3601fe8698edff8e7f05 (patch)
treec8881054a6bb8d0179b2d87d3a1e5a7badad305c /codecs
parent07d34af56d8086e3984209b306dbe03fffa1ff4a (diff)
issue #5605
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6979 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rwxr-xr-xcodecs/codec_a_mu.c1
-rwxr-xr-xcodecs/codec_adpcm.c1
-rwxr-xr-xcodecs/codec_alaw.c1
-rwxr-xr-xcodecs/codec_g723_1.c1
-rwxr-xr-xcodecs/codec_g726.c1
-rwxr-xr-xcodecs/codec_gsm.c1
-rwxr-xr-xcodecs/codec_ilbc.c1
-rwxr-xr-xcodecs/codec_lpc10.c1
-rwxr-xr-xcodecs/codec_speex.c1
-rwxr-xr-xcodecs/codec_ulaw.c1
10 files changed, 10 insertions, 0 deletions
diff --git a/codecs/codec_a_mu.c b/codecs/codec_a_mu.c
index d973bff3f..a3c8cc264 100755
--- a/codecs/codec_a_mu.c
+++ b/codecs/codec_a_mu.c
@@ -20,6 +20,7 @@
*
* \brief codec_a_mu.c - translate between alaw and ulaw directly
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_adpcm.c b/codecs/codec_adpcm.c
index f9a5faf60..187c42442 100755
--- a/codecs/codec_adpcm.c
+++ b/codecs/codec_adpcm.c
@@ -24,6 +24,7 @@
*
* \brief codec_adpcm.c - translate between signed linear and Dialogic ADPCM
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_alaw.c b/codecs/codec_alaw.c
index 13506721d..86e3a6592 100755
--- a/codecs/codec_alaw.c
+++ b/codecs/codec_alaw.c
@@ -20,6 +20,7 @@
*
* \brief codec_alaw.c - translate between signed linear and alaw
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_g723_1.c b/codecs/codec_g723_1.c
index 327a7f5b5..67d9b51b0 100755
--- a/codecs/codec_g723_1.c
+++ b/codecs/codec_g723_1.c
@@ -24,6 +24,7 @@
*
* \brief Translate between signed linear and G.723.1
*
+ * \ingroup codecs
*/
#define TYPE_HIGH 0x0
diff --git a/codecs/codec_g726.c b/codecs/codec_g726.c
index 527363de1..81ec1e1ac 100755
--- a/codecs/codec_g726.c
+++ b/codecs/codec_g726.c
@@ -24,6 +24,7 @@
*
* \brief codec_g726.c - translate between signed linear and ITU G.726-32kbps
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_gsm.c b/codecs/codec_gsm.c
index 4f52cc872..65800476e 100755
--- a/codecs/codec_gsm.c
+++ b/codecs/codec_gsm.c
@@ -23,6 +23,7 @@
*
* \brief Translate between signed linear and Global System for Mobile Communications (GSM)
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_ilbc.c b/codecs/codec_ilbc.c
index cf6a1b038..3f415c8dd 100755
--- a/codecs/codec_ilbc.c
+++ b/codecs/codec_ilbc.c
@@ -22,6 +22,7 @@
*
* \brief Translate between signed linear and Internet Low Bitrate Codec
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_lpc10.c b/codecs/codec_lpc10.c
index 599f1af4f..8eeecdef0 100755
--- a/codecs/codec_lpc10.c
+++ b/codecs/codec_lpc10.c
@@ -24,6 +24,7 @@
*
* \brief Translate between signed linear and LPC10 (Linear Predictor Code)
*
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_speex.c b/codecs/codec_speex.c
index ea21780d6..24a6704a9 100755
--- a/codecs/codec_speex.c
+++ b/codecs/codec_speex.c
@@ -24,6 +24,7 @@
* http://www.speex.org
* \note This work was motivated by Jeremy McNamara
* hacked to be configurable by anthm and bkw 9/28/2004
+ * \ingroup codecs
*/
#include <fcntl.h>
diff --git a/codecs/codec_ulaw.c b/codecs/codec_ulaw.c
index e437c47fd..79a1657b9 100755
--- a/codecs/codec_ulaw.c
+++ b/codecs/codec_ulaw.c
@@ -20,6 +20,7 @@
*
* \brief codec_ulaw.c - translate between signed linear and ulaw
*
+ * \ingroup codecs
*/
#include <fcntl.h>