[asterisk-commits] mmichelson: branch 1.4 r130173 - /branches/1.4/main/audiohook.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jul 11 14:13:29 CDT 2008
Author: mmichelson
Date: Fri Jul 11 14:13:29 2008
New Revision: 130173
URL: http://svn.digium.com/view/asterisk?view=rev&rev=130173
Log:
Fix a typo in audiohook_read_frame_both.
While this change has not been proven to fix any
specific issue, it is incorrect and could cause
unforeseen problems.
Modified:
branches/1.4/main/audiohook.c
Modified: branches/1.4/main/audiohook.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/audiohook.c?view=diff&rev=130173&r1=130172&r2=130173
==============================================================================
--- branches/1.4/main/audiohook.c (original)
+++ branches/1.4/main/audiohook.c Fri Jul 11 14:13:29 2008
@@ -216,7 +216,7 @@
}
/* If we want to provide only a write factory make sure we aren't waiting for other audio */
- if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->write_time) < (samples/8)*2)) {
+ if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->read_time) < (samples/8)*2)) {
if (option_debug)
ast_log(LOG_DEBUG, "Read factory %p was pretty quick last time, waiting for them.\n", &audiohook->read_factory);
return NULL;
More information about the asterisk-commits
mailing list