summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-06-22 18:39:33 +0000
committerBenny Prijono <bennylp@teluu.com>2006-06-22 18:39:33 +0000
commit0a951cbca8420e4b8aa861b125bca3320c2e9ff8 (patch)
treee661d06e0d9862226da024aff8b0f5c07457c8c3
parent7c987a296324d3e28dd27086600c2e51d07ae721 (diff)
Fixed unreferenced argument warning
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@535 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjmedia/src/pjmedia-codec/speex_codec.c3
1 files changed, 3 insertions, 0 deletions
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;