Remove symbols I just added to main/asterisk.exports and instead rename the functions.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@183554 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2009-03-20 16:24:20 +00:00
parent 47553ba807
commit 33c3fce71a
3 changed files with 4 additions and 6 deletions

View File

@@ -402,10 +402,10 @@ void ast_rtp_set_rtptimers_onhold(struct ast_rtp *rtp);
* \param num_gen number of redundant generations, primary data excluded * \param num_gen number of redundant generations, primary data excluded
* \since 1.6.1 * \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 */ /*! \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);

View File

@@ -28,8 +28,6 @@
devstate2str; devstate2str;
__manager_event; __manager_event;
dialed_interface_info; dialed_interface_info;
red_buffer_t140;
rtp_red_init;
local: local:
*; *;
}; };

View File

@@ -4815,7 +4815,7 @@ static struct ast_frame *red_t140_to_red(struct rtp_red *red) {
* \param num_gen numbers of generations (primary generation not encounted) * \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; struct rtp_red *r;
int x; int x;
@@ -4854,7 +4854,7 @@ int rtp_red_init(struct ast_rtp *rtp, int ti, int *red_data_pt, int num_gen)
* \param rtp * \param rtp
* \param f frame * \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) { if (f->datalen > -1) {
struct rtp_red *red = rtp->red; struct rtp_red *red = rtp->red;