[svn-commits] mjordan: trunk r418738 - in /trunk: codecs/codec_adpcm.c main/format.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jul 15 18:29:34 CDT 2014


Author: mjordan
Date: Tue Jul 15 18:29:29 2014
New Revision: 418738

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=418738
Log:
codec_adpcm: Change description of codec "ADPCM" to "Dialogic ADPCM"

Technically, ADPCM is a method that can be applied to several codecs.
Asterisk's ADPCM codec is the Dialogic ADPCM or VOX codec.

See http://en.wikipedia.org/wiki/Dialogic_ADPCM for more information
about said codec.

Review: https://reviewboard.asterisk.org/r/3744

Modified:
    trunk/codecs/codec_adpcm.c
    trunk/main/format.c

Modified: trunk/codecs/codec_adpcm.c
URL: http://svnview.digium.com/svn/asterisk/trunk/codecs/codec_adpcm.c?view=diff&rev=418738&r1=418737&r2=418738
==============================================================================
--- trunk/codecs/codec_adpcm.c (original)
+++ trunk/codecs/codec_adpcm.c Tue Jul 15 18:29:29 2014
@@ -154,7 +154,7 @@
 /*
  * Adpcm
  *  Takes a signed linear signal and encodes it as ADPCM
- *  For more information see http://support.dialogic.com/appnotes/adpcm.pdf
+ *  For more information see http://en.wikipedia.org/wiki/Dialogic_ADPCM
  *
  * Results:
  *  Foo.

Modified: trunk/main/format.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/format.c?view=diff&rev=418738&r1=418737&r2=418738
==============================================================================
--- trunk/main/format.c (original)
+++ trunk/main/format.c Tue Jul 15 18:29:29 2014
@@ -1045,7 +1045,7 @@
 	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ULAW, 0), "ulaw", 8000, "G.711 u-law", 80, 10, 150, 10, 20, 0, 0);     /*!< codec_ulaw.c */
 	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ALAW, 0), "alaw", 8000, "G.711 A-law", 80, 10, 150, 10, 20, 0, 0);     /*!< codec_alaw.c */
 	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G726, 0), "g726", 8000, "G.726 RFC3551", 40, 10, 300, 10, 20, 0, 0);   /*!< codec_g726.c */
-	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ADPCM, 0), "adpcm" , 8000, "ADPCM", 40, 10, 300, 10, 20, 0, 0);        /*!< codec_adpcm.c */
+	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_ADPCM, 0), "adpcm" , 8000, "Dialogic ADPCM", 40, 10, 300, 10, 20, 0, 0);        /*!< codec_adpcm.c */
 	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_SLINEAR, 0), "slin", 8000, "16 bit Signed Linear PCM", 160, 10, 70, 10, 20, AST_SMOOTHER_FLAG_BE, 0); /*!< Signed linear */
 	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_LPC10, 0), "lpc10", 8000, "LPC10", 7, 20, 20, 20, 20, 0, 0);           /*!< codec_lpc10.c */
 	format_list_add_static(ast_format_set(&tmpfmt, AST_FORMAT_G729A, 0), "g729", 8000, "G.729A", 10, 10, 230, 10, 20, AST_SMOOTHER_FLAG_G729, 0);   /*!< Binary commercial distribution */




More information about the svn-commits mailing list