[svn-commits] qwell: branch qwell/codec_consistency_fix r147261 - /team/qwell/codec_consist...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 7 12:42:47 CDT 2008


Author: qwell
Date: Tue Oct  7 12:42:46 2008
New Revision: 147261

URL: http://svn.digium.com/view/asterisk?view=rev&rev=147261
Log:
Fix some silliness.  These types all need to be fixed up too..

Modified:
    team/qwell/codec_consistency_fix/codecs/ex_adpcm.h
    team/qwell/codec_consistency_fix/codecs/ex_alaw.h
    team/qwell/codec_consistency_fix/codecs/ex_g722.h
    team/qwell/codec_consistency_fix/codecs/ex_g726.h
    team/qwell/codec_consistency_fix/codecs/ex_gsm.h
    team/qwell/codec_consistency_fix/codecs/ex_ilbc.h
    team/qwell/codec_consistency_fix/codecs/ex_lpc10.h
    team/qwell/codec_consistency_fix/codecs/ex_speex.h
    team/qwell/codec_consistency_fix/codecs/ex_ulaw.h

Modified: team/qwell/codec_consistency_fix/codecs/ex_adpcm.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_adpcm.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_adpcm.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_adpcm.h Tue Oct  7 12:42:46 2008
@@ -1,7 +1,5 @@
 /*! \file
  * \brief 4-bit ADPCM data
- *
- * Source: 
  *
  * Copyright (C) 2008, Digium, Inc.
  *

Modified: team/qwell/codec_consistency_fix/codecs/ex_alaw.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_alaw.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_alaw.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_alaw.h Tue Oct  7 12:42:46 2008
@@ -1,9 +1,7 @@
 /*! \file
- * \brief 4-bit ADPCM data
+ * \brief 8-bit data
  *
- * Source: 
- *
- * Copyright (C) 2008, Digium Inc.
+ * Copyright (C) 2008, Digium, Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Modified: team/qwell/codec_consistency_fix/codecs/ex_g722.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_g722.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_g722.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_g722.h Tue Oct  7 12:42:46 2008
@@ -1,9 +1,7 @@
 /*! \file
- * \brief 4-bit ADPCM data
+ * \brief 16-bit data
  *
- * Source: 
- *
- * Copyright (C) 2008, Digium Inc.
+ * Copyright (C) 2008, Digium, Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *

Modified: team/qwell/codec_consistency_fix/codecs/ex_g726.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_g726.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_g726.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_g726.h Tue Oct  7 12:42:46 2008
@@ -1,7 +1,5 @@
 /*! \file
  * \brief 4-bit G.726 data
- *
- * Source: 
  *
  * Copyright (C) 2008, Digium, Inc.
  *

Modified: team/qwell/codec_consistency_fix/codecs/ex_gsm.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_gsm.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_gsm.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_gsm.h Tue Oct  7 12:42:46 2008
@@ -1,13 +1,11 @@
 /*! \file
-  * \brief 8-bit raw data
-  *
-  * Source: 
-  *
-  * Copyright (C) 1999-2005, Digium Inc.
-  *
-  * Distributed under the terms of the GNU General Public License
-  *
-  */
+ * \brief 8-bit raw data
+ *
+ * Copyright (C) 2008, Digium, Inc.
+ *
+ * Distributed under the terms of the GNU General Public License
+ *
+ */
 
 static unsigned char ex_gsm[] = {
 	0xda, 0xa6, 0xac, 0x2d, 0xa3, 0x50, 0x00, 0x49, 0x24, 0x92, 

Modified: team/qwell/codec_consistency_fix/codecs/ex_ilbc.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_ilbc.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_ilbc.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_ilbc.h Tue Oct  7 12:42:46 2008
@@ -1,13 +1,11 @@
 /*! \file
-  * \brief Raw 8-bit data
-  *
-  * Source: 
-  *
-  * Copyright (C) 2008, Digium Inc.
-  *
-  * Distributed under the terms of the GNU General Public License
-  *
-  */
+ * \brief Raw 8-bit data
+ *
+ * Copyright (C) 2008, Digium, Inc.
+ *
+ * Distributed under the terms of the GNU General Public License
+ *
+ */
 
 static unsigned char ex_ilbc[] = {
 	0xff, 0xa0, 0xff, 0xfa, 0x0f, 0x60, 0x12, 0x11, 0xa2, 0x47, 

Modified: team/qwell/codec_consistency_fix/codecs/ex_lpc10.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_lpc10.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_lpc10.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_lpc10.h Tue Oct  7 12:42:46 2008
@@ -1,13 +1,11 @@
 /*! \file
-  * \brief
-  *
-  * Source: 
-  *
-  * Copyright (C) 2008, Digium Inc.
-  *
-  * Distributed under the terms of the GNU General Public License
-  *
-  */
+ * \brief
+ *
+ * Copyright (C) 2008, Digium, Inc.
+ *
+ * Distributed under the terms of the GNU General Public License
+ *
+ */
 
 static unsigned char ex_lpc10[] = {
 	0x01, 0x08, 0x31, 0x08, 0x31, 0x80, 0x30,

Modified: team/qwell/codec_consistency_fix/codecs/ex_speex.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_speex.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_speex.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_speex.h Tue Oct  7 12:42:46 2008
@@ -1,13 +1,11 @@
 /*! \file
-  * \brief Random Data data
-  *
-  * Source: 
-  *
-  * Copyright (C) 2008, Digium Inc.
-  *
-  * Distributed under the terms of the GNU General Public License
-  *
-  */
+ * \brief Random Data
+ *
+ * Copyright (C) 2008, Digium, Inc.
+ *
+ * Distributed under the terms of the GNU General Public License
+ *
+ */
 
 static unsigned char ex_speex[] = {
 	0x2e, 0x8e, 0x0f, 0x9a, 0x20, 0000, 0x01, 0x7f, 0xff, 0xff, 

Modified: team/qwell/codec_consistency_fix/codecs/ex_ulaw.h
URL: http://svn.digium.com/view/asterisk/team/qwell/codec_consistency_fix/codecs/ex_ulaw.h?view=diff&rev=147261&r1=147260&r2=147261
==============================================================================
--- team/qwell/codec_consistency_fix/codecs/ex_ulaw.h (original)
+++ team/qwell/codec_consistency_fix/codecs/ex_ulaw.h Tue Oct  7 12:42:46 2008
@@ -1,9 +1,7 @@
 /*! \file
- * \brief 4-bit ADPCM data
+ * \brief 8-bit data
  *
- * Source: 
- *
- * Copyright (C) 2008, Digium Inc.
+ * Copyright (C) 2008, Digium, Inc.
  *
  * Distributed under the terms of the GNU General Public License
  *




More information about the svn-commits mailing list