1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-30 18:24:17 +00:00

doxygen tweaks

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8664 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-05-26 17:08:39 +00:00
parent cce887c6cc
commit 699dd0ca9d
2 changed files with 10 additions and 10 deletions

@ -732,7 +732,7 @@ SWITCH_DECLARE(void) switch_core_service_session(_In_ switch_core_session_t *ses
/*! /*!
\brief Request an outgoing session spawned from an existing session using a desired endpoing module \brief Request an outgoing session spawned from an existing session using a desired endpoing module
\param session the originating session \param session the originating session
\param var_event - NEEDDESC - \param var_event switch_event_t containing paramaters
\param endpoint_name the name of the module to use for the new session \param endpoint_name the name of the module to use for the new session
\param caller_profile the originator's caller profile \param caller_profile the originator's caller profile
\param new_session a NULL pointer to aim at the newly created session \param new_session a NULL pointer to aim at the newly created session
@ -822,7 +822,7 @@ SWITCH_DECLARE(uint32_t) switch_core_session_flush_private_events(switch_core_se
\brief Read a frame from a session \brief Read a frame from a session
\param session the session to read from \param session the session to read from
\param frame a NULL pointer to a frame to aim at the newly read frame \param frame a NULL pointer to a frame to aim at the newly read frame
\param flags - NEEDDESC - \param flags I/O flags to modify behavior (i.e. non blocking)
\param stream_id which logical media channel to use \param stream_id which logical media channel to use
\return SWITCH_STATUS_SUCCESS a the frame was read \return SWITCH_STATUS_SUCCESS a the frame was read
*/ */
@ -832,7 +832,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_read_frame(_In_ switch_core_
\brief Read a video frame from a session \brief Read a video frame from a session
\param session the session to read from \param session the session to read from
\param frame a NULL pointer to a frame to aim at the newly read frame \param frame a NULL pointer to a frame to aim at the newly read frame
\param flags - NEEDDESC - \param flags I/O flags to modify behavior (i.e. non blocking)
\param stream_id which logical media channel to use \param stream_id which logical media channel to use
\return SWITCH_STATUS_SUCCESS a if the frame was read \return SWITCH_STATUS_SUCCESS a if the frame was read
*/ */
@ -842,7 +842,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_read_video_frame(_In_ switch
\brief Write a video frame to a session \brief Write a video frame to a session
\param session the session to write to \param session the session to write to
\param frame a pointer to a frame to write \param frame a pointer to a frame to write
\param flags - NEEDDESC - \param flags I/O flags to modify behavior (i.e. non blocking)
\param stream_id which logical media channel to use \param stream_id which logical media channel to use
\return SWITCH_STATUS_SUCCESS a if the frame was written \return SWITCH_STATUS_SUCCESS a if the frame was written
*/ */
@ -859,7 +859,7 @@ SWITCH_DECLARE(void) switch_core_session_reset(_In_ switch_core_session_t *sessi
\brief Write a frame to a session \brief Write a frame to a session
\param session the session to write to \param session the session to write to
\param frame the frame to write \param frame the frame to write
\param flags - NEEDDESC - \param flags I/O flags to modify behavior (i.e. non blocking)
\param stream_id which logical media channel to use \param stream_id which logical media channel to use
\return SWITCH_STATUS_SUCCESS a the frame was written \return SWITCH_STATUS_SUCCESS a the frame was written
*/ */

@ -227,11 +227,11 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_eavesdrop_session(switch_core_session
switch_eavesdrop_flag_t flags); switch_eavesdrop_flag_t flags);
/*! /*!
\brief - NEEDDESC - \brief displace the media for a session with the audio from a file
\param session the session to displace \param session the session to displace
\param file \param file filename
\param limit \param limit time limit in ms
\param flags \param flags m (mux) l (loop) or r(read session instead of write session)
\return SWITCH_STATUS_SUCCESS if all is well \return SWITCH_STATUS_SUCCESS if all is well
*/ */
SWITCH_DECLARE(switch_status_t) switch_ivr_displace_session(switch_core_session_t *session, const char *file, uint32_t limit, const char *flags); SWITCH_DECLARE(switch_status_t) switch_ivr_displace_session(switch_core_session_t *session, const char *file, uint32_t limit, const char *flags);
@ -239,7 +239,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_displace_session(switch_core_session_
/*! /*!
\brief Stop displacing a session \brief Stop displacing a session
\param session the session \param session the session
\param file - NEEDDESC - \param file file name from the switch_ivr_displace_session call
\return SWITCH_STATUS_SUCCESS if all is well \return SWITCH_STATUS_SUCCESS if all is well
*/ */
SWITCH_DECLARE(switch_status_t) switch_ivr_stop_displace_session(switch_core_session_t *session, const char *file); SWITCH_DECLARE(switch_status_t) switch_ivr_stop_displace_session(switch_core_session_t *session, const char *file);