summaryrefslogtreecommitdiff
path: root/codecs/codec_lpc10.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-06-26 17:06:17 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-06-26 17:06:17 +0000
commit7b84cf6fa63c40a4d0aa9373095e7021eaf708a8 (patch)
treefed62da6065b0ba8588fe15f5adcc22c8e0d638a /codecs/codec_lpc10.c
parent4f32bf72f97ad4151065fcb878c142eb7d284ba7 (diff)
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
Diffstat (limited to 'codecs/codec_lpc10.c')
-rw-r--r--codecs/codec_lpc10.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/codecs/codec_lpc10.c b/codecs/codec_lpc10.c
index dfcdc7988..abea9d204 100644
--- a/codecs/codec_lpc10.c
+++ b/codecs/codec_lpc10.c
@@ -140,7 +140,7 @@ static void build_bits(unsigned char *c, INT32 *bits)
static int lpc10tolin_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
{
struct lpc10_coder_pvt *tmp = pvt->pvt;
- int16_t *dst = (int16_t *)pvt->outbuf;
+ int16_t *dst = pvt->outbuf.i16;
int len = 0;
while (len + LPC10_BYTES_IN_COMPRESSED_FRAME <= f->datalen) {
@@ -200,7 +200,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((unsigned char *) pvt->outbuf + datalen, bits);
+ build_bits(pvt->outbuf.uc + datalen, bits);
datalen += LPC10_BYTES_IN_COMPRESSED_FRAME;
samples += LPC10_SAMPLES_PER_FRAME;
pvt->samples -= LPC10_SAMPLES_PER_FRAME;