Commit eab0bb53 authored by mru's avatar mru

nellymoser: use constant seed for dithering RNG

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20658 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 85123da9
......@@ -129,7 +129,7 @@ static av_cold int decode_init(AVCodecContext * avctx) {
NellyMoserDecodeContext *s = avctx->priv_data;
s->avctx = avctx;
av_lfg_init(&s->random_state, ff_random_get_seed());
av_lfg_init(&s->random_state, 0);
ff_mdct_init(&s->imdct_ctx, 8, 1, 1.0);
dsputil_init(&s->dsp, avctx);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment