[svn-commits] tilghman: trunk r231814 - /trunk/include/asterisk/mod_format.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Dec 1 11:48:56 CST 2009


Author: tilghman
Date: Tue Dec  1 11:48:54 2009
New Revision: 231814

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=231814
Log:
Formats need to be able to represent all 64 codec bits.

Modified:
    trunk/include/asterisk/mod_format.h

Modified: trunk/include/asterisk/mod_format.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/mod_format.h?view=diff&rev=231814&r1=231813&r2=231814
==============================================================================
--- trunk/include/asterisk/mod_format.h (original)
+++ trunk/include/asterisk/mod_format.h Tue Dec  1 11:48:54 2009
@@ -44,7 +44,7 @@
 	char name[80];		/*!< Name of format */
 	char exts[80];		/*!< Extensions (separated by | if more than one) 
 	    			this format can read.  First is assumed for writing (e.g. .mp3) */
-	int format;		/*!< Format of frames it uses/provides (one only) */
+	format_t format;		/*!< Format of frames it uses/provides (one only) */
 	/*! 
 	 * \brief Prepare an input stream for playback. 
 	 * \return 0 on success, -1 on error.




More information about the svn-commits mailing list