aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-31 16:07:50 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-31 16:07:50 +0000
commitcb916384a27d9d5e54da89a6263ec011bc7313d2 (patch)
treed42a3e6f8aec9c0d6d845ad5747e61d203f32dfe
parent0a1b86d19bd5235a4c44d87d263a4f2dd20a6f37 (diff)
Remove old whisper remnants from channel.h
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@87815 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/channel.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 6c5376b15..15af0c722 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -540,8 +540,6 @@ enum {
AST_FLAG_IN_AUTOLOOP = (1 << 9),
/*! This is an outgoing call */
AST_FLAG_OUTGOING = (1 << 10),
- /*! This channel is being whispered on */
- AST_FLAG_WHISPER = (1 << 11),
/*! A DTMF_BEGIN frame has been read from this channel, but not yet an END */
AST_FLAG_IN_DTMF = (1 << 12),
/*! A DTMF_END was received when not IN_DTMF, so the length of the digit is
@@ -1442,39 +1440,6 @@ const char *channelreloadreason2txt(enum channelreloadreason reason);
struct ast_variable *ast_channeltype_list(void);
/*!
- \brief Begin 'whispering' onto a channel
- \param chan The channel to whisper onto
- \return 0 for success, non-zero for failure
-
- This function will add a whisper buffer onto a channel and set a flag
- causing writes to the channel to reduce the volume level of the written
- audio samples, and then to mix in audio from the whisper buffer if it
- is available.
-
- \note Note: This function performs no locking; you must hold the channel's lock before
- calling this function.
- */
-int ast_channel_whisper_start(struct ast_channel *chan);
-
-/*!
- \brief Feed an audio frame into the whisper buffer on a channel
- \param chan The channel to whisper onto
- \param f The frame to to whisper onto chan
- \return 0 for success, non-zero for failure
- */
-int ast_channel_whisper_feed(struct ast_channel *chan, struct ast_frame *f);
-
-/*!
- \brief Stop 'whispering' onto a channel
- \param chan The channel to whisper onto
- \return 0 for success, non-zero for failure
-
- Note: This function performs no locking; you must hold the channel's lock before
- calling this function.
- */
-void ast_channel_whisper_stop(struct ast_channel *chan);
-
-/*!
\brief return an english explanation of the code returned thru __ast_request_and_dial's 'outstate' argument
\param reason The integer argument, usually taken from AST_CONTROL_ macros
\return char pointer explaining the code