diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-10-01 18:55:14 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-10-01 18:55:14 +0000 |
commit | b4700acee012d0cc27ca55d8d03bbc06c8629880 (patch) | |
tree | 54929a7c6920ab145066024867c6684f46fb5ed1 /ext/speex/gstspeexdec.c | |
parent | 49af49d8c5f9ed3e9901b3db228c1e489e91ede3 (diff) |
build fixes (those parameters/functions are const in 1.1.6)
Original commit message from CVS:
build fixes (those parameters/functions are const in 1.1.6)
Diffstat (limited to 'ext/speex/gstspeexdec.c')
-rw-r--r-- | ext/speex/gstspeexdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/speex/gstspeexdec.c b/ext/speex/gstspeexdec.c index ef795dcf..f362c4a1 100644 --- a/ext/speex/gstspeexdec.c +++ b/ext/speex/gstspeexdec.c @@ -397,7 +397,7 @@ speex_dec_chain (GstPad * pad, GstData * data) return; } - dec->mode = speex_mode_list[dec->header->mode]; + dec->mode = (SpeexMode *) speex_mode_list[dec->header->mode]; /* initialize the decoder */ dec->state = speex_decoder_init (dec->mode); |