Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
99dac393
Commit
99dac393
authored
Apr 15, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/curves: add support for master component.
parent
357da7ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
20 deletions
+39
-20
filters.texi
doc/filters.texi
+6
-1
vf_curves.c
libavfilter/vf_curves.c
+33
-19
No files found.
doc/filters.texi
View file @
99dac393
...
@@ -2330,6 +2330,11 @@ Available presets are:
...
@@ -2330,6 +2330,11 @@ Available presets are:
@item vintage
@item vintage
@end table
@end table
Default is @code{none}.
Default is @code{none}.
@item master, m
Set the master key points. These points will define a second pass mapping. It
is sometimes called a "luminance" or "value" mapping. It can be used with
@option{r}, @option{g}, @option{b} or @option{all} since it acts like a
post-processing LUT.
@item red, r
@item red, r
Set the key points for the red component.
Set the key points for the red component.
@item green, g
@item green, g
...
@@ -2337,7 +2342,7 @@ Set the key points for the green component.
...
@@ -2337,7 +2342,7 @@ Set the key points for the green component.
@item blue, b
@item blue, b
Set the key points for the blue component.
Set the key points for the blue component.
@item all
@item all
Set the key points for all components.
Set the key points for all components
(not including master)
.
Can be used in addition to the other key points component
Can be used in addition to the other key points component
options. In this case, the unset component(s) will fallback on this
options. In this case, the unset component(s) will fallback on this
@option{all} setting.
@option{all} setting.
...
...
libavfilter/vf_curves.c
View file @
99dac393
...
@@ -51,9 +51,9 @@ enum preset {
...
@@ -51,9 +51,9 @@ enum preset {
typedef
struct
{
typedef
struct
{
const
AVClass
*
class
;
const
AVClass
*
class
;
enum
preset
preset
;
enum
preset
preset
;
char
*
comp_points_str
[
NB_COMP
];
char
*
comp_points_str
[
NB_COMP
+
1
];
char
*
comp_points_str_all
;
char
*
comp_points_str_all
;
uint8_t
graph
[
NB_COMP
][
256
];
uint8_t
graph
[
NB_COMP
+
1
][
256
];
}
CurvesContext
;
}
CurvesContext
;
#define OFFSET(x) offsetof(CurvesContext, x)
#define OFFSET(x) offsetof(CurvesContext, x)
...
@@ -71,6 +71,8 @@ static const AVOption curves_options[] = {
...
@@ -71,6 +71,8 @@ static const AVOption curves_options[] = {
{
"negative"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
PRESET_NEGATIVE
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"preset_name"
},
{
"negative"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
PRESET_NEGATIVE
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"preset_name"
},
{
"strong_contrast"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
PRESET_STRONG_CONTRAST
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"preset_name"
},
{
"strong_contrast"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
PRESET_STRONG_CONTRAST
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"preset_name"
},
{
"vintage"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
PRESET_VINTAGE
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"preset_name"
},
{
"vintage"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
PRESET_VINTAGE
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"preset_name"
},
{
"master"
,
"set master points coordinates"
,
OFFSET
(
comp_points_str
[
NB_COMP
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"m"
,
"set master points coordinates"
,
OFFSET
(
comp_points_str
[
NB_COMP
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"red"
,
"set red points coordinates"
,
OFFSET
(
comp_points_str
[
0
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"red"
,
"set red points coordinates"
,
OFFSET
(
comp_points_str
[
0
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"r"
,
"set red points coordinates"
,
OFFSET
(
comp_points_str
[
0
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"r"
,
"set red points coordinates"
,
OFFSET
(
comp_points_str
[
0
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"green"
,
"set green points coordinates"
,
OFFSET
(
comp_points_str
[
1
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
{
"green"
,
"set green points coordinates"
,
OFFSET
(
comp_points_str
[
1
]),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
.
flags
=
FLAGS
},
...
@@ -87,7 +89,7 @@ static const struct {
...
@@ -87,7 +89,7 @@ static const struct {
const
char
*
r
;
const
char
*
r
;
const
char
*
g
;
const
char
*
g
;
const
char
*
b
;
const
char
*
b
;
const
char
*
all
;
const
char
*
master
;
}
curves_presets
[]
=
{
}
curves_presets
[]
=
{
[
PRESET_COLOR_NEGATIVE
]
=
{
[
PRESET_COLOR_NEGATIVE
]
=
{
"0/1 0.129/1 0.466/0.498 0.725/0 1/0"
,
"0/1 0.129/1 0.466/0.498 0.725/0 1/0"
,
...
@@ -99,13 +101,13 @@ static const struct {
...
@@ -99,13 +101,13 @@ static const struct {
"0.25/0.188 0.38/0.501 0.745/0.815 1/0.815"
,
"0.25/0.188 0.38/0.501 0.745/0.815 1/0.815"
,
"0.231/0.094 0.709/0.874"
,
"0.231/0.094 0.709/0.874"
,
},
},
[
PRESET_DARKER
]
=
{
.
all
=
"0.5/0.4"
},
[
PRESET_DARKER
]
=
{
.
master
=
"0.5/0.4"
},
[
PRESET_INCREASE_CONTRAST
]
=
{
.
all
=
"0.149/0.066 0.831/0.905 0.905/0.98"
},
[
PRESET_INCREASE_CONTRAST
]
=
{
.
master
=
"0.149/0.066 0.831/0.905 0.905/0.98"
},
[
PRESET_LIGHTER
]
=
{
.
all
=
"0.4/0.5"
},
[
PRESET_LIGHTER
]
=
{
.
master
=
"0.4/0.5"
},
[
PRESET_LINEAR_CONTRAST
]
=
{
.
all
=
"0.305/0.286 0.694/0.713"
},
[
PRESET_LINEAR_CONTRAST
]
=
{
.
master
=
"0.305/0.286 0.694/0.713"
},
[
PRESET_MEDIUM_CONTRAST
]
=
{
.
all
=
"0.286/0.219 0.639/0.643"
},
[
PRESET_MEDIUM_CONTRAST
]
=
{
.
master
=
"0.286/0.219 0.639/0.643"
},
[
PRESET_NEGATIVE
]
=
{
.
all
=
"0/1 1/0"
},
[
PRESET_NEGATIVE
]
=
{
.
master
=
"0/1 1/0"
},
[
PRESET_STRONG_CONTRAST
]
=
{
.
all
=
"0.301/0.196 0.592/0.6 0.686/0.737"
},
[
PRESET_STRONG_CONTRAST
]
=
{
.
master
=
"0.301/0.196 0.592/0.6 0.686/0.737"
},
[
PRESET_VINTAGE
]
=
{
[
PRESET_VINTAGE
]
=
{
"0/0.11 0.42/0.51 1/0.95"
,
"0/0.11 0.42/0.51 1/0.95"
,
"0.50/0.48"
,
"0.50/0.48"
,
...
@@ -299,12 +301,12 @@ static av_cold int init(AVFilterContext *ctx)
...
@@ -299,12 +301,12 @@ static av_cold int init(AVFilterContext *ctx)
{
{
int
i
,
j
,
ret
;
int
i
,
j
,
ret
;
CurvesContext
*
curves
=
ctx
->
priv
;
CurvesContext
*
curves
=
ctx
->
priv
;
struct
keypoint
*
comp_points
[
NB_COMP
]
=
{
0
};
struct
keypoint
*
comp_points
[
NB_COMP
+
1
]
=
{
0
};
char
**
pts
=
curves
->
comp_points_str
;
char
**
pts
=
curves
->
comp_points_str
;
const
char
*
allp
=
curves
->
comp_points_str_all
;
const
char
*
allp
=
curves
->
comp_points_str_all
;
if
(
!
allp
&&
curves
->
preset
!=
PRESET_NONE
&&
curves_presets
[
curves
->
preset
].
all
)
//
if (!allp && curves->preset != PRESET_NONE && curves_presets[curves->preset].all)
allp
=
curves_presets
[
curves
->
preset
].
all
;
//
allp = curves_presets[curves->preset].all;
if
(
allp
)
{
if
(
allp
)
{
for
(
i
=
0
;
i
<
NB_COMP
;
i
++
)
{
for
(
i
=
0
;
i
<
NB_COMP
;
i
++
)
{
...
@@ -316,14 +318,20 @@ static av_cold int init(AVFilterContext *ctx)
...
@@ -316,14 +318,20 @@ static av_cold int init(AVFilterContext *ctx)
}
}
if
(
curves
->
preset
!=
PRESET_NONE
)
{
if
(
curves
->
preset
!=
PRESET_NONE
)
{
if
(
!
pts
[
0
])
pts
[
0
]
=
av_strdup
(
curves_presets
[
curves
->
preset
].
r
);
#define SET_COMP_IF_NOT_SET(n, name) do { \
if
(
!
pts
[
1
])
pts
[
1
]
=
av_strdup
(
curves_presets
[
curves
->
preset
].
g
);
if (!pts[n] && curves_presets[curves->preset].name) { \
if
(
!
pts
[
2
])
pts
[
2
]
=
av_strdup
(
curves_presets
[
curves
->
preset
].
b
);
pts[n] = av_strdup(curves_presets[curves->preset].name); \
if
(
!
pts
[
0
]
||
!
pts
[
1
]
||
!
pts
[
2
])
if (!pts[n]) \
return
AVERROR
(
ENOMEM
);
return AVERROR(ENOMEM); \
} \
} while (0)
SET_COMP_IF_NOT_SET
(
0
,
r
);
SET_COMP_IF_NOT_SET
(
1
,
g
);
SET_COMP_IF_NOT_SET
(
2
,
b
);
SET_COMP_IF_NOT_SET
(
3
,
master
);
}
}
for
(
i
=
0
;
i
<
NB_COMP
;
i
++
)
{
for
(
i
=
0
;
i
<
NB_COMP
+
1
;
i
++
)
{
ret
=
parse_points_str
(
ctx
,
comp_points
+
i
,
curves
->
comp_points_str
[
i
]);
ret
=
parse_points_str
(
ctx
,
comp_points
+
i
,
curves
->
comp_points_str
[
i
]);
if
(
ret
<
0
)
if
(
ret
<
0
)
return
ret
;
return
ret
;
...
@@ -332,6 +340,12 @@ static av_cold int init(AVFilterContext *ctx)
...
@@ -332,6 +340,12 @@ static av_cold int init(AVFilterContext *ctx)
return
ret
;
return
ret
;
}
}
if
(
pts
[
NB_COMP
])
{
for
(
i
=
0
;
i
<
NB_COMP
;
i
++
)
for
(
j
=
0
;
j
<
256
;
j
++
)
curves
->
graph
[
i
][
j
]
=
curves
->
graph
[
NB_COMP
][
curves
->
graph
[
i
][
j
]];
}
if
(
av_log_get_level
()
>=
AV_LOG_VERBOSE
)
{
if
(
av_log_get_level
()
>=
AV_LOG_VERBOSE
)
{
for
(
i
=
0
;
i
<
NB_COMP
;
i
++
)
{
for
(
i
=
0
;
i
<
NB_COMP
;
i
++
)
{
struct
keypoint
*
point
=
comp_points
[
i
];
struct
keypoint
*
point
=
comp_points
[
i
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment