Fixed unreferenced argument warning

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@535 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2006-06-22 18:39:33 +00:00
parent 7eaa0fd360
commit 6028166c63
1 changed files with 3 additions and 0 deletions

View File

@ -797,6 +797,9 @@ static pj_status_t spx_codec_recover(pjmedia_codec *codec,
pj_int16_t *dst_buf;
unsigned i, count;
/* output_buf_len is unreferenced when building in Release mode */
PJ_UNUSED_ARG(output_buf_len);
spx = (struct spx_private*) codec->codec_data;
count = spx_factory.speex_param[spx->param_id].clock_rate * 20 / 1000;