FFmpeg
libavfilter
blend.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2013 Paul B Mahol
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
#ifndef AVFILTER_BLEND_H
22
#define AVFILTER_BLEND_H
23
24
#include "
libavutil/eval.h
"
25
#include "
avfilter.h
"
26
27
enum
BlendMode
{
28
BLEND_UNSET
= -1,
29
BLEND_NORMAL
,
30
BLEND_ADDITION
,
31
BLEND_AND
,
32
BLEND_AVERAGE
,
33
BLEND_BURN
,
34
BLEND_DARKEN
,
35
BLEND_DIFFERENCE
,
36
BLEND_GRAINEXTRACT
,
37
BLEND_DIVIDE
,
38
BLEND_DODGE
,
39
BLEND_EXCLUSION
,
40
BLEND_HARDLIGHT
,
41
BLEND_LIGHTEN
,
42
BLEND_MULTIPLY
,
43
BLEND_NEGATION
,
44
BLEND_OR
,
45
BLEND_OVERLAY
,
46
BLEND_PHOENIX
,
47
BLEND_PINLIGHT
,
48
BLEND_REFLECT
,
49
BLEND_SCREEN
,
50
BLEND_SOFTLIGHT
,
51
BLEND_SUBTRACT
,
52
BLEND_VIVIDLIGHT
,
53
BLEND_XOR
,
54
BLEND_HARDMIX
,
55
BLEND_LINEARLIGHT
,
56
BLEND_GLOW
,
57
BLEND_GRAINMERGE
,
58
BLEND_MULTIPLY128
,
59
BLEND_HEAT
,
60
BLEND_FREEZE
,
61
BLEND_EXTREMITY
,
62
BLEND_SOFTDIFFERENCE
,
63
BLEND_GEOMETRIC
,
64
BLEND_HARMONIC
,
65
BLEND_BLEACH
,
66
BLEND_STAIN
,
67
BLEND_INTERPOLATE
,
68
BLEND_HARDOVERLAY
,
69
BLEND_NB
70
};
71
72
typedef
struct
SliceParams
{
73
double
*
values
;
74
int
starty
;
75
AVExpr
*
e
;
76
}
SliceParams
;
77
78
typedef
struct
FilterParams
{
79
enum
BlendMode
mode
;
80
double
opacity
;
81
AVExpr
**
e
;
82
char
*
expr_str
;
83
void (*
blend
)(
const
uint8_t *top, ptrdiff_t top_linesize,
84
const
uint8_t *bottom, ptrdiff_t bottom_linesize,
85
uint8_t *
dst
, ptrdiff_t dst_linesize,
86
ptrdiff_t
width
, ptrdiff_t
height
,
87
struct
FilterParams
*param,
SliceParams
*sliceparam);
88
}
FilterParams
;
89
90
void
ff_blend_init_x86
(
FilterParams
*param,
int
depth);
91
92
#endif
/* AVFILTER_BLEND_H */
BLEND_GLOW
@ BLEND_GLOW
Definition:
blend.h:56
BLEND_EXCLUSION
@ BLEND_EXCLUSION
Definition:
blend.h:39
SliceParams::values
double * values
Definition:
blend.h:73
FilterParams::expr_str
char * expr_str
Definition:
blend.h:82
BLEND_NEGATION
@ BLEND_NEGATION
Definition:
blend.h:43
BLEND_HARMONIC
@ BLEND_HARMONIC
Definition:
blend.h:64
BLEND_ADDITION
@ BLEND_ADDITION
Definition:
blend.h:30
BLEND_MULTIPLY128
@ BLEND_MULTIPLY128
Definition:
blend.h:58
BLEND_GEOMETRIC
@ BLEND_GEOMETRIC
Definition:
blend.h:63
BLEND_BLEACH
@ BLEND_BLEACH
Definition:
blend.h:65
BLEND_NB
@ BLEND_NB
Definition:
blend.h:69
BLEND_DIVIDE
@ BLEND_DIVIDE
Definition:
blend.h:37
BLEND_PHOENIX
@ BLEND_PHOENIX
Definition:
blend.h:46
FilterParams::e
AVExpr ** e
Definition:
blend.h:81
BLEND_AND
@ BLEND_AND
Definition:
blend.h:31
BLEND_SOFTLIGHT
@ BLEND_SOFTLIGHT
Definition:
blend.h:50
BLEND_OR
@ BLEND_OR
Definition:
blend.h:44
BLEND_SCREEN
@ BLEND_SCREEN
Definition:
blend.h:49
AVExpr
Definition:
eval.c:158
BLEND_EXTREMITY
@ BLEND_EXTREMITY
Definition:
blend.h:61
BLEND_PINLIGHT
@ BLEND_PINLIGHT
Definition:
blend.h:47
FilterParams::mode
enum BlendMode mode
Definition:
blend.h:79
SliceParams::e
AVExpr * e
Definition:
blend.h:75
BLEND_MULTIPLY
@ BLEND_MULTIPLY
Definition:
blend.h:42
BlendMode
BlendMode
Definition:
blend.h:27
ff_blend_init_x86
void ff_blend_init_x86(FilterParams *param, int depth)
Definition:
vf_blend_init.c:103
BLEND_SUBTRACT
@ BLEND_SUBTRACT
Definition:
blend.h:51
BLEND_FREEZE
@ BLEND_FREEZE
Definition:
blend.h:60
FilterParams
filter data
Definition:
mlp.h:86
BLEND_LIGHTEN
@ BLEND_LIGHTEN
Definition:
blend.h:41
BLEND_HEAT
@ BLEND_HEAT
Definition:
blend.h:59
eval.h
height
#define height
Definition:
dsp.h:85
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition:
dsp.h:83
BLEND_DODGE
@ BLEND_DODGE
Definition:
blend.h:38
FilterParams::blend
void(* blend)(const uint8_t *top, ptrdiff_t top_linesize, const uint8_t *bottom, ptrdiff_t bottom_linesize, uint8_t *dst, ptrdiff_t dst_linesize, ptrdiff_t width, ptrdiff_t height, struct FilterParams *param, SliceParams *sliceparam)
Definition:
blend.h:83
BLEND_INTERPOLATE
@ BLEND_INTERPOLATE
Definition:
blend.h:67
BLEND_HARDLIGHT
@ BLEND_HARDLIGHT
Definition:
blend.h:40
SliceParams
Definition:
blend.h:72
BLEND_STAIN
@ BLEND_STAIN
Definition:
blend.h:66
BLEND_SOFTDIFFERENCE
@ BLEND_SOFTDIFFERENCE
Definition:
blend.h:62
BLEND_VIVIDLIGHT
@ BLEND_VIVIDLIGHT
Definition:
blend.h:52
BLEND_DIFFERENCE
@ BLEND_DIFFERENCE
Definition:
blend.h:35
BLEND_HARDMIX
@ BLEND_HARDMIX
Definition:
blend.h:54
BLEND_GRAINMERGE
@ BLEND_GRAINMERGE
Definition:
blend.h:57
BLEND_HARDOVERLAY
@ BLEND_HARDOVERLAY
Definition:
blend.h:68
avfilter.h
BLEND_XOR
@ BLEND_XOR
Definition:
blend.h:53
BLEND_DARKEN
@ BLEND_DARKEN
Definition:
blend.h:34
BLEND_AVERAGE
@ BLEND_AVERAGE
Definition:
blend.h:32
FilterParams::opacity
double opacity
Definition:
blend.h:80
SliceParams::starty
int starty
Definition:
blend.h:74
BLEND_BURN
@ BLEND_BURN
Definition:
blend.h:33
width
#define width
Definition:
dsp.h:85
BLEND_REFLECT
@ BLEND_REFLECT
Definition:
blend.h:48
BLEND_GRAINEXTRACT
@ BLEND_GRAINEXTRACT
Definition:
blend.h:36
BLEND_UNSET
@ BLEND_UNSET
Definition:
blend.h:28
BLEND_LINEARLIGHT
@ BLEND_LINEARLIGHT
Definition:
blend.h:55
BLEND_NORMAL
@ BLEND_NORMAL
Definition:
blend.h:29
BLEND_OVERLAY
@ BLEND_OVERLAY
Definition:
blend.h:45
Generated on Sat Oct 5 2024 19:22:19 for FFmpeg by
1.8.17