From a55bb56ff2c0efe0f95150d047eb511edf1aa459 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 6 Apr 2006 03:28:23 +0000 Subject: [PATCH] petty dox typo git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1064 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_rtp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/switch_rtp.h b/src/include/switch_rtp.h index 962984cc2c..372c01237f 100644 --- a/src/include/switch_rtp.h +++ b/src/include/switch_rtp.h @@ -74,7 +74,7 @@ SWITCH_DECLARE(switch_port_t) switch_rtp_request_port(void); \param rx_port the local port \param tx_ip the remote address \param tx_port the remote port - \param payload the iana payload number + \param payload the IANA payload number \param flags flags to control behaviour \param err a pointer to resolve error messages \param pool a memory pool to use for the session @@ -133,7 +133,7 @@ SWITCH_DECLARE(void) switch_rtp_set_invald_handler(switch_rtp *rtp_session, swit \param rtp_session the RTP session to read from \param data the data to read \param datalen the length of the data - \param payload_type the inia payload of the packet + \param payload_type the IANA payload of the packet \return the number of bytes read */ SWITCH_DECLARE(int) switch_rtp_read(switch_rtp *rtp_session, void *data, uint32_t datalen, int *payload_type); @@ -142,7 +142,7 @@ SWITCH_DECLARE(int) switch_rtp_read(switch_rtp *rtp_session, void *data, uint32_ \brief Read data from a given RTP session without copying \param rtp_session the RTP session to read from \param data a pointer to point directly to the RTP read buffer - \param payload_type the inia payload of the packet + \param payload_type the IANA payload of the packet \return the number of bytes read */ SWITCH_DECLARE(int) switch_rtp_zerocopy_read(switch_rtp *rtp_session, void **data, int *payload_type); @@ -162,7 +162,7 @@ SWITCH_DECLARE(int) switch_rtp_write(switch_rtp *rtp_session, void *data, int da \param rtp_session the RTP session to write to \param data data to write \param datalen the size of the data - \param payload the iana payload number + \param payload the IANA payload number \param ts then number of bytes to increment the timestamp by \param mseq the specific sequence number to use \return the number of bytes written