[asterisk-commits] alecdavis: trunk r321212 - in /trunk: ./ main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri May 27 03:38:16 CDT 2011
Author: alecdavis
Date: Fri May 27 03:37:59 2011
New Revision: 321212
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=321212
Log:
Merged revisions 321211 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r321211 | alecdavis | 2011-05-27 20:31:15 +1200 (Fri, 27 May 2011) | 16 lines
Fix *8 directed pickup locks system during pickupsound play out
move playout from sip_pickup_thread to bridge using BRIDGE_PLAY_SOUND method,
This stop the clash of 2 threads trying to write audio to same channel.
In addition fixes choppy audio beep in issue 19177.
(issue #18654)
(issue #19177)
Reported by: Docent
Patches:
review1232-1.8.diff.txt alecdavis (license 585)
Tested by: alecdavis
Review: https://reviewboard.asterisk.org/r/1232/
........
Modified:
trunk/ (props changed)
trunk/main/features.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/main/features.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/features.c?view=diff&rev=321212&r1=321211&r2=321212
==============================================================================
--- trunk/main/features.c (original)
+++ trunk/main/features.c Fri May 27 03:37:59 2011
@@ -5782,20 +5782,14 @@
ast_log(LOG_NOTICE, "pickup %s attempt by %s\n", target->name, chan->name);
res = ast_do_pickup(chan, target);
+ ast_channel_unlock(target);
if (!res) {
if (!ast_strlen_zero(pickupsound)) {
- /*!
- * \todo We are not the bridge thread when we inject this sound
- * so we need to hold the target channel lock while the sound is
- * played. A better way needs to be found as this pauses the
- * system.
- */
- ast_stream_and_wait(target, pickupsound, "");
+ pbx_builtin_setvar_helper(target, "BRIDGE_PLAY_SOUND", pickupsound);
}
} else {
ast_log(LOG_WARNING, "pickup %s failed by %s\n", target->name, chan->name);
}
- ast_channel_unlock(target);
target = ast_channel_unref(target);
}
More information about the asterisk-commits
mailing list