From: Brian West Date: Mon, 6 Oct 2008 20:17:15 +0000 (+0000) Subject: fix overdrive vol MODFORM-15 X-Git-Tag: v1.0.2~941 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7810e81cd86753fa1496388fc8b16e01df6de743;p=thirdparty%2Ffreeswitch.git fix overdrive vol MODFORM-15 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9858 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/formats/mod_shout/mod_shout.c b/src/mod/formats/mod_shout/mod_shout.c index 02426c7f7d..4bc52d44c5 100644 --- a/src/mod/formats/mod_shout/mod_shout.c +++ b/src/mod/formats/mod_shout/mod_shout.c @@ -611,6 +611,7 @@ static switch_status_t shout_file_open(switch_file_handle_t *handle, const char mpg123_open_feed(context->mh); mpg123_format_all(context->mh); mpg123_param(context->mh, MPG123_FORCE_RATE, context->samplerate, 0); + mpg123_param(context->mh, MPG123_OUTSCALE, 8192, 0); if (handle->handler) { mpg123_param(context->mh, MPG123_FLAGS, MPG123_SEEKBUFFER|MPG123_MONO_MIX, 0);