Browse Source

cook: use constant seed for dithering RNG

Originally committed as revision 20657 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård 15 years ago
parent
commit
2d2e72b10e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/cook.c

+ 1
- 1
libavcodec/cook.c View File

@@ -1101,7 +1101,7 @@ static av_cold int cook_decode_init(AVCodecContext *avctx)
q->bit_rate = avctx->bit_rate;

/* Initialize RNG. */
av_lfg_init(&q->random_state, ff_random_get_seed());
av_lfg_init(&q->random_state, 0);

while(edata_ptr < edata_ptr_end){
/* 8 for mono, 16 for stereo, ? for multichannel


Loading…
Cancel
Save