Update of /usr/cvsroot/asterisk/formats
In directory mongoose.digium.com:/tmp/cvs-serv2786/formats
Modified Files:
format_au.c format_g723.c format_g726.c format_g729.c
format_gsm.c format_h263.c format_ilbc.c format_jpeg.c
format_ogg_vorbis.c format_pcm.c format_pcm_alaw.c
format_sln.c format_vox.c format_wav.c format_wav_gsm.c
Log Message:
issue #5605
Index: format_au.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_au.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- format_au.c 26 Oct 2005 13:03:17 -0000 1.7
+++ format_au.c 6 Nov 2005 15:09:47 -0000 1.8
@@ -15,10 +15,14 @@
* at the top of the source tree.
*/
-/*! \file
+/*!
+ * \file
*
* \brief Work with Sun Microsystems AU format.
- *
+ *
+ * signed linear
+ * \arg File extension: au
+ * \ingroup formats
*/
#include <stdlib.h>
Index: format_g723.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_g723.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- format_g723.c 26 Oct 2005 13:03:17 -0000 1.24
+++ format_g723.c 6 Nov 2005 15:09:47 -0000 1.25
@@ -16,10 +16,13 @@
* at the top of the source tree.
*/
-/*! \file
+/*!
+ * \file
*
- * \brief Old-style G.723 frame/timestamp format.
+ * \brief Old-style G.723.1 frame/timestamp format.
*
+ * \arg Extensions: g723, g723sf
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_g726.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_g726.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- format_g726.c 26 Oct 2005 13:03:17 -0000 1.15
+++ format_g726.c 6 Nov 2005 15:09:47 -0000 1.16
@@ -20,6 +20,12 @@
*
* \brief Headerless G.726 (16/24/32/40kbps) data format for Asterisk.
*
+ * File name extensions:
+ * \arg 40 kbps: g726-40
+ * \arg 32 kbps: g726-32
+ * \arg 24 kbps: g726-24
+ * \arg 16 kbps: g726-16
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_g729.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_g729.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- format_g729.c 26 Oct 2005 13:03:17 -0000 1.24
+++ format_g729.c 6 Nov 2005 15:09:47 -0000 1.25
@@ -19,7 +19,11 @@
/*! \file
*
* \brief Save to raw, headerless G729 data.
- *
+ * \note This is not an encoder/decoder. The codec fo g729 is only
+ * available with a commercial license from Digium, due to patent
+ * restrictions. Check http://www.digium.com for information.
+ * \arg Extensions: g729
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_gsm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_gsm.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- format_gsm.c 26 Oct 2005 13:03:17 -0000 1.29
+++ format_gsm.c 6 Nov 2005 15:09:47 -0000 1.30
@@ -19,7 +19,8 @@
/*! \file
*
* \brief Save to raw, headerless GSM data.
- *
+ * \arg File name extension: gsm
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_h263.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_h263.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- format_h263.c 26 Oct 2005 13:03:17 -0000 1.17
+++ format_h263.c 6 Nov 2005 15:09:47 -0000 1.18
@@ -19,7 +19,8 @@
/*! \file
*
* \brief Save to raw, headerless h263 data.
- *
+ * \arg File name extension: h263
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_ilbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_ilbc.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- format_ilbc.c 26 Oct 2005 13:03:17 -0000 1.17
+++ format_ilbc.c 6 Nov 2005 15:09:47 -0000 1.18
@@ -21,7 +21,8 @@
/*! \file
*
* \brief Save to raw, headerless iLBC data.
- *
+ * \arg File name extension: ilbc
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_jpeg.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_jpeg.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- format_jpeg.c 26 Oct 2005 13:03:17 -0000 1.12
+++ format_jpeg.c 6 Nov 2005 15:09:47 -0000 1.13
@@ -20,6 +20,8 @@
*
* \brief JPEG File format support.
*
+ * \arg File name extension: jpeg, jpg
+ * \ingroup formats
*/
#include <sys/types.h>
Index: format_ogg_vorbis.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_ogg_vorbis.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- format_ogg_vorbis.c 26 Oct 2005 13:03:17 -0000 1.5
+++ format_ogg_vorbis.c 6 Nov 2005 15:09:47 -0000 1.6
@@ -17,7 +17,8 @@
/*! \file
*
* \brief OGG/Vorbis streams.
- *
+ * \arg File name extension: ogg
+ * \ingroup formats
*/
#include <netinet/in.h>
Index: format_pcm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_pcm.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- format_pcm.c 26 Oct 2005 13:03:17 -0000 1.25
+++ format_pcm.c 6 Nov 2005 15:09:47 -0000 1.26
@@ -19,7 +19,9 @@
/*! \file
*
* \brief Flat, binary, ulaw PCM file format.
+ * \arg File name extension: pcm, ulaw, ul, mu
*
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_pcm_alaw.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_pcm_alaw.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- format_pcm_alaw.c 26 Oct 2005 13:03:17 -0000 1.23
+++ format_pcm_alaw.c 6 Nov 2005 15:09:47 -0000 1.24
@@ -19,7 +19,8 @@
/*! \file
*
* \brief Flat, binary, alaw PCM file format.
- *
+ * \arg File name extensions: alaw, al
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_sln.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_sln.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- format_sln.c 26 Oct 2005 13:03:17 -0000 1.15
+++ format_sln.c 6 Nov 2005 15:09:47 -0000 1.16
@@ -18,7 +18,8 @@
/*! \file
*
* \brief RAW SLINEAR Format
- *
+ * \arg File name extensions: sln, raw
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_vox.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_vox.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- format_vox.c 26 Oct 2005 13:03:17 -0000 1.26
+++ format_vox.c 6 Nov 2005 15:09:47 -0000 1.27
@@ -19,7 +19,9 @@
/*! \file
*
* \brief Flat, binary, ADPCM vox file format.
+ * \arg File name extensions: vox
*
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_wav.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_wav.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- format_wav.c 26 Oct 2005 13:03:17 -0000 1.29
+++ format_wav.c 6 Nov 2005 15:09:47 -0000 1.30
@@ -19,7 +19,9 @@
/*! \file
*
* \brief Work with WAV in the proprietary Microsoft format.
- *
+ * Microsoft WAV format (8000hz Signed Linear)
+ * \arg File name extension: wav (lower case)
+ * \ingroup formats
*/
#include <unistd.h>
Index: format_wav_gsm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_wav_gsm.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- format_wav_gsm.c 26 Oct 2005 13:03:17 -0000 1.38
+++ format_wav_gsm.c 6 Nov 2005 15:09:47 -0000 1.39
@@ -20,6 +20,11 @@
*
* \brief Save GSM in the proprietary Microsoft format.
*
+ * Microsoft WAV format (Proprietary GSM)
+ * \arg File name extension: WAV,wav49 (Upper case WAV, lower case is another
format)
+ * This format can be played on Windows systems, used for
+ * e-mail attachments mainly.
+ * \ingroup formats
*/
#include <unistd.h>
_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs