Remove unused variable, fixes the warning:

libavcodec/nellymoserdec.c:133: warning: unused variable ‘i’

Originally committed as revision 14071 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 17 years ago
parent 0328995893
commit f1e3c9368b
  1. 1
      libavcodec/nellymoserdec.c

@ -130,7 +130,6 @@ static void nelly_decode_block(NellyMoserDecodeContext *s,
static av_cold int decode_init(AVCodecContext * avctx) {
NellyMoserDecodeContext *s = avctx->priv_data;
int i;
s->avctx = avctx;
av_init_random(0, &s->random_state);

Loading…
Cancel
Save