[FFmpeg-cvslog] r20658 - trunk/libavcodec/nellymoserdec.c

mru subversion
Sun Nov 29 16:15:54 CET 2009


Author: mru
Date: Sun Nov 29 16:15:53 2009
New Revision: 20658

Log:
nellymoser: use constant seed for dithering RNG

Modified:
   trunk/libavcodec/nellymoserdec.c

Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c	Sun Nov 29 16:15:50 2009	(r20657)
+++ trunk/libavcodec/nellymoserdec.c	Sun Nov 29 16:15:53 2009	(r20658)
@@ -129,7 +129,7 @@ static av_cold int decode_init(AVCodecCo
     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);



More information about the ffmpeg-cvslog mailing list