FFmpeg  4.4.6
Data Structures | Macros | Functions | Variables
noise_bsf.c File Reference
#include <stdlib.h>
#include "bsf.h"
#include "bsf_internal.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"

Go to the source code of this file.

Data Structures

struct  NoiseContext
 

Macros

#define OFFSET(x)   offsetof(NoiseContext, x)
 
#define FLAGS   (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_BSF_PARAM)
 

Functions

static int noise (AVBSFContext *ctx, AVPacket *pkt)
 

Variables

static const AVOption options []
 
static const AVClass noise_class
 
const AVBitStreamFilter ff_noise_bsf
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET (   x)    offsetof(NoiseContext, x)

Definition at line 75 of file noise_bsf.c.

◆ FLAGS

Definition at line 76 of file noise_bsf.c.

Function Documentation

◆ noise()

static int noise ( AVBSFContext ctx,
AVPacket pkt 
)
static

Variable Documentation

◆ options

const AVOption options[]
static
Initial value:
= {
{ "amount", NULL, OFFSET(amount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
{ "dropamount", NULL, OFFSET(dropamount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
{ NULL },
}
#define NULL
Definition: coverity.c:32
@ AV_OPT_TYPE_INT
Definition: opt.h:225
#define FLAGS
Definition: noise_bsf.c:76
#define OFFSET(x)
Definition: noise_bsf.c:75

Definition at line 77 of file noise_bsf.c.

◆ noise_class

const AVClass noise_class
static
Initial value:
= {
.class_name = "noise",
.item_name = av_default_item_name,
.option = options,
}
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
static const AVOption options[]
Definition: noise_bsf.c:77

Definition at line 83 of file noise_bsf.c.

◆ ff_noise_bsf

const AVBitStreamFilter ff_noise_bsf
Initial value:
= {
.name = "noise",
.priv_data_size = sizeof(NoiseContext),
.priv_class = &noise_class,
}
static av_always_inline void filter(int16_t *output, ptrdiff_t out_stride, const int16_t *low, ptrdiff_t low_stride, const int16_t *high, ptrdiff_t high_stride, int len, int clip)
Definition: cfhddsp.c:27
static int noise(AVBSFContext *ctx, AVPacket *pkt)
Definition: noise_bsf.c:36
static const AVClass noise_class
Definition: noise_bsf.c:83

Definition at line 90 of file noise_bsf.c.