[Asterisk-cvs] asterisk/codecs adpcm_slin_ex.h, 1.1, 1.2 codec_a_mu.c, 1.10, 1.11 codec_adpcm.c, 1.20, 1.21 codec_alaw.c, 1.13, 1.14 codec_g723_1.c, 1.19, 1.20 codec_g726.c, 1.13, 1.14 codec_gsm.c, 1.19, 1.20 codec_ilbc.c, 1.12, 1.13 codec_lpc10.c, 1.17, 1.18 codec_speex.c, 1.19, 1.20 codec_ulaw.c, 1.14, 1.15 g723_slin_ex.h, 1.2, 1.3 g726_slin_ex.h, 1.1, 1.2 gsm_slin_ex.h, 1.2, 1.3 ilbc_slin_ex.h, 1.2, 1.3 log2comp.h, 1.3, 1.4 lpc10_slin_ex.h, 1.1, 1.2 slin_adpcm_ex.h, 1.1, 1.2 slin_g723_ex.h, 1.2, 1.3 slin_g726_ex.h, 1.1, 1.2 slin_gsm_ex.h, 1.2, 1.3 slin_ilbc_ex.h, 1.1, 1.2 slin_lpc10_ex.h, 1.1, 1.2 slin_speex_ex.h, 1.2, 1.3 slin_ulaw_ex.h, 1.1, 1.2 speex_slin_ex.h, 1.1, 1.2 ulaw_slin_ex.h, 1.1, 1.2

russell russell
Wed Oct 26 09:10:27 CDT 2005


Update of /usr/cvsroot/asterisk/codecs
In directory mongoose.digium.com:/tmp/cvs-serv15898/codecs

Modified Files:
	adpcm_slin_ex.h codec_a_mu.c codec_adpcm.c codec_alaw.c 
	codec_g723_1.c codec_g726.c codec_gsm.c codec_ilbc.c 
	codec_lpc10.c codec_speex.c codec_ulaw.c g723_slin_ex.h 
	g726_slin_ex.h gsm_slin_ex.h ilbc_slin_ex.h log2comp.h 
	lpc10_slin_ex.h slin_adpcm_ex.h slin_g723_ex.h slin_g726_ex.h 
	slin_gsm_ex.h slin_ilbc_ex.h slin_lpc10_ex.h slin_speex_ex.h 
	slin_ulaw_ex.h speex_slin_ex.h ulaw_slin_ex.h 
