[asterisk-commits] mmichelson: trunk r183554 - in /trunk: include/asterisk/ main/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Mar 20 11:24:24 CDT 2009
Author: mmichelson
Date: Fri Mar 20 11:24:20 2009
New Revision: 183554
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=183554
Log:
Remove symbols I just added to main/asterisk.exports and instead rename the functions.
Modified:
trunk/include/asterisk/rtp.h
trunk/main/asterisk.exports
trunk/main/rtp.c
Modified: trunk/include/asterisk/rtp.h
URL: http://svn.digium.com/svn-view/asterisk/trunk/include/asterisk/rtp.h?view=diff&rev=183554&r1=183553&r2=183554
==============================================================================
--- trunk/include/asterisk/rtp.h (original)
+++ trunk/include/asterisk/rtp.h Fri Mar 20 11:24:20 2009
@@ -402,10 +402,10 @@
* \param num_gen number of redundant generations, primary data excluded
* \since 1.6.1
*/
-int rtp_red_init(struct ast_rtp *rtp, int ti, int *pt, int num_gen);
+int ast_rtp_red_init(struct ast_rtp *rtp, int ti, int *pt, int num_gen);
/*! \brief Buffer t.140 data */
-void red_buffer_t140(struct ast_rtp *rtp, struct ast_frame *f);
+void ast_red_buffer_t140(struct ast_rtp *rtp, struct ast_frame *f);
Modified: trunk/main/asterisk.exports
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/asterisk.exports?view=diff&rev=183554&r1=183553&r2=183554
==============================================================================
--- trunk/main/asterisk.exports (original)
+++ trunk/main/asterisk.exports Fri Mar 20 11:24:20 2009
@@ -28,8 +28,6 @@
devstate2str;
__manager_event;
dialed_interface_info;
- red_buffer_t140;
- rtp_red_init;
local:
*;
};
Modified: trunk/main/rtp.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/rtp.c?view=diff&rev=183554&r1=183553&r2=183554
==============================================================================
--- trunk/main/rtp.c (original)
+++ trunk/main/rtp.c Fri Mar 20 11:24:20 2009
@@ -4815,7 +4815,7 @@
* \param num_gen numbers of generations (primary generation not encounted)
*
*/
-int rtp_red_init(struct ast_rtp *rtp, int ti, int *red_data_pt, int num_gen)
+int ast_rtp_red_init(struct ast_rtp *rtp, int ti, int *red_data_pt, int num_gen)
{
struct rtp_red *r;
int x;
@@ -4854,7 +4854,7 @@
* \param rtp
* \param f frame
*/
-void red_buffer_t140(struct ast_rtp *rtp, struct ast_frame *f)
+void ast_red_buffer_t140(struct ast_rtp *rtp, struct ast_frame *f)
{
if (f->datalen > -1) {
struct rtp_red *red = rtp->red;
More information about the asterisk-commits
mailing list