[Freeswitch-svn] [commit] r6027 - freeswitch/trunk/src/mod/formats/mod_shout
Freeswitch SVN
anthm at freeswitch.org
Tue Oct 23 10:26:45 EDT 2007
Author: anthm
Date: Tue Oct 23 10:26:45 2007
New Revision: 6027
Modified:
freeswitch/trunk/src/mod/formats/mod_shout/mod_shout.c
Log:
increase mp3 buffer size closing MODFORM-2
Modified: freeswitch/trunk/src/mod/formats/mod_shout/mod_shout.c
==============================================================================
--- freeswitch/trunk/src/mod/formats/mod_shout/mod_shout.c (original)
+++ freeswitch/trunk/src/mod/formats/mod_shout/mod_shout.c Tue Oct 23 10:26:45 2007
@@ -786,7 +786,7 @@
static switch_status_t shout_file_write(switch_file_handle_t *handle, void *data, size_t *len)
{
shout_context_t *context = handle->private_info;
- unsigned char mp3buf[2048] = "";
+ unsigned char mp3buf[8192] = "";
int rlen;
int16_t *audio = data;
int nsamples = *len;
More information about the Freeswitch-svn
mailing list