From 0a951cbca8420e4b8aa861b125bca3320c2e9ff8 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 22 Jun 2006 18:39:33 +0000 Subject: Fixed unreferenced argument warning git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@535 74dad513-b988-da41-8d7b-12977e46ad98 --- pjmedia/src/pjmedia-codec/speex_codec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pjmedia/src/pjmedia-codec/speex_codec.c b/pjmedia/src/pjmedia-codec/speex_codec.c index f6328d82..6f87668f 100644 --- a/pjmedia/src/pjmedia-codec/speex_codec.c +++ b/pjmedia/src/pjmedia-codec/speex_codec.c @@ -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; -- cgit v1.2.3