Mercurial > libavcodec.hg
diff bitstream_filter.c @ 3422:6ce5ece8e2ea libavcodec
noise bitstream filter
add priv_data field to AVBitStreamFilterContext
author | michael |
---|---|
date | Thu, 06 Jul 2006 15:28:17 +0000 |
parents | b7826511f7b6 |
children | c537a97eec66 |
line wrap: on
line diff
--- a/bitstream_filter.c Thu Jul 06 15:04:46 2006 +0000 +++ b/bitstream_filter.c Thu Jul 06 15:28:17 2006 +0000 @@ -15,6 +15,7 @@ if(!strcmp(name, bsf->name)){ AVBitStreamFilterContext *bsfc= av_mallocz(sizeof(AVBitStreamFilterContext)); bsfc->filter= bsf; + bsfc->priv_data= av_mallocz(bsf->priv_data_size); return bsfc; } bsf= bsf->next; @@ -23,6 +24,7 @@ } void av_bitstream_filter_close(AVBitStreamFilterContext *bsfc){ + av_freep(&bsfc->priv_data); av_parser_close(bsfc->parser); av_free(bsfc); } @@ -31,6 +33,8 @@ AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe){ + *poutbuf= (uint8_t *) buf; + *poutbuf_size= buf_size; return bsfc->filter->filter(bsfc, avctx, args, poutbuf, poutbuf_size, buf, buf_size, keyframe); } @@ -39,8 +43,6 @@ const uint8_t *buf, int buf_size, int keyframe){ int cmd= args ? *args : 0; /* cast to avoid warning about discarding qualifiers */ - *poutbuf= (uint8_t *) buf; - *poutbuf_size= buf_size; if(avctx->extradata){ if( (keyframe && (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER) && cmd=='a') ||(keyframe && (cmd=='k' || !cmd)) @@ -85,12 +87,38 @@ return 0; } +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 i; + + *poutbuf= av_malloc(buf_size + FF_INPUT_BUFFER_PADDING_SIZE); + + memcpy(*poutbuf, buf, buf_size + FF_INPUT_BUFFER_PADDING_SIZE); + for(i=0; i<buf_size; i++){ + (*state) += (*poutbuf)[i] + 1; + if(*state % amount == 0) + (*poutbuf)[i] = *state; + } + return 1; +} + AVBitStreamFilter dump_extradata_bsf={ "dump_extra", + 0, dump_extradata, }; AVBitStreamFilter remove_extradata_bsf={ "remove_extra", + 0, remove_extradata, }; + +AVBitStreamFilter noise_bsf={ + "noise", + sizeof(int), + noise, +};