2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "libavutil/log.h"
28 #include "libavutil/mem.h"
29 #include "libavutil/opt.h"
31 typedef struct NoiseContext {
38 static int noise(AVBSFContext *ctx, AVPacket *pkt)
40 NoiseContext *s = ctx->priv_data;
41 int amount = s->amount > 0 ? s->amount : (s->state % 10001 + 1);
45 return AVERROR(EINVAL);
47 ret = ff_bsf_get_packet_ref(ctx, pkt);
51 if (s->dropamount > 0 && s->state % s->dropamount == 0) {
54 return AVERROR(EAGAIN);
57 ret = av_packet_make_writable(pkt);
61 for (i = 0; i < pkt->size; i++) {
62 s->state += pkt->data[i] + 1;
63 if (s->state % amount == 0)
64 pkt->data[i] = s->state;
73 #define OFFSET(x) offsetof(NoiseContext, x)
74 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_BSF_PARAM)
75 static const AVOption options[] = {
76 { "amount", NULL, OFFSET(amount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
77 { "dropamount", NULL, OFFSET(dropamount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
81 static const AVClass noise_class = {
82 .class_name = "noise",
83 .item_name = av_default_item_name,
85 .version = LIBAVUTIL_VERSION_INT,
88 const AVBitStreamFilter ff_noise_bsf = {
90 .priv_data_size = sizeof(NoiseContext),
91 .priv_class = &noise_class,