[svn-commits] rmudgett: trunk r423424 - in /trunk: ./ bridges/bridge_softmix.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Sep 18 12:10:52 CDT 2014
Author: rmudgett
Date: Thu Sep 18 12:10:50 2014
New Revision: 423424
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=423424
Log:
bridge_softmix.c: Made use ao2_replace() instead of the inline equivalent.
* Clarified some read/write format comments.
* Fixed a doxygen tag typo.
........
Merged revisions 423423 from http://svn.asterisk.org/svn/asterisk/branches/13
Modified:
trunk/ (props changed)
trunk/bridges/bridge_softmix.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.
Modified: trunk/bridges/bridge_softmix.c
URL: http://svnview.digium.com/svn/asterisk/trunk/bridges/bridge_softmix.c?view=diff&rev=423424&r1=423423&r2=423424
==============================================================================
--- trunk/bridges/bridge_softmix.c (original)
+++ trunk/bridges/bridge_softmix.c Thu Sep 18 12:10:50 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 svn-commits
mailing list