]> git.sesse.net Git - ffmpeg/blob - libavcodec/noise_bsf.c
lavc: mark the old audio/video encoding API as deprecated
[ffmpeg] / libavcodec / noise_bsf.c
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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.
10  *
11  * Libav 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.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <stdlib.h>
22 #include <string.h>
23
24 #include "avcodec.h"
25 #include "bsf.h"
26
27 #include "libavutil/log.h"
28 #include "libavutil/mem.h"
29 #include "libavutil/opt.h"
30
31 typedef struct NoiseContext {
32     const AVClass *class;
33     int amount;
34     unsigned int state;
35 } NoiseContext;
36
37 static int noise(AVBSFContext *ctx, AVPacket *out)
38 {
39     NoiseContext *s = ctx->priv_data;
40     AVPacket *in;
41     int amount = s->amount > 0 ? s->amount : (s->state % 10001 + 1);
42     int i, ret = 0;
43
44     ret = ff_bsf_get_packet(ctx, &in);
45     if (ret < 0)
46         return ret;
47
48     ret = av_new_packet(out, in->size);
49     if (ret < 0)
50         goto fail;
51
52     ret = av_packet_copy_props(out, in);
53     if (ret < 0)
54         goto fail;
55
56     memcpy(out->data, in->data, in->size);
57
58     for (i = 0; i < out->size; i++) {
59         s->state += out->data[i] + 1;
60         if (s->state % amount == 0)
61             out->data[i] = s->state;
62     }
63 fail:
64     if (ret < 0)
65         av_packet_unref(out);
66     av_packet_free(&in);
67     return ret;
68 }
69
70 #define OFFSET(x) offsetof(NoiseContext, x)
71 static const AVOption options[] = {
72     { "amount", NULL, OFFSET(amount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX },
73     { NULL },
74 };
75
76 static const AVClass noise_class = {
77     .class_name = "noise",
78     .item_name  = av_default_item_name,
79     .option     = options,
80     .version    = LIBAVUTIL_VERSION_INT,
81 };
82
83 const AVBitStreamFilter ff_noise_bsf = {
84     .name           = "noise",
85     .priv_data_size = sizeof(int),
86     .priv_class     = &noise_class,
87     .filter         = noise,
88 };