mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-16 17:53:15 +00:00
pointer signedness warnings
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37299 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user