mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
app_chanspy: Fix a test that was failing on account of r413551
ASTERISK-23381 #close ASTERISK-23381 #comment Reported by: Robert Moss Review: https://reviewboard.asterisk.org/r/3505/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@413710 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -661,16 +661,16 @@ static int channel_spy(struct ast_channel *chan, struct ast_autochan *spyee_auto
|
|||||||
bridge_connected = 1;
|
bridge_connected = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!bridge_connected) {
|
ast_audiohook_lock(&csth.whisper_audiohook);
|
||||||
continue;
|
ast_audiohook_write_frame(&csth.whisper_audiohook, AST_AUDIOHOOK_DIRECTION_WRITE, f);
|
||||||
|
ast_audiohook_unlock(&csth.whisper_audiohook);
|
||||||
|
|
||||||
|
if (bridge_connected) {
|
||||||
|
ast_audiohook_lock(&csth.bridge_whisper_audiohook);
|
||||||
|
ast_audiohook_write_frame(&csth.bridge_whisper_audiohook, AST_AUDIOHOOK_DIRECTION_WRITE, f);
|
||||||
|
ast_audiohook_unlock(&csth.bridge_whisper_audiohook);
|
||||||
}
|
}
|
||||||
|
|
||||||
ast_audiohook_lock(&csth.whisper_audiohook);
|
|
||||||
ast_audiohook_lock(&csth.bridge_whisper_audiohook);
|
|
||||||
ast_audiohook_write_frame(&csth.whisper_audiohook, AST_AUDIOHOOK_DIRECTION_WRITE, f);
|
|
||||||
ast_audiohook_write_frame(&csth.bridge_whisper_audiohook, AST_AUDIOHOOK_DIRECTION_WRITE, f);
|
|
||||||
ast_audiohook_unlock(&csth.whisper_audiohook);
|
|
||||||
ast_audiohook_unlock(&csth.bridge_whisper_audiohook);
|
|
||||||
ast_frfree(f);
|
ast_frfree(f);
|
||||||
continue;
|
continue;
|
||||||
} else if (ast_test_flag(flags, OPTION_WHISPER) && f->frametype == AST_FRAME_VOICE) {
|
} else if (ast_test_flag(flags, OPTION_WHISPER) && f->frametype == AST_FRAME_VOICE) {
|
||||||
|
|||||||
Reference in New Issue
Block a user