[SCM] libav/experimental: Randomly change the amount of noise if nothing is explicitly set.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:11:29 UTC 2013


The following commit has been merged in the experimental branch:
commit 787e1353917a99982daa6c277b623c366d671a3e
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Tue Jan 8 00:25:25 2008 +0000

    Randomly change the amount of noise if nothing is explicitly set.
    
    Originally committed as revision 11458 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/noise_bsf.c b/libavcodec/noise_bsf.c
index 6085a5b..c49dd1f 100644
--- a/libavcodec/noise_bsf.c
+++ b/libavcodec/noise_bsf.c
@@ -24,8 +24,8 @@
 static int noise(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args,
                      uint8_t **poutbuf, int *poutbuf_size,
                      const uint8_t *buf, int buf_size, int keyframe){
-    int amount= args ? atoi(args) : 10000;
     unsigned int *state= bsfc->priv_data;
+    int amount= args ? atoi(args) : (*state % 10001+1);
     int i;
 
     *poutbuf= av_malloc(buf_size + FF_INPUT_BUFFER_PADDING_SIZE);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list