From 6785cae35c4b5d407eac2d06d95e7049c191d1f3 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 8 Jul 2007 23:15:08 +0000 Subject: trivial warning fixes Originally committed as revision 9551 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wmaenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/wmaenc.c') diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c index e35f363b63..e2cdebf228 100644 --- a/libavcodec/wmaenc.c +++ b/libavcodec/wmaenc.c @@ -94,7 +94,7 @@ static void apply_window_and_mdct(AVCodecContext * avctx, signed short * audio, } //FIXME use for decoding too -static void init_exp(WMACodecContext *s, int ch, int *exp_param){ +static void init_exp(WMACodecContext *s, int ch, const int *exp_param){ int n; const uint16_t *ptr; float v, *q, max_scale, *q_end; @@ -324,7 +324,7 @@ static int encode_superframe(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ WMACodecContext *s = avctx->priv_data; short *samples = data; - int i, total_gain, best; + int i, total_gain; s->block_len_bits= s->frame_len_bits; //required by non variable block len s->block_len = 1 << s->block_len_bits; -- cgit v1.2.3