提交 f4c94d96 authored 作者: Anthony Minessale's avatar Anthony Minessale

fix MODFORM-6

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7798 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 dfb6ccc2
...@@ -272,12 +272,13 @@ static size_t decode_fd(shout_context_t * context, void *data, size_t bytes) ...@@ -272,12 +272,13 @@ static size_t decode_fd(shout_context_t * context, void *data, size_t bytes)
} }
if (decode_status == MP3_ERR) { if (decode_status == MP3_ERR) {
if (++context->mp3err >= 20) { if (++context->mp3err >= 5) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Decoder Error!\n"); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Decoder Error!\n");
goto error;
} }
dlen = 0; dlen = 0;
//continue; continue;
goto error;
} }
context->mp3err = 0; context->mp3err = 0;
...@@ -586,10 +587,11 @@ static switch_status_t shout_file_open(switch_file_handle_t *handle, const char ...@@ -586,10 +587,11 @@ static switch_status_t shout_file_open(switch_file_handle_t *handle, const char
} }
lame_set_brate(context->gfp, 24 * (handle->samplerate / 8000) * handle->channels);
lame_set_num_channels(context->gfp, handle->channels); lame_set_num_channels(context->gfp, handle->channels);
lame_set_in_samplerate(context->gfp, handle->samplerate); lame_set_in_samplerate(context->gfp, handle->samplerate);
lame_set_brate(context->gfp, 64);
lame_set_out_samplerate(context->gfp, handle->samplerate); lame_set_out_samplerate(context->gfp, handle->samplerate);
if (handle->channels == 2) { if (handle->channels == 2) {
lame_set_mode(context->gfp, STEREO); lame_set_mode(context->gfp, STEREO);
} else { } else {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论