From bdd8f6ad73a1e789ecd574420e657b56775d1af0 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 13 Feb 2007 17:14:39 +0000 Subject: [PATCH] 2833 bs git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4233 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_rtp.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/include/switch_rtp.h b/src/include/switch_rtp.h index 206c7755ef..182889fc59 100644 --- a/src/include/switch_rtp.h +++ b/src/include/switch_rtp.h @@ -340,10 +340,19 @@ SWITCH_DECLARE(int) switch_rtp_write_frame(switch_rtp_t *rtp_session, switch_fra \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 + \param ssrc the ssrc \param flags frame flags \return the number of bytes written */ -SWITCH_DECLARE(int) switch_rtp_write_manual(switch_rtp_t *rtp_session, void *data, uint16_t datalen, uint8_t m, switch_payload_t payload, uint32_t ts, uint16_t mseq, switch_frame_flag_t *flags); +SWITCH_DECLARE(int) switch_rtp_write_manual(switch_rtp_t *rtp_session, + void *data, + uint16_t datalen, + uint8_t m, + switch_payload_t payload, + uint32_t ts, + uint16_t mseq, + uint32_t ssrc, + switch_frame_flag_t *flags); /*! \brief Retrieve the SSRC from a given RTP session