mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-11 07:13:20 +00:00
Added MixMonitorMute manager command
Added a new manager command to mute/unmute MixMonitor audio on a channel. Added a new feature to audiohooks so that you can mute either read / write (or both) types of frames - this allows for MixMonitor to mute either side of the conversation without affecting the conversation itself. (closes issue #16740) Reported by: jmls Review: https://reviewboard.asterisk.org/r/487/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@258190 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
12
main/frame.c
12
main/frame.c
@@ -1587,3 +1587,15 @@ int ast_frame_slinear_sum(struct ast_frame *f1, struct ast_frame *f2)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ast_frame_clear(struct ast_frame *frame)
|
||||
{
|
||||
struct ast_frame *next;
|
||||
|
||||
for (next = AST_LIST_NEXT(frame, frame_list);
|
||||
frame;
|
||||
frame = next, next = frame ? AST_LIST_NEXT(frame, frame_list) : NULL) {
|
||||
memset(frame->data.ptr, 0, frame->datalen);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user