summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-12-01 17:48:54 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-12-01 17:48:54 +0000
commitb2d115bce95e02589972ad4f07cb9a959ea02139 (patch)
tree819f25eead3b9ca0819cd8ec77acaff1206338f9
parent65c9bfbeadb20a2ddac5be1e0cd10bd13ce24798 (diff)
Formats need to be able to represent all 64 codec bits.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@231814 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--include/asterisk/mod_format.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/mod_format.h b/include/asterisk/mod_format.h
index 22238083d..08ee4cc42 100644
--- a/include/asterisk/mod_format.h
+++ b/include/asterisk/mod_format.h
@@ -44,7 +44,7 @@ struct ast_format {
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.