From 59d68cd6151a0ee96d4fa02b62e5b05ae3e9b191 Mon Sep 17 00:00:00 2001 From: "[d.j.a.y] Jerome Blanchi" Date: Sat, 30 Jul 2016 16:05:59 +0200 Subject: [PATCH] Libvje / refactor : mtracer (fix) * clean headers --- veejay-current/veejay-server/libvje/effects/mtracer.c | 7 ++----- veejay-current/veejay-server/libvje/effects/mtracer.h | 5 ----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/veejay-current/veejay-server/libvje/effects/mtracer.c b/veejay-current/veejay-server/libvje/effects/mtracer.c index 198dbce6..751c9bfa 100644 --- a/veejay-current/veejay-server/libvje/effects/mtracer.c +++ b/veejay-current/veejay-server/libvje/effects/mtracer.c @@ -17,15 +17,12 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 , USA. */ -#include -#include -#include + +#include "common.h" #include #include "mtracer.h" -#include "common.h" #include "magicoverlays.h" - static uint8_t *mtrace_buffer[4] = { NULL,NULL,NULL,NULL }; static int mtrace_counter = 0; diff --git a/veejay-current/veejay-server/libvje/effects/mtracer.h b/veejay-current/veejay-server/libvje/effects/mtracer.h index 1412324f..ebe6f686 100644 --- a/veejay-current/veejay-server/libvje/effects/mtracer.h +++ b/veejay-current/veejay-server/libvje/effects/mtracer.h @@ -20,11 +20,6 @@ #ifndef MTRACER_H #define MTRACER_H -#include -#include -#include -#include - vj_effect *mtracer_init(int w, int h); int mtracer_malloc(int w, int h); void mtracer_free();