git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7562 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2008-02-08 20:44:42 +00:00
parent 7c07380940
commit e915f460ba
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ static switch_status_t switch_gsm_encode(switch_codec_t *codec,
return SWITCH_STATUS_FALSE;
}
*encoded_data_len = gsm0610_encode(&context->encoder_object, (uint8_t *) encoded_data, (int16_t *) decoded_data, decoded_data_len / decoded_data_len);
*encoded_data_len = gsm0610_encode(&context->encoder_object, (uint8_t *) encoded_data, (int16_t *) decoded_data, decoded_data_len / 320);
return SWITCH_STATUS_SUCCESS;
}