]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
pointer signedness warnings
authorRussell Bryant <russell@russellbryant.com>
Fri, 7 Jul 2006 16:11:39 +0000 (16:11 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 7 Jul 2006 16:11:39 +0000 (16:11 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37299 65c4cc65-6c06-0410-ace0-fbb531ad65f3

codecs/codec_ilbc.c
codecs/codec_lpc10.c

index 883a385c8dff439bd4af3b9b936bbe6b67aa8064..98b5a147007879cb369f29928052c5fc6395ac3f 100644 (file)
@@ -181,7 +181,7 @@ static struct ast_frame *lintoilbc_frameout(struct ast_trans_pvt *pvt)
                /* Encode a frame of data */
                for ( i = 0 ; i < ILBC_SAMPLES ; i++ )
                        tmpf[i] = tmp->buf[i];
-               iLBC_encode(pvt->outbuf + datalen, tmpf, &tmp->enc);
+               iLBC_encode((unsigned char *) pvt->outbuf + datalen, tmpf, &tmp->enc);
                datalen += ILBC_FRAME_LEN;
                samples += ILBC_SAMPLES;
                pvt->samples -= ILBC_SAMPLES;
index e41137de1b91c5afaa2893acedcc5b21bbe867d6..03b7351c0af9efffa9089a7c53ebee4f16188fe2 100644 (file)
@@ -211,7 +211,7 @@ static struct ast_frame *lintolpc10_frameout(struct ast_trans_pvt *pvt)
                for (x=0;x<LPC10_SAMPLES_PER_FRAME;x++)
                        tmpbuf[x] = (float)tmp->buf[x + samples] / 32768.0;
                lpc10_encode(tmpbuf, bits, tmp->lpc10.enc);
-               build_bits(pvt->outbuf + datalen, bits);
+               build_bits((unsigned char *) pvt->outbuf + datalen, bits);
                datalen += LPC10_BYTES_IN_COMPRESSED_FRAME;
                samples += LPC10_SAMPLES_PER_FRAME;
                pvt->samples -= LPC10_SAMPLES_PER_FRAME;