00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <stdlib.h>
00022 #include <string.h>
00023
00024 #include "avcodec.h"
00025 #include "libavutil/mem.h"
00026
00027
00028 static int noise(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args,
00029 uint8_t **poutbuf, int *poutbuf_size,
00030 const uint8_t *buf, int buf_size, int keyframe){
00031 unsigned int *state= bsfc->priv_data;
00032 int amount= args ? atoi(args) : (*state % 10001+1);
00033 int i;
00034
00035 *poutbuf= av_malloc(buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
00036
00037 memcpy(*poutbuf, buf, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
00038 for(i=0; i<buf_size; i++){
00039 (*state) += (*poutbuf)[i] + 1;
00040 if(*state % amount == 0)
00041 (*poutbuf)[i] = *state;
00042 }
00043 return 1;
00044 }
00045
00046 AVBitStreamFilter ff_noise_bsf={
00047 "noise",
00048 sizeof(int),
00049 noise,
00050 };