summaryrefslogtreecommitdiff
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-07-09 17:00:22 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-07-09 17:00:22 +0000
commitda8450323f9d391737bfeff42306905b27419942 (patch)
tree94a60fb241f8ef7f70f5dfb872376f7eac9ae450 /include/asterisk/channel.h
parent5f92aed2ba51c65e035a65bbbdba3ed1d268b893 (diff)
Kill some startup warnings and errors and make some messages more helpful in tracking down the source.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@275105 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/channel.h')
-rw-r--r--include/asterisk/channel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 0ea2cb11a..c61513065 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -753,10 +753,10 @@ struct ast_channel {
unsigned int flags; /*!< channel flags of AST_FLAG_ type */
int alertpipe[2];
format_t nativeformats; /*!< Kinds of data this channel can natively handle */
- format_t readformat; /*!< Requested read format */
- format_t writeformat; /*!< Requested write format */
- format_t rawreadformat; /*!< Raw read format */
- format_t rawwriteformat; /*!< Raw write format */
+ format_t readformat; /*!< Requested read format (after translation) */
+ format_t writeformat; /*!< Requested write format (after translation) */
+ format_t rawreadformat; /*!< Raw read format (before translation) */
+ format_t rawwriteformat; /*!< Raw write format (before translation) */
unsigned int emulate_dtmf_duration; /*!< Number of ms left to emulate DTMF for */
#ifdef HAVE_EPOLL
int epfd;