summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
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,