From 7b84cf6fa63c40a4d0aa9373095e7021eaf708a8 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 26 Jun 2008 17:06:17 +0000 Subject: Convert casts to unions, to fix alignment issues on Solaris (closes issue #12932) Reported by: snuffy Patches: bug_12932_20080627.diff uploaded by snuffy (license 35) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@125386 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- codecs/codec_speex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'codecs/codec_speex.c') diff --git a/codecs/codec_speex.c b/codecs/codec_speex.c index b9f879535..734491c75 100644 --- a/codecs/codec_speex.c +++ b/codecs/codec_speex.c @@ -193,7 +193,7 @@ static int speextolin_framein(struct ast_trans_pvt *pvt, struct ast_frame *f) the tail location. Read in as many frames as there are */ int x; int res; - int16_t *dst = (int16_t *)pvt->outbuf; + int16_t *dst = pvt->outbuf.i16; /* XXX fout is a temporary buffer, may have different types */ #ifdef _SPEEX_TYPES_H spx_int16_t fout[1024]; @@ -316,7 +316,7 @@ static struct ast_frame *lintospeex_frameout(struct ast_trans_pvt *pvt) /* Terminate bit stream */ speex_bits_pack(&tmp->bits, 15, 5); - datalen = speex_bits_write(&tmp->bits, pvt->outbuf, pvt->t->buf_size); + datalen = speex_bits_write(&tmp->bits, pvt->outbuf.c, pvt->t->buf_size); return ast_trans_frameout(pvt, datalen, samples); } -- cgit v1.2.3