summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-15 15:16:12 +0100
committerwm4 <wm4@nowhere>2012-11-16 21:21:14 +0100
commit1fa1ff7880d6e991b67cbcc09a485d8a4b08aaaf (patch)
treed22ed5d7c9518af98092de7d865b127e43f16fd5 /video
parent11ec5f19f231a7706804e283f958365eac1bc35c (diff)
downloadmpv-1fa1ff7880d6e991b67cbcc09a485d8a4b08aaaf.tar.bz2
mpv-1fa1ff7880d6e991b67cbcc09a485d8a4b08aaaf.tar.xz
video/filter: rename vf_eq2 to vf_eq
vf_eq was deleted earlier, which makes the name vf_eq2 even more awkward.
Diffstat (limited to 'video')
-rw-r--r--video/filter/vf.c4
-rw-r--r--video/filter/vf_eq.c (renamed from video/filter/vf_eq2.c)4
2 files changed, 4 insertions, 4 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index cf8866f0ac..ce842868ef 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.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,
diff --git a/video/filter/vf_eq2.c b/video/filter/vf_eq.c
index b39e8b087c..946fa73550 100644
--- a/video/filter/vf_eq2.c
+++ b/video/filter/vf_eq.c
@@ -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,