[asterisk-commits] rmudgett: branch 13 r423423 - /branches/13/bridges/bridge_softmix.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Sep 18 12:09:36 CDT 2014
Author: rmudgett
Date: Thu Sep 18 12:09:34 2014
New Revision: 423423
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=423423
Log:
bridge_softmix.c: Made use ao2_replace() instead of the inline equivalent.
* Clarified some read/write format comments.
* Fixed a doxygen tag typo.
Modified:
branches/13/bridges/bridge_softmix.c
Modified: branches/13/bridges/bridge_softmix.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/bridges/bridge_softmix.c?view=diff&rev=423423&r1=423422&r2=423423
==============================================================================
--- branches/13/bridges/bridge_softmix.c (original)
+++ branches/13/bridges/bridge_softmix.c Thu Sep 18 12:09:34 2014
@@ -328,14 +328,13 @@
/* Setup write frame parameters */
sc->write_frame.frametype = AST_FRAME_VOICE;
- ao2_cleanup(sc->write_frame.subclass.format);
/*
- * NOTE: The format is bumped here because translation could
- * be needed and the format changed to the translated format
+ * NOTE: The write_frame format holds a reference because translation
+ * could be needed and the format changed to the translated format
* for the channel. The translated format may not be a
* static cached format.
*/
- sc->write_frame.subclass.format = ao2_bump(ast_format_cache_get_slin_by_rate(rate));
+ ao2_replace(sc->write_frame.subclass.format, ast_format_cache_get_slin_by_rate(rate));
sc->write_frame.data.ptr = sc->final_buf;
sc->write_frame.datalen = SOFTMIX_DATALEN(rate, interval);
sc->write_frame.samples = SOFTMIX_SAMPLES(rate, interval);
@@ -343,8 +342,8 @@
/* Setup read frame parameters */
sc->read_frame.frametype = AST_FRAME_VOICE;
/*
- * NOTE: The format is not bumbed here because it will always
- * be a signed linear format.
+ * NOTE: The read_frame format does not hold a reference because it
+ * will always be a signed linear format.
*/
sc->read_frame.subclass.format = ast_format_cache_get_slin_by_rate(channel_read_rate);
sc->read_frame.data.ptr = sc->our_buf;
@@ -725,7 +724,7 @@
* if necessary.
*
* \retval 0, no changes to internal rate
- * \ratval 1, internal rate was changed, update all the channels on the next mixing iteration.
+ * \retval 1, internal rate was changed, update all the channels on the next mixing iteration.
*/
static unsigned int analyse_softmix_stats(struct softmix_stats *stats, struct softmix_bridge_data *softmix_data)
{
More information about the asterisk-commits
mailing list