Log Message:
more doxygenification (issue #5513)


Index: adpcm_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/adpcm_slin_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- adpcm_slin_ex.h	20 Mar 2001 16:11:49 -0000	1.1
+++ adpcm_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,11 +1,11 @@
-/*
+/*! \file
  * adpcm_slin_ex.h --
  *
- *	4-bit ADPCM data, 20 milliseconds worth at 8 kHz.
+ * \brief	4-bit ADPCM data, 20 milliseconds worth at 8 kHz.
  *
  * Source: g723.example
  *
- * Copyright (C) 2001, Linux Support Services, Inc.
+ * Copyright (C) 2001-2005, Digium, Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Index: codec_a_mu.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_a_mu.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- codec_a_mu.c	14 Sep 2005 20:46:50 -0000	1.10
+++ codec_a_mu.c	26 Oct 2005 13:03:17 -0000	1.11
@@ -16,9 +16,9 @@
  * at the top of the source tree.
  */
 
-/* 
+/*! \file
  *
- * codec_a_mu.c - translate between alaw and ulaw directly
+ * \brief codec_a_mu.c - translate between alaw and ulaw directly
  *
  */
 

Index: codec_adpcm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_adpcm.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- codec_adpcm.c	14 Sep 2005 20:46:50 -0000	1.20
+++ codec_adpcm.c	26 Oct 2005 13:03:17 -0000	1.21
@@ -20,9 +20,9 @@
  * at the top of the source tree.
  */
 
-/* 
+/*! \file
  *
- * codec_adpcm.c - translate between signed linear and Dialogic ADPCM
+ * \brief codec_adpcm.c - translate between signed linear and Dialogic ADPCM
  * 
  */
 

Index: codec_alaw.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_alaw.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- codec_alaw.c	14 Sep 2005 20:46:50 -0000	1.13
+++ codec_alaw.c	26 Oct 2005 13:03:17 -0000	1.14
@@ -16,9 +16,9 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * codec_alaw.c - translate between signed linear and alaw
+ * \brief codec_alaw.c - translate between signed linear and alaw
  * 
  */
 
@@ -56,22 +56,20 @@
 #include "slin_ulaw_ex.h"
 #include "ulaw_slin_ex.h"
 
-/*
- * Private workspace for translating signed linear signals to alaw.
+/*!
+ * \brief Private workspace for translating signed linear signals to alaw.
  */
-
 struct alaw_encoder_pvt
 {
   struct ast_frame f;
-  char offset[AST_FRIENDLY_OFFSET];   /* Space to build offset */
-  unsigned char outbuf[BUFFER_SIZE];  /* Encoded alaw, two nibbles to a word */
+  char offset[AST_FRIENDLY_OFFSET];   /*!< Space to build offset */
+  unsigned char outbuf[BUFFER_SIZE];  /*!< Encoded alaw, two nibbles to a word */
   int tail;
 };
 
-/*
- * Private workspace for translating alaw signals to signed linear.
+/*!
+ * \brief Private workspace for translating alaw signals to signed linear.
  */
-
 struct alaw_decoder_pvt
 {
   struct ast_frame f;
@@ -81,8 +79,8 @@
   plc_state_t plc;
 };
 
-/*
- * alawToLin_New
+/*!
+ * \brief alawToLin_New
  *  Create a new instance of alaw_decoder_pvt.
  *
  * Results:
@@ -92,8 +90,7 @@
  *  None.
  */
 
-static struct ast_translator_pvt *
-alawtolin_new (void)
+static struct ast_translator_pvt * alawtolin_new (void)
 {
   struct alaw_decoder_pvt *tmp;
   tmp = malloc (sizeof (struct alaw_decoder_pvt));
@@ -108,8 +105,8 @@
   return (struct ast_translator_pvt *) tmp;
 }
 
-/*
- * LinToalaw_New
+/*!
+ * \brief LinToalaw_New
  *  Create a new instance of alaw_encoder_pvt.
  *
  * Results:
@@ -119,8 +116,7 @@
  *  None.
  */
 
-static struct ast_translator_pvt *
-lintoalaw_new (void)
+static struct ast_translator_pvt * lintoalaw_new (void)
 {
   struct alaw_encoder_pvt *tmp;
   tmp = malloc (sizeof (struct alaw_encoder_pvt));
@@ -134,8 +130,8 @@
   return (struct ast_translator_pvt *) tmp;
 }
 
-/*
- * alawToLin_FrameIn
+/*!
+ * \brief alawToLin_FrameIn
  *  Fill an input buffer with packed 4-bit alaw values if there is room
  *  left.
  *
@@ -181,8 +177,8 @@
   return 0;
 }
 
-/*
- * alawToLin_FrameOut
+/*!
+ * \brief alawToLin_FrameOut
  *  Convert 4-bit alaw encoded signals to 16-bit signed linear.
  *
  * Results:
@@ -193,8 +189,7 @@
  *  None.
  */
 
-static struct ast_frame *
-alawtolin_frameout (struct ast_translator_pvt *pvt)
+static struct ast_frame * alawtolin_frameout (struct ast_translator_pvt *pvt)
 {
   struct alaw_decoder_pvt *tmp = (struct alaw_decoder_pvt *) pvt;
 
@@ -213,8 +208,8 @@
   return &tmp->f;
 }
 
-/*
- * LinToalaw_FrameIn
+/*!
+ * \brief LinToalaw_FrameIn
  *  Fill an input buffer with 16-bit signed linear PCM values.
  *
  * Results:
@@ -224,8 +219,7 @@
  *  tmp->tail is number of signal values in the input buffer.
  */
 
-static int
-lintoalaw_framein (struct ast_translator_pvt *pvt, struct ast_frame *f)
+static int lintoalaw_framein (struct ast_translator_pvt *pvt, struct ast_frame *f)
 {
   struct alaw_encoder_pvt *tmp = (struct alaw_encoder_pvt *) pvt;
   int x;
@@ -242,8 +236,8 @@
   return 0;
 }
 
-/*
- * LinToalaw_FrameOut
+/*!
+ * \brief LinToalaw_FrameOut
  *  Convert a buffer of raw 16-bit signed linear PCM to a buffer
  *  of 4-bit alaw packed two to a byte (Big Endian).
  *
@@ -254,8 +248,7 @@
  *  Leftover inbuf data gets packed, tail gets updated.
  */
 
-static struct ast_frame *
-lintoalaw_frameout (struct ast_translator_pvt *pvt)
+static struct ast_frame * lintoalaw_frameout (struct ast_translator_pvt *pvt)
 {
   struct alaw_encoder_pvt *tmp = (struct alaw_encoder_pvt *) pvt;
   
@@ -274,12 +267,11 @@
 }
 
 
-/*
- * alawToLin_Sample
+/*!
+ * \brief alawToLin_Sample
  */
 
-static struct ast_frame *
-alawtolin_sample (void)
+static struct ast_frame * alawtolin_sample (void)
 {
   static struct ast_frame f;
   f.frametype = AST_FRAME_VOICE;
@@ -293,12 +285,11 @@
   return &f;
 }
 
-/*
- * LinToalaw_Sample
+/*!
+ * \brief LinToalaw_Sample
  */
 
-static struct ast_frame *
-lintoalaw_sample (void)
+static struct ast_frame * lintoalaw_sample (void)
 {
   static struct ast_frame f;
   f.frametype = AST_FRAME_VOICE;
@@ -313,8 +304,8 @@
   return &f;
 }
 
-/*
- * alaw_Destroy
+/*!
+ * \brief alaw_Destroy
  *  Destroys a private workspace.
  *
  * Results:
@@ -324,16 +315,15 @@
  *  None.
  */
 
-static void
-alaw_destroy (struct ast_translator_pvt *pvt)
+static void alaw_destroy (struct ast_translator_pvt *pvt)
 {
   free (pvt);
   localusecnt--;
   ast_update_use_count ();
 }
 
-/*
- * The complete translator for alawToLin.
+/*!
+ * \brief The complete translator for alawToLin.
  */
 
 static struct ast_translator alawtolin = {
@@ -348,8 +338,8 @@
   alawtolin_sample
 };
 
-/*
- * The complete translator for LinToalaw.
+/*!
+ * \brief The complete translator for LinToalaw.
  */
 
 static struct ast_translator lintoalaw = {
@@ -364,8 +354,7 @@
   lintoalaw_sample
 };
 
-static void 
-parse_config(void)
+static void parse_config(void)
 {
   struct ast_config *cfg;
   struct ast_variable *var;
@@ -385,15 +374,13 @@
   }
 }
 
-int
-reload(void)
+int reload(void)
 {
   parse_config();
   return 0;
 }
 
-int
-unload_module (void)
+int unload_module (void)
 {
   int res;
   ast_mutex_lock (&localuser_lock);
@@ -406,8 +393,7 @@
   return res;
 }
 
-int
-load_module (void)
+int load_module (void)
 {
   int res;
   parse_config();
@@ -423,22 +409,19 @@
  * Return a description of this module.
  */
 
-char *
-description (void)
+char * description (void)
 {
   return tdesc;
 }
 
-int
-usecount (void)
+int usecount (void)
 {
   int res;
   STANDARD_USECOUNT (res);
   return res;
 }
 
-char *
-key ()
+char * key ()
 {
   return ASTERISK_GPL_KEY;
 }

Index: codec_g723_1.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_g723_1.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- codec_g723_1.c	14 Sep 2005 20:46:50 -0000	1.19
+++ codec_g723_1.c	26 Oct 2005 13:03:17 -0000	1.20
@@ -20,9 +20,9 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Translate between signed linear and G.723.1
+ * \brief Translate between signed linear and G.723.1
  *
  */
 

Index: codec_g726.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_g726.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- codec_g726.c	14 Sep 2005 20:46:50 -0000	1.13
+++ codec_g726.c	26 Oct 2005 13:03:17 -0000	1.14
@@ -20,9 +20,9 @@
  */
 
 
-/*
+/*! \file
  *
- * codec_g726.c - translate between signed linear and ITU G.726-32kbps
+ * \brief codec_g726.c - translate between signed linear and ITU G.726-32kbps
  *
  */
 

Index: codec_gsm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_gsm.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- codec_gsm.c	14 Sep 2005 20:46:50 -0000	1.19
+++ codec_gsm.c	26 Oct 2005 13:03:17 -0000	1.20
@@ -19,9 +19,9 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Translate between signed linear and Global System for Mobile Communications (GSM)
+ * \brief Translate between signed linear and Global System for Mobile Communications (GSM)
  *
  */
 

Index: codec_ilbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_ilbc.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- codec_ilbc.c	14 Sep 2005 20:46:50 -0000	1.12
+++ codec_ilbc.c	26 Oct 2005 13:03:17 -0000	1.13
@@ -18,9 +18,9 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Translate between signed linear and Internet Low Bitrate Codec
+ * \brief Translate between signed linear and Internet Low Bitrate Codec
  * 
  */
 

Index: codec_lpc10.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_lpc10.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- codec_lpc10.c	14 Sep 2005 20:46:50 -0000	1.17
+++ codec_lpc10.c	26 Oct 2005 13:03:17 -0000	1.18
@@ -20,9 +20,9 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Translate between signed linear and LPC10 (Linear Predictor Code)
+ * \brief Translate between signed linear and LPC10 (Linear Predictor Code)
  *
  */
 

Index: codec_speex.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_speex.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- codec_speex.c	14 Sep 2005 20:46:50 -0000	1.19
+++ codec_speex.c	26 Oct 2005 13:03:17 -0000	1.20
@@ -5,8 +5,6 @@
  *
  * Mark Spencer <markster at digium.com>
  *
- * This work was motivated by Jeremy McNamara 
- * hacked to be configurable by anthm and bkw 9/28/2004
  *
  * See http://www.asterisk.org for more information about
  * the Asterisk project. Please do not directly contact
@@ -19,10 +17,13 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Translate between signed linear and Speex (Open Codec)
+ * \brief Translate between signed linear and Speex (Open Codec)
  *
+ * http://www.speex.org
+ * \note This work was motivated by Jeremy McNamara 
+ * hacked to be configurable by anthm and bkw 9/28/2004
  */
 
 #include <fcntl.h>

Index: codec_ulaw.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_ulaw.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- codec_ulaw.c	14 Sep 2005 20:46:50 -0000	1.14
+++ codec_ulaw.c	26 Oct 2005 13:03:17 -0000	1.15
@@ -16,9 +16,9 @@
  * at the top of the source tree.
  */
 
-/* 
+/*! \file
  *
- * codec_ulaw.c - translate between signed linear and ulaw
+ * \brief codec_ulaw.c - translate between signed linear and ulaw
  * 
  */
 

Index: g723_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/g723_slin_ex.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- g723_slin_ex.h	11 Dec 1999 20:09:44 -0000	1.2
+++ g723_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.3
@@ -1,9 +1,9 @@
-/*
-  * 8-bit raw data
+/*! \file
+  * \brief 8-bit raw data
   *
   * Source: g723.example
   *
-  * Copyright (C) 1999, Mark Spencer
+  * Copyright (C) 1999-2005, Digium, Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: g726_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/g726_slin_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- g726_slin_ex.h	25 Feb 2004 04:10:32 -0000	1.1
+++ g726_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,11 +1,11 @@
-/*
+/*! \file
  * adpcm_slin_ex.h --
  *
- *	4-bit G.726 data, 20 milliseconds worth at 8 kHz.
+ * \brief	4-bit G.726 data, 20 milliseconds worth at 8 kHz.
  *
  * Source: g726.example
  *
- * Copyright (C) 2001, Linux Support Services, Inc.
+ * Copyright (C) 2001-2005, Digium, Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Index: gsm_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/gsm_slin_ex.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gsm_slin_ex.h	11 Dec 1999 20:09:44 -0000	1.2
+++ gsm_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.3
@@ -1,9 +1,9 @@
-/*
-  * 8-bit raw data
+/*! \file
+  * \brief 8-bit raw data
   *
   * Source: gsm.example
   *
-  * Copyright (C) 1999, Mark Spencer
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: ilbc_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/ilbc_slin_ex.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ilbc_slin_ex.h	17 Apr 2003 15:42:01 -0000	1.2
+++ ilbc_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.3
@@ -1,9 +1,9 @@
-/*
-  * Raw 8-bit data
+/*! \file
+  * \brief Raw 8-bit data
   *
   * Source: ilbc.out
   *
-  * Copyright (C) 1999, Mark Spencer and Linux Support Services
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: log2comp.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/log2comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- log2comp.h	15 May 2005 03:18:16 -0000	1.3
+++ log2comp.h	26 Oct 2005 13:03:17 -0000	1.4
@@ -1,10 +1,10 @@
-/* log2comp.h - various base 2 log computation versions
+/*! \file \brief log2comp.h - various base 2 log computation versions
  * 
  * Asterisk -- A telephony toolkit for Linux.
  *
- * Implementation by Alex Volkov <codepro at usa.net>
+ * \author Alex Volkov <codepro at usa.net>
  *
- * Copyright (c) 2004 - 2005, Digium
+ * Copyright (c) 2004 - 2005, Digium Inc.
  *
  * This program is free software, distributed under the terms of
  * the GNU General Public License

Index: lpc10_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/lpc10_slin_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- lpc10_slin_ex.h	5 Jan 2000 17:22:42 -0000	1.1
+++ lpc10_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,9 +1,9 @@
-/*
-  * 8-bit raw data
+/*! \file
+  * \brief 8-bit raw data
   *
   * Source: example.lpc10
   *
-  * Copyright (C) 1999, Mark Spencer and Linux Support Services
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: slin_adpcm_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_adpcm_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- slin_adpcm_ex.h	20 Mar 2001 16:13:34 -0000	1.1
+++ slin_adpcm_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,11 +1,11 @@
-/*
- * slin_adpcm_ex.h --
+/*! \file
+ * \brief slin_adpcm_ex.h --
  *
  *	Signed 16-bit audio data, 10 milliseconds worth at 8 kHz.
  *
  * Source: g723.example
  *
- * Copyright (C) 2001, Linux Support Services, Inc.
+ * Copyright (C) 2001-2005, Digium Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Index: slin_g723_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_g723_ex.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- slin_g723_ex.h	11 Dec 1999 20:09:44 -0000	1.2
+++ slin_g723_ex.h	26 Oct 2005 13:03:17 -0000	1.3
@@ -1,9 +1,9 @@
-/*
-  * Signed 16-bit audio data
+/*! \file
+  * \brief Signed 16-bit audio data
   *
   * Source: g723.example
   *
-  * Copyright (C) 1999, Mark Spencer
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: slin_g726_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_g726_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- slin_g726_ex.h	25 Feb 2004 04:10:32 -0000	1.1
+++ slin_g726_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,11 +1,11 @@
-/*
- * slin_adpcm_ex.h --
+/*! \file
+ * \brief slin_adpcm_ex.h --
  *
  *	Signed 16-bit audio data, 10 milliseconds worth at 8 kHz.
  *
  * Source: g726.example
  *
- * Copyright (C) 2001, Linux Support Services, Inc.
+ * Copyright (C) 2001-2005, Digium Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Index: slin_gsm_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_gsm_ex.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- slin_gsm_ex.h	11 Dec 1999 20:09:44 -0000	1.2
+++ slin_gsm_ex.h	26 Oct 2005 13:03:17 -0000	1.3
@@ -1,9 +1,9 @@
-/*
-  * Signed 16-bit audio data
+/*! \file
+  * \brief Signed 16-bit audio data
   *
   * Source: gsm.example
   *
-  * Copyright (C) 1999, Mark Spencer
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: slin_ilbc_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_ilbc_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- slin_ilbc_ex.h	15 Apr 2003 04:36:52 -0000	1.1
+++ slin_ilbc_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,9 +1,9 @@
-/*
-  * Signed 16-bit audio data
+/*! \file
+  * \brief Signed 16-bit audio data
   *
   * Source: gsm.example
   *
-  * Copyright (C) 1999, Mark Spencer
+  * Copyright (C) 1999-2005, Digium Inc
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: slin_lpc10_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_lpc10_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- slin_lpc10_ex.h	5 Jan 2000 17:22:42 -0000	1.1
+++ slin_lpc10_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,9 +1,9 @@
-/*
-  * Signed 16-bit audio data
+/*! \file
+  * \brief Signed 16-bit audio data
   *
   * Source: example.slin
   *
-  * Copyright (C) 1999, Mark Spencer and Linux Support Services
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: slin_speex_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_speex_ex.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- slin_speex_ex.h	26 Aug 2005 20:14:06 -0000	1.2
+++ slin_speex_ex.h	26 Oct 2005 13:03:17 -0000	1.3
@@ -1,9 +1,9 @@
-/*
- * Signed 16-bit audio data, 500ms of speech at 8kHz to ensure no DTX triggered
+/*! \file
+ * \brief Signed 16-bit audio data, 500ms of speech at 8kHz to ensure no DTX triggered
  *
  * Source: speex.example
  *
- * Copyright (C) 1999, Mark Spencer
+ * Copyright (C) 1999-2005, Digium Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Index: slin_ulaw_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/slin_ulaw_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- slin_ulaw_ex.h	7 Apr 2001 01:32:10 -0000	1.1
+++ slin_ulaw_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,11 +1,11 @@
-/*
- * slin_ulaw_ex.h --
+/*! \file
+ * \brief slin_ulaw_ex.h --
  *
  *	Signed 16-bit audio data, 10 milliseconds worth at 8 kHz.
  *
  * Source: g723.example
  *
- * Copyright (C) 2001, Linux Support Services, Inc.
+ * Copyright (C) 2001-2005, Digium Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Index: speex_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/speex_slin_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- speex_slin_ex.h	29 Aug 2002 22:48:16 -0000	1.1
+++ speex_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,9 +1,9 @@
-/*
-  * Random Data data
+/*! \file
+  * \brief Random Data data
   *
   * Source: speex.raw
   *
-  * Copyright (C) 1999, Mark Spencer and Linux Support Services
+  * Copyright (C) 1999-2005, Digium Inc.
   *
   * Distributed under the terms of the GNU General Public License
   *

Index: ulaw_slin_ex.h
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/ulaw_slin_ex.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ulaw_slin_ex.h	7 Apr 2001 01:32:10 -0000	1.1
+++ ulaw_slin_ex.h	26 Oct 2005 13:03:17 -0000	1.2
@@ -1,11 +1,11 @@
-/*
- * ulaw_slin_ex.h --
+/*! \file
+ * \brief ulaw_slin_ex.h --
  *
  *	4-bit ADPCM data, 20 milliseconds worth at 8 kHz.
  *
  * Source: g723.example
  *
- * Copyright (C) 2001, Linux Support Services, Inc.
+ * Copyright (C) 2001-2005, Digium Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *




More information about the svn-commits mailing list