aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/frame.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-09 16:24:07 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-09 16:24:07 +0000
commitf1898a71f11389c69333a2d3ab5ceb5ca4f252d0 (patch)
treecbee3b6bd1df69ca7b222c47ef446c7f204283a0 /include/asterisk/frame.h
parent9a07e634fda5a8805e32953516a6271b1fb73904 (diff)
various doxygen fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@26170 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/frame.h')
-rw-r--r--include/asterisk/frame.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index 09d8674b2..71e4ca908 100644
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -241,24 +241,24 @@ extern struct ast_frame ast_null_frame;
#define AST_FORMAT_VIDEO_MASK (((1 << 25)-1) & ~(AST_FORMAT_AUDIO_MASK))
enum ast_control_frame_type {
- AST_CONTROL_HANGUP = 1, /*! Other end has hungup */
- AST_CONTROL_RING = 2, /*! Local ring */
- AST_CONTROL_RINGING = 3, /*! Remote end is ringing */
- AST_CONTROL_ANSWER = 4, /*! Remote end has answered */
- AST_CONTROL_BUSY = 5, /*! Remote end is busy */
- AST_CONTROL_TAKEOFFHOOK = 6, /*! Make it go off hook */
- AST_CONTROL_OFFHOOK = 7, /*! Line is off hook */
- AST_CONTROL_CONGESTION = 8, /*! Congestion (circuits busy) */
- AST_CONTROL_FLASH = 9, /*! Flash hook */
- AST_CONTROL_WINK = 10, /*! Wink */
- AST_CONTROL_OPTION = 11, /*! Set a low-level option */
- AST_CONTROL_RADIO_KEY = 12, /*! Key Radio */
- AST_CONTROL_RADIO_UNKEY = 13, /*! Un-Key Radio */
- AST_CONTROL_PROGRESS = 14, /*! Indicate PROGRESS */
- AST_CONTROL_PROCEEDING = 15, /*! Indicate CALL PROCEEDING */
- AST_CONTROL_HOLD = 16, /*! Indicate call is placed on hold */
- AST_CONTROL_UNHOLD = 17, /*! Indicate call is left from hold */
- AST_CONTROL_VIDUPDATE = 18, /*! Indicate video frame update */
+ AST_CONTROL_HANGUP = 1, /*!< Other end has hungup */
+ AST_CONTROL_RING = 2, /*!< Local ring */
+ AST_CONTROL_RINGING = 3, /*!< Remote end is ringing */
+ AST_CONTROL_ANSWER = 4, /*!< Remote end has answered */
+ AST_CONTROL_BUSY = 5, /*!< Remote end is busy */
+ AST_CONTROL_TAKEOFFHOOK = 6, /*!< Make it go off hook */
+ AST_CONTROL_OFFHOOK = 7, /*!< Line is off hook */
+ AST_CONTROL_CONGESTION = 8, /*!< Congestion (circuits busy) */
+ AST_CONTROL_FLASH = 9, /*!< Flash hook */
+ AST_CONTROL_WINK = 10, /*!< Wink */
+ AST_CONTROL_OPTION = 11, /*!< Set a low-level option */
+ AST_CONTROL_RADIO_KEY = 12, /*!< Key Radio */
+ AST_CONTROL_RADIO_UNKEY = 13, /*!< Un-Key Radio */
+ AST_CONTROL_PROGRESS = 14, /*!< Indicate PROGRESS */
+ AST_CONTROL_PROCEEDING = 15, /*!< Indicate CALL PROCEEDING */
+ AST_CONTROL_HOLD = 16, /*!< Indicate call is placed on hold */
+ AST_CONTROL_UNHOLD = 17, /*!< Indicate call is left from hold */
+ AST_CONTROL_VIDUPDATE = 18, /*!< Indicate video frame update */
};
#define AST_SMOOTHER_FLAG_G729 (1 << 0)