[Freeswitch-svn] [commit] r11156 - freeswitch/trunk/src
FreeSWITCH SVN
brian at freeswitch.org
Mon Jan 12 21:17:07 PST 2009
Author: brian
Date: Mon Jan 12 23:17:07 2009
New Revision: 11156
Log:
doh I did that wrong
Modified:
freeswitch/trunk/src/switch_core_file.c
Modified: freeswitch/trunk/src/switch_core_file.c
==============================================================================
--- freeswitch/trunk/src/switch_core_file.c (original)
+++ freeswitch/trunk/src/switch_core_file.c Mon Jan 12 23:17:07 2009
@@ -204,13 +204,13 @@
switch_resample_process(fh->resampler, fh->resampler->from, fh->resampler->from_len, fh->resampler->to, fh->resampler->to_size, 0);
if (fh->resampler->to_len < want || fh->resampler->to_len > orig_len) {
- int factor = fh->resampler->to_len * fh->samplerate / 1000;
if (!fh->buffer) {
+ int factor = fh->resampler->to_len * fh->samplerate / 1000;
switch_buffer_create_dynamic(&fh->buffer, factor, factor, 0);
switch_assert(fh->buffer);
}
if (!fh->dbuf) {
- fh->dbuflen = want * factor;
+ fh->dbuflen = want * 4;
fh->dbuf = switch_core_alloc(fh->memory_pool, fh->dbuflen);
}
switch_assert(fh->resampler->to_len <= fh->dbuflen);
More information about the Freeswitch-svn
mailing list