mirror of https://git.ffmpeg.org/ffmpeg.git
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
This commit is contained in:
parent
0328995893
commit
f1e3c9368b
|
@ -130,7 +130,6 @@ static void nelly_decode_block(NellyMoserDecodeContext *s,
|
||||||
|
|
||||||
static av_cold int decode_init(AVCodecContext * avctx) {
|
static av_cold int decode_init(AVCodecContext * avctx) {
|
||||||
NellyMoserDecodeContext *s = avctx->priv_data;
|
NellyMoserDecodeContext *s = avctx->priv_data;
|
||||||
int i;
|
|
||||||
|
|
||||||
s->avctx = avctx;
|
s->avctx = avctx;
|
||||||
av_init_random(0, &s->random_state);
|
av_init_random(0, &s->random_state);
|
||||||
|
|
Loading…
Reference in New Issue