FFmpeg
Loading...
Searching...
No Matches
vf_noise.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
3 * Copyright (c) 2013 Paul B Mahol
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef AVFILTER_NOISE_H
23#define AVFILTER_NOISE_H
24
25#include "libavutil/lfg.h"
26#include "avfilter.h"
27
28#define MAX_NOISE 5120
29#define MAX_SHIFT 1024
30#define MAX_RES (MAX_NOISE-MAX_SHIFT)
31
32#define NOISE_UNIFORM 1
33#define NOISE_TEMPORAL 2
34#define NOISE_AVERAGED 8
35#define NOISE_PATTERN 16
36
37typedef struct FilterParams {
39 unsigned flags;
41 int seed;
42 int8_t *noise;
43 const int8_t *prev_shift[MAX_RES][3];
47
48typedef struct NoiseContext {
49 const AVClass *class;
51 int bytewidth[4];
52 int height[4];
54 struct {
56 unsigned flags;
57 } all;
59 void (*line_noise)(uint8_t *dst, const uint8_t *src, const int8_t *noise, int len, int shift);
60 void (*line_noise_avg)(uint8_t *dst, const uint8_t *src, int len, const int8_t * const *shift);
62
63void ff_line_noise_c(uint8_t *dst, const uint8_t *src, const int8_t *noise, int len, int shift);
64void ff_line_noise_avg_c(uint8_t *dst, const uint8_t *src, int len, const int8_t * const *shift);
65
67
68#endif /* AVFILTER_NOISE_H */
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
Main libavfilter public API header.
static int shift(int a, int b)
Definition bonk.c:261
static int noise(AVBSFContext *ctx, AVPacket *pkt)
Definition noise.c:124
Describe the class of an AVClass context structure.
Definition log.h:76
Context structure for the Lagged Fibonacci PRNG.
Definition lfg.h:33
filter data
Definition mlp.h:86
int8_t * noise
Definition vf_noise.h:42
int rand_shift[MAX_RES]
Definition vf_noise.h:44
AVLFG lfg
Definition vf_noise.h:40
int rand_shift_init
Definition vf_noise.h:45
const int8_t * prev_shift[MAX_RES][3]
Definition vf_noise.h:43
unsigned flags
Definition vf_noise.h:39
int height[4]
Definition vf_noise.h:52
struct NoiseContext::@321016275026027314223166305311350163157177202306 all
int slice_threading_impossible
Definition vf_noise.h:53
int nb_planes
Definition vf_noise.h:50
void(* line_noise_avg)(uint8_t *dst, const uint8_t *src, int len, const int8_t *const *shift)
Definition vf_noise.h:60
unsigned flags
Definition vf_noise.h:56
FilterParams param[4]
Definition vf_noise.h:58
int bytewidth[4]
Definition vf_noise.h:51
void(* line_noise)(uint8_t *dst, const uint8_t *src, const int8_t *noise, int len, int shift)
Definition vf_noise.h:59
#define src
Definition vp8dsp.c:248
#define MAX_RES
Definition vf_noise.h:30
void ff_noise_init_x86(NoiseContext *n)
Definition vf_noise.c:107
void ff_line_noise_avg_c(uint8_t *dst, const uint8_t *src, int len, const int8_t *const *shift)
Definition vf_noise.c:180
void ff_line_noise_c(uint8_t *dst, const uint8_t *src, const int8_t *noise, int len, int shift)
Definition vf_noise.c:167
int len