summaryrefslogtreecommitdiff
path: root/main/audiohook.c
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2012-02-16 20:03:40 +0000
committerSean Bright <sean@malleable.com>2012-02-16 20:03:40 +0000
commitb80fcd77e5cb7b9a6532db3f03b36e9aec72be85 (patch)
tree64bd15a53aa2fd9b31e83c3e38f6e8d24ec8853d /main/audiohook.c
parent7093cf278ca023a3b43959f15202c7eabd3f9856 (diff)
Revert a change to audio_audiohook_write_list that had no affect.
When I made this change initially, I was under the false impression that the audiohooks structure remained on the channel after all of the hooks had been detached. This is not the case, ast ast_read takes care of removing the audiohooks structure if the lists are empty. ........ Merged revisions 355622 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 355623 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@355624 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/audiohook.c')
-rw-r--r--main/audiohook.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/main/audiohook.c b/main/audiohook.c
index ad5ef17cc..83fec318f 100644
--- a/main/audiohook.c
+++ b/main/audiohook.c
@@ -783,10 +783,6 @@ static struct ast_frame *audio_audiohook_write_list(struct ast_channel *chan, st
int middle_frame_manipulated = 0;
int removed = 0;
- /* Don't translate our frame if we aren't going to bother to use it */
- if (ast_audiohook_write_list_empty(audiohook_list))
- return end_frame;
-
/* ---Part_1. translate start_frame to SLINEAR if necessary. */
if (!(middle_frame = audiohook_list_translate_to_slin(audiohook_list, direction, start_frame))) {
return frame;