[svn-commits] dvossel: branch 1.6.2 r316644 - /branches/1.6.2/apps/app_chanspy.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed May 4 09:23:48 CDT 2011


Author: dvossel
Date: Wed May  4 09:23:39 2011
New Revision: 316644

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=316644
Log:
Fixes one-way-audio when chanspy activated with the 'o' option

(closes issue #18382)
Reported by: jkister
Patches: 
      0001-Bugfix-18382-one-way-audio-when-chanspy-activated.patch.txt uploaded by malin (license )
Tested by: firstsip, Greenlightcrm, malin, wdoekes, boroda, dvossel


Modified:
    branches/1.6.2/apps/app_chanspy.c

Modified: branches/1.6.2/apps/app_chanspy.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_chanspy.c?view=diff&rev=316644&r1=316643&r2=316644
==============================================================================
--- branches/1.6.2/apps/app_chanspy.c (original)
+++ branches/1.6.2/apps/app_chanspy.c Wed May  4 09:23:39 2011
@@ -345,6 +345,7 @@
 	struct ast_audiohook bridge_whisper_audiohook;
 	int fd;
 	int volfactor;
+	struct ast_flags flags;
 };
 
 static void *spy_alloc(struct ast_channel *chan, void *data)
@@ -370,7 +371,7 @@
 		return -1;
 	}
 
-	if (ast_test_flag(&csth->spy_audiohook, OPTION_READONLY)) {
+	if (ast_test_flag(&csth->flags, OPTION_READONLY)) {
 		/* Option 'o' was set, so don't mix channel audio */
 		f = ast_audiohook_read_frame(&csth->spy_audiohook, samples, AST_AUDIOHOOK_DIRECTION_READ, AST_FORMAT_SLINEAR);
 	} else {
@@ -486,7 +487,7 @@
 			spyer_name, name);
 
 	memset(&csth, 0, sizeof(csth));
-	ast_copy_flags(&csth.spy_audiohook, flags, AST_FLAGS_ALL);
+	ast_copy_flags(&csth.flags, flags, AST_FLAGS_ALL);
 
 	ast_audiohook_init(&csth.spy_audiohook, AST_AUDIOHOOK_TYPE_SPY, "ChanSpy");
 




More information about the svn-commits mailing list