[FFmpeg-cvslog] r11458 - trunk/libavcodec/noise_bsf.c

michael subversion
Tue Jan 8 01:25:26 CET 2008


Author: michael
Date: Tue Jan  8 01:25:25 2008
New Revision: 11458

Log:
Randomly change the amount of noise if nothing is explicitly set.


Modified:
   trunk/libavcodec/noise_bsf.c

Modified: trunk/libavcodec/noise_bsf.c
==============================================================================
--- trunk/libavcodec/noise_bsf.c	(original)
+++ trunk/libavcodec/noise_bsf.c	Tue Jan  8 01:25:25 2008
@@ -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);




More information about the ffmpeg-cvslog mailing list