mirror of
https://github.com/mpv-player/mpv
synced 2025-02-21 15:27:00 +00:00
video/filter: rename vf_eq2 to vf_eq
vf_eq was deleted earlier, which makes the name vf_eq2 even more awkward.
This commit is contained in:
parent
11ec5f19f2
commit
1fa1ff7880
@ -170,7 +170,7 @@ c
|
||||
Change YUV colorspace.
|
||||
|
||||
(The following keys are valid only when using a video output that supports the
|
||||
corresponding adjustment, or the software equalizer (``--vf=eq2``).)
|
||||
corresponding adjustment, or the software equalizer (``--vf=eq``).)
|
||||
|
||||
1 and 2
|
||||
Adjust contrast.
|
||||
@ -351,7 +351,7 @@ as the file played and then tries to load any file-specific configuration.
|
||||
| # start with mf://filemask
|
||||
| mf=type=png:fps=25
|
||||
| # Eerie negative images are cool.
|
||||
| vf=eq2=1.0:-0.8
|
||||
| vf=eq=1.0:-0.8
|
||||
|
||||
|
||||
PROFILES
|
||||
|
@ -405,7 +405,7 @@ hqdn3d[=luma_spatial:chroma_spatial:luma_tmp:chroma_tmp]
|
||||
chroma temporal strength (default:
|
||||
``luma_tmp*chroma_spatial/luma_spatial``)
|
||||
|
||||
eq2[=gamma:contrast:brightness:saturation:rg:gg:bg:weight]
|
||||
eq[=gamma:contrast:brightness:saturation:rg:gg:bg:weight]
|
||||
Software equalizer that uses lookup tables (slow),
|
||||
allowing gamma correction in addition to simple brightness and contrast
|
||||
adjustment. The parameters are given as floating point
|
||||
|
2
Makefile
2
Makefile
@ -243,7 +243,7 @@ SOURCES = talloc.c \
|
||||
video/filter/vf_dlopen.c \
|
||||
video/filter/vf_down3dright.c \
|
||||
video/filter/vf_dsize.c \
|
||||
video/filter/vf_eq2.c \
|
||||
video/filter/vf_eq.c \
|
||||
video/filter/vf_expand.c \
|
||||
video/filter/vf_flip.c \
|
||||
video/filter/vf_format.c \
|
||||
|
@ -48,7 +48,7 @@ extern const vf_info_t vf_info_flip;
|
||||
extern const vf_info_t vf_info_rotate;
|
||||
extern const vf_info_t vf_info_mirror;
|
||||
extern const vf_info_t vf_info_noise;
|
||||
extern const vf_info_t vf_info_eq2;
|
||||
extern const vf_info_t vf_info_eq;
|
||||
extern const vf_info_t vf_info_gradfun;
|
||||
extern const vf_info_t vf_info_unsharp;
|
||||
extern const vf_info_t vf_info_swapuv;
|
||||
@ -89,7 +89,7 @@ static const vf_info_t *const filter_list[] = {
|
||||
&vf_info_screenshot_force,
|
||||
|
||||
&vf_info_noise,
|
||||
&vf_info_eq2,
|
||||
&vf_info_eq,
|
||||
&vf_info_gradfun,
|
||||
&vf_info_unsharp,
|
||||
&vf_info_swapuv,
|
||||
|
@ -509,9 +509,9 @@ int vf_open(vf_instance_t *vf, char *args)
|
||||
return 1;
|
||||
}
|
||||
|
||||
const vf_info_t vf_info_eq2 = {
|
||||
const vf_info_t vf_info_eq = {
|
||||
"Software equalizer",
|
||||
"eq2",
|
||||
"eq",
|
||||
"Hampa Hug, Daniel Moreno, Richard Felker",
|
||||
"",
|
||||
&vf_open,
|
Loading…
Reference in New Issue
Block a user