From: Steve Murphy Date: Thu, 21 Dec 2006 20:15:20 +0000 (+0000) Subject: This little mod gets rid of that g722 compiler warning that breaks builds configured... X-Git-Tag: 1.6.0-beta1~3^2~3662 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a84f2a6ee7598f57d93cea48f8a9b9a0440d8e9;p=thirdparty%2Fasterisk.git This little mod gets rid of that g722 compiler warning that breaks builds configured with --enable-dev-mode; the previous commit of 48767 was to merge in changes for bug 6334, unifying the open mode arguments for saner operation. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48781 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/codecs/codec_g722.c b/codecs/codec_g722.c index 90553a1d1c..5398273471 100644 --- a/codecs/codec_g722.c +++ b/codecs/codec_g722.c @@ -102,7 +102,7 @@ static int lintog722_framein(struct ast_trans_pvt *pvt, struct ast_frame *f) struct g722_encoder_pvt *tmp = pvt->pvt; int16_t *src = f->data; - g722_encode(&tmp->g722, &pvt->outbuf[pvt->datalen], src, f->samples); + g722_encode(&tmp->g722, (uint8_t*)(&pvt->outbuf[pvt->datalen]), src, f->samples); /* Since G.722 64kbps per second is one bye per sample, all of these calculations are easy */ pvt->samples += f->samples;