summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_unsharp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_unsharp.c')
-rw-r--r--libmpcodecs/vf_unsharp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmpcodecs/vf_unsharp.c b/libmpcodecs/vf_unsharp.c
index 4989e2e658..f04647e796 100644
--- a/libmpcodecs/vf_unsharp.c
+++ b/libmpcodecs/vf_unsharp.c
@@ -23,9 +23,9 @@
#include <inttypes.h>
#include <math.h>
-#include "../config.h"
-#include "../mp_msg.h"
-#include "../cpudetect.h"
+#include "config.h"
+#include "mp_msg.h"
+#include "cpudetect.h"
#ifdef HAVE_MALLOC_H
#include <malloc.h>
@@ -34,7 +34,7 @@
#include "img_format.h"
#include "mp_image.h"
#include "vf.h"
-#include "../libvo/fastmemcpy.h"
+#include "libvo/fastmemcpy.h"
#ifndef MIN
#define MIN(a,b) (((a)<(b))?(a):(b))