FFmpeg  4.1.11
noise_bsf.c
Go to the documentation of this file.
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
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.
10  *
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.
15  *
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
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;
35  unsigned int state;
36 } NoiseContext;
37 
39 {
40  NoiseContext *s = ctx->priv_data;
41  int amount = s->amount > 0 ? s->amount : (s->state % 10001 + 1);
42  int i, ret = 0;
43 
44  if (amount <= 0)
45  return AVERROR(EINVAL);
46 
48  av_log(ctx, AV_LOG_ERROR, "Wrapped AVFrame noising is unsupported\n");
49  return AVERROR_PATCHWELCOME;
50  }
51 
52  ret = ff_bsf_get_packet_ref(ctx, pkt);
53  if (ret < 0)
54  return ret;
55 
56  if (s->dropamount > 0 && s->state % s->dropamount == 0) {
57  s->state++;
58  av_packet_unref(pkt);
59  return AVERROR(EAGAIN);
60  }
61 
62  ret = av_packet_make_writable(pkt);
63  if (ret < 0)
64  goto fail;
65 
66  for (i = 0; i < pkt->size; i++) {
67  s->state += pkt->data[i] + 1;
68  if (s->state % amount == 0)
69  pkt->data[i] = s->state;
70  }
71 fail:
72  if (ret < 0)
73  av_packet_unref(pkt);
74 
75  return ret;
76 }
77 
78 #define OFFSET(x) offsetof(NoiseContext, x)
79 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_BSF_PARAM)
80 static const AVOption options[] = {
81  { "amount", NULL, OFFSET(amount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
82  { "dropamount", NULL, OFFSET(dropamount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
83  { NULL },
84 };
85 
86 static const AVClass noise_class = {
87  .class_name = "noise",
88  .item_name = av_default_item_name,
89  .option = options,
90  .version = LIBAVUTIL_VERSION_INT,
91 };
92 
94  .name = "noise",
95  .priv_data_size = sizeof(NoiseContext),
96  .priv_class = &noise_class,
97  .filter = noise,
98 };
#define NULL
Definition: coverity.c:32
static const AVClass noise_class
Definition: noise_bsf.c:86
AVOption.
Definition: opt.h:246
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
Memory handling functions.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3900
The bitstream filter state.
Definition: avcodec.h:5703
int size
Definition: avcodec.h:1446
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
static AVPacket pkt
void * priv_data
Opaque filter-specific private data.
Definition: avcodec.h:5724
#define OFFSET(x)
Definition: noise_bsf.c:78
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
static const AVOption options[]
Definition: noise_bsf.c:80
static void filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, int clip)
Definition: cfhd.c:153
AVOptions.
const char * name
Definition: avcodec.h:5753
uint8_t * data
Definition: avcodec.h:1445
#define av_log(a,...)
int av_packet_make_writable(AVPacket *pkt)
Create a writable reference for the data described by a given packet, avoiding data copy if possible...
Definition: avpacket.c:679
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:258
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AVERROR(e)
Definition: error.h:43
#define fail()
Definition: checkasm.h:117
#define FLAGS
Definition: noise_bsf.c:79
AVFormatContext * ctx
Definition: movenc.c:48
#define s(width, name)
Definition: cbs_vp9.c:257
Passthrough codec, AVFrames wrapped in AVPacket.
Definition: avcodec.h:700
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
Libavcodec external API header.
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:598
unsigned int state
Definition: noise_bsf.c:35
Describe the class of an AVClass context structure.
Definition: log.h:67
static int noise(AVBSFContext *ctx, AVPacket *pkt)
Definition: noise_bsf.c:38
This structure stores compressed data.
Definition: avcodec.h:1422
AVCodecParameters * par_in
Parameters of the input stream.
Definition: avcodec.h:5731
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition: bsf.c:239
int dropamount
Definition: noise_bsf.c:34
const AVBitStreamFilter ff_noise_bsf
Definition: noise_bsf.c:93