summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-08 22:12:57 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-08 22:12:57 +0000
commit1fd91df1ea9c0574c9fdbfb0684011411a0e8486 (patch)
treecf20adcfd7cd0a0e45ca95d244523f9082034d05 /Gui/mplayer
parente26849cee04b7be6e65d18f4fc93c407ca75b946 (diff)
downloadmpv-1fd91df1ea9c0574c9fdbfb0684011411a0e8486.tar.bz2
mpv-1fd91df1ea9c0574c9fdbfb0684011411a0e8486.tar.xz
Unify include paths, -I.. is in CFLAGS.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17145 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/mplayer')
-rw-r--r--Gui/mplayer/common.c30
-rw-r--r--Gui/mplayer/common.h6
-rw-r--r--Gui/mplayer/gtk/about.c6
-rw-r--r--Gui/mplayer/gtk/eq.c16
-rw-r--r--Gui/mplayer/gtk/fs.c10
-rw-r--r--Gui/mplayer/gtk/mb.c6
-rw-r--r--Gui/mplayer/gtk/menu.c16
-rw-r--r--Gui/mplayer/gtk/opts.c22
-rw-r--r--Gui/mplayer/gtk/pl.c8
-rw-r--r--Gui/mplayer/gtk/sb.c8
-rw-r--r--Gui/mplayer/gtk/url.c6
-rw-r--r--Gui/mplayer/menu.c8
-rw-r--r--Gui/mplayer/mw.c36
-rw-r--r--Gui/mplayer/pb.c36
-rw-r--r--Gui/mplayer/play.c28
-rw-r--r--Gui/mplayer/play.h2
-rw-r--r--Gui/mplayer/sw.c12
-rw-r--r--Gui/mplayer/widgets.c10
-rw-r--r--Gui/mplayer/widgets.h8
19 files changed, 137 insertions, 137 deletions
diff --git a/Gui/mplayer/common.c b/Gui/mplayer/common.c
index 12ff1b8b47..dd92522e96 100644
--- a/Gui/mplayer/common.c
+++ b/Gui/mplayer/common.c
@@ -7,24 +7,24 @@
#include <sys/stat.h>
#include <unistd.h>
-#include "../app.h"
-#include "../skin/font.h"
-#include "../skin/skin.h"
-#include "../wm/ws.h"
+#include "app.h"
+#include "skin/font.h"
+#include "skin/skin.h"
+#include "wm/ws.h"
-#include "../../config.h"
-#include "../../help_mp.h"
-#include "../../libvo/x11_common.h"
-#include "../../libvo/fastmemcpy.h"
+#include "../config.h"
+#include "../help_mp.h"
+#include "../libvo/x11_common.h"
+#include "../libvo/fastmemcpy.h"
-#include "../../libmpdemux/stream.h"
-#include "../../mixer.h"
-#include "../../libvo/sub.h"
-#include "../../mplayer.h"
+#include "../libmpdemux/stream.h"
+#include "../mixer.h"
+#include "../libvo/sub.h"
+#include "../mplayer.h"
-#include "../../libmpdemux/demuxer.h"
-#include "../../libmpdemux/stheader.h"
-#include "../../codec-cfg.h"
+#include "../libmpdemux/demuxer.h"
+#include "../libmpdemux/stheader.h"
+#include "../codec-cfg.h"
#include "play.h"
diff --git a/Gui/mplayer/common.h b/Gui/mplayer/common.h
index 46181366fb..4cc6c7e152 100644
--- a/Gui/mplayer/common.h
+++ b/Gui/mplayer/common.h
@@ -7,9 +7,9 @@
#include <sys/stat.h>
#include <unistd.h>
-#include "../app.h"
-#include "../bitmap.h"
-#include "../wm/ws.h"
+#include "app.h"
+#include "bitmap.h"
+#include "wm/ws.h"
extern inline void TranslateFilename( int c,char * tmp );
extern char * Translate( char * str );
diff --git a/Gui/mplayer/gtk/about.c b/Gui/mplayer/gtk/about.c
index 408c53adbe..f77586a0bb 100644
--- a/Gui/mplayer/gtk/about.c
+++ b/Gui/mplayer/gtk/about.c
@@ -1,7 +1,7 @@
-#include "../../app.h"
-#include "../../../config.h"
-#include "../../../help_mp.h"
+#include "../app.h"
+#include "../../config.h"
+#include "../../help_mp.h"
#include "mplayer/pixmaps/about.xpm"
#include "../widgets.h"
diff --git a/Gui/mplayer/gtk/eq.c b/Gui/mplayer/gtk/eq.c
index 11a044dd16..75e55d3e25 100644
--- a/Gui/mplayer/gtk/eq.c
+++ b/Gui/mplayer/gtk/eq.c
@@ -9,16 +9,16 @@
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
-#include "../../app.h"
-#include "../../cfg.h"
+#include "../app.h"
+#include "../cfg.h"
+#include "../help_mp.h"
+#include "../../config.h"
#include "../../help_mp.h"
-#include "../../../config.h"
-#include "../../../help_mp.h"
-#include "../../../mplayer.h"
-#include "../../../libaf/equalizer.h"
-#include "../../../libvo/video_out.h"
+#include "../../mplayer.h"
+#include "../../libaf/equalizer.h"
+#include "../../libvo/video_out.h"
#include "../widgets.h"
-#include "../mplayer.h"
+#include "mplayer.h"
#include "eq.h"
#include "common.h"
diff --git a/Gui/mplayer/gtk/fs.c b/Gui/mplayer/gtk/fs.c
index db1e431a82..00796f1dd9 100644
--- a/Gui/mplayer/gtk/fs.c
+++ b/Gui/mplayer/gtk/fs.c
@@ -12,11 +12,11 @@
#include "mplayer/pixmaps/dir.xpm"
#include "mplayer/pixmaps/file.xpm"
-#include "../../app.h"
-#include "../../interface.h"
-#include "../../../config.h"
-#include "../../../help_mp.h"
-#include "../../../libmpdemux/stream.h"
+#include "../app.h"
+#include "../interface.h"
+#include "../../config.h"
+#include "../../help_mp.h"
+#include "../../libmpdemux/stream.h"
#include "../widgets.h"
#include "fs.h"
diff --git a/Gui/mplayer/gtk/mb.c b/Gui/mplayer/gtk/mb.c
index f075c65d2b..576f53a8b4 100644
--- a/Gui/mplayer/gtk/mb.c
+++ b/Gui/mplayer/gtk/mb.c
@@ -1,7 +1,7 @@
-#include "../../app.h"
-#include "../../../config.h"
-#include "../../../help_mp.h"
+#include "../app.h"
+#include "../../config.h"
+#include "../../help_mp.h"
#include "../pixmaps/error.xpm"
#include "../pixmaps/warning.xpm"
diff --git a/Gui/mplayer/gtk/menu.c b/Gui/mplayer/gtk/menu.c
index 12e668ce59..24933a1fc9 100644
--- a/Gui/mplayer/gtk/menu.c
+++ b/Gui/mplayer/gtk/menu.c
@@ -3,19 +3,19 @@
#include <stdlib.h>
#include <string.h>
-#include "../../../config.h"
-#include "../../../help_mp.h"
-#include "../../../mplayer.h"
-#include "../../../mixer.h"
+#include "../../config.h"
+#include "../../help_mp.h"
+#include "../../mplayer.h"
+#include "../../mixer.h"
-#include "../../app.h"
+#include "../app.h"
#include "menu.h"
#include "../widgets.h"
-#include "../app.h"
+#include "app.h"
-#include "../../../libmpdemux/stream.h"
-#include "../../../libmpdemux/demuxer.h"
+#include "../../libmpdemux/stream.h"
+#include "../../libmpdemux/demuxer.h"
#include "../pixmaps/ab.xpm"
#include "../pixmaps/half.xpm"
diff --git a/Gui/mplayer/gtk/opts.c b/Gui/mplayer/gtk/opts.c
index f940f65862..01974b05ae 100644
--- a/Gui/mplayer/gtk/opts.c
+++ b/Gui/mplayer/gtk/opts.c
@@ -7,15 +7,15 @@
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
-#include "../../../config.h"
-#include "../../../help_mp.h"
-#include "../../../mixer.h"
-#include "../../../libao2/audio_out.h"
-#include "../../../libvo/video_out.h"
-
-#include "../../app.h"
-#include "../../cfg.h"
-#include "../../interface.h"
+#include "../../config.h"
+#include "../../help_mp.h"
+#include "../../mixer.h"
+#include "../../libao2/audio_out.h"
+#include "../../libvo/video_out.h"
+
+#include "../app.h"
+#include "../cfg.h"
+#include "../interface.h"
#include "../widgets.h"
#include "opts.h"
#include "fs.h"
@@ -25,8 +25,8 @@ typedef struct sh_video_t sh_video_t;
typedef struct sh_audio_t sh_audio_t;
// for mpcodecs_[av]d_drivers:
-#include "../../../libmpcodecs/vd.h"
-#include "../../../libmpcodecs/ad.h"
+#include "../../libmpcodecs/vd.h"
+#include "../../libmpcodecs/ad.h"
GtkWidget * Preferences = NULL;
static GtkWidget * AConfig;
diff --git a/Gui/mplayer/gtk/pl.c b/Gui/mplayer/gtk/pl.c
index 19d23d6f1a..1ae6989aa8 100644
--- a/Gui/mplayer/gtk/pl.c
+++ b/Gui/mplayer/gtk/pl.c
@@ -10,11 +10,11 @@
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
-#include "../../../config.h"
-#include "../../../help_mp.h"
-#include "../../libmpdemux/stream.h"
+#include "../../config.h"
+#include "../../help_mp.h"
+#include "../libmpdemux/stream.h"
-#include "../../interface.h"
+#include "../interface.h"
#include "../widgets.h"
#include "pl.h"
#include "common.h"
diff --git a/Gui/mplayer/gtk/sb.c b/Gui/mplayer/gtk/sb.c
index 72809f5196..3ee89b340c 100644
--- a/Gui/mplayer/gtk/sb.c
+++ b/Gui/mplayer/gtk/sb.c
@@ -9,12 +9,12 @@
#include "sb.h"
#include "common.h"
-#include "../../app.h"
-#include "../../../config.h"
-#include "../../../help_mp.h"
+#include "../app.h"
+#include "../../config.h"
+#include "../../help_mp.h"
#include "../widgets.h"
-#include "../app.h"
+#include "app.h"
GtkWidget * SkinList = NULL;
char * sbSelectedSkin=NULL;
diff --git a/Gui/mplayer/gtk/url.c b/Gui/mplayer/gtk/url.c
index 12af4a2805..4d9a37a26b 100644
--- a/Gui/mplayer/gtk/url.c
+++ b/Gui/mplayer/gtk/url.c
@@ -11,10 +11,10 @@
#include "url.h"
#include "common.h"
-#include "../../interface.h"
-#include "../../app.h"
+#include "../interface.h"
+#include "../app.h"
#include "../widgets.h"
-#include "../../help_mp.h"
+#include "../help_mp.h"
GtkWidget * URL = NULL;
diff --git a/Gui/mplayer/menu.c b/Gui/mplayer/menu.c
index 513746c19d..a203950e6f 100644
--- a/Gui/mplayer/menu.c
+++ b/Gui/mplayer/menu.c
@@ -3,10 +3,10 @@
#include <stdio.h>
#include <inttypes.h>
-#include "../app.h"
-#include "../../config.h"
-#include "../../help_mp.h"
-#include "../../mp_msg.h"
+#include "app.h"
+#include "../config.h"
+#include "../help_mp.h"
+#include "../mp_msg.h"
#include "widgets.h"
diff --git a/Gui/mplayer/mw.c b/Gui/mplayer/mw.c
index be623488e9..b87cba41fa 100644
--- a/Gui/mplayer/mw.c
+++ b/Gui/mplayer/mw.c
@@ -7,24 +7,24 @@
#include <sys/stat.h>
#include <unistd.h>
-#include "../app.h"
-#include "../skin/font.h"
-#include "../skin/skin.h"
-#include "../wm/ws.h"
-
-#include "../../config.h"
-#include "../../help_mp.h"
-#include "../../libvo/x11_common.h"
-#include "../../libvo/fastmemcpy.h"
-
-#include "../../libmpdemux/stream.h"
-#include "../../mixer.h"
-#include "../../libvo/sub.h"
-#include "../../mplayer.h"
-
-#include "../../libmpdemux/demuxer.h"
-#include "../../libmpdemux/stheader.h"
-#include "../../codec-cfg.h"
+#include "app.h"
+#include "skin/font.h"
+#include "skin/skin.h"
+#include "wm/ws.h"
+
+#include "../config.h"
+#include "../help_mp.h"
+#include "../libvo/x11_common.h"
+#include "../libvo/fastmemcpy.h"
+
+#include "../libmpdemux/stream.h"
+#include "../mixer.h"
+#include "../libvo/sub.h"
+#include "../mplayer.h"
+
+#include "../libmpdemux/demuxer.h"
+#include "../libmpdemux/stheader.h"
+#include "../codec-cfg.h"
#define GUI_REDRAW_WAIT 375
diff --git a/Gui/mplayer/pb.c b/Gui/mplayer/pb.c
index c5c9fa7b0c..ead422a7f4 100644
--- a/Gui/mplayer/pb.c
+++ b/Gui/mplayer/pb.c
@@ -7,24 +7,24 @@
#include <sys/stat.h>
#include <unistd.h>
-#include "../app.h"
-#include "../skin/font.h"
-#include "../skin/skin.h"
-#include "../wm/ws.h"
-
-#include "../../config.h"
-#include "../../help_mp.h"
-#include "../../libvo/x11_common.h"
-#include "../../libvo/fastmemcpy.h"
-
-#include "../../libmpdemux/stream.h"
-#include "../../mixer.h"
-#include "../../libvo/sub.h"
-#include "../../mplayer.h"
-
-#include "../../libmpdemux/demuxer.h"
-#include "../../libmpdemux/stheader.h"
-#include "../../codec-cfg.h"
+#include "app.h"
+#include "skin/font.h"
+#include "skin/skin.h"
+#include "wm/ws.h"
+
+#include "../config.h"
+#include "../help_mp.h"
+#include "../libvo/x11_common.h"
+#include "../libvo/fastmemcpy.h"
+
+#include "../libmpdemux/stream.h"
+#include "../mixer.h"
+#include "../libvo/sub.h"
+#include "../mplayer.h"
+
+#include "../libmpdemux/demuxer.h"
+#include "../libmpdemux/stheader.h"
+#include "../codec-cfg.h"
#include "play.h"
#include "widgets.h"
diff --git a/Gui/mplayer/play.c b/Gui/mplayer/play.c
index fec350203d..f5ae44654a 100644
--- a/Gui/mplayer/play.c
+++ b/Gui/mplayer/play.c
@@ -7,28 +7,28 @@
#include <unistd.h>
#include <signal.h>
-#include "../wm/ws.h"
-#include "../wm/wsxdnd.h"
-#include "../../config.h"
-#include "../../help_mp.h"
-#include "../../mplayer.h"
-#include "../../libvo/x11_common.h"
-#include "../../libvo/video_out.h"
-#include "../../input/input.h"
+#include "wm/ws.h"
+#include "wm/wsxdnd.h"
+#include "../config.h"
+#include "../help_mp.h"
+#include "../mplayer.h"
+#include "../libvo/x11_common.h"
+#include "../libvo/video_out.h"
+#include "../input/input.h"
-#include "../app.h"
+#include "app.h"
-#include "../wm/wskeys.h"
-#include "../interface.h"
+#include "wm/wskeys.h"
+#include "interface.h"
#include "widgets.h"
#include "./mplayer.h"
#include "play.h"
-#include "../skin/skin.h"
-#include "../skin/font.h"
+#include "skin/skin.h"
+#include "skin/font.h"
-#include "../libmpdemux/stream.h"
+#include "libmpdemux/stream.h"
extern float rel_seek_secs;
extern int abs_seek_pos;
diff --git a/Gui/mplayer/play.h b/Gui/mplayer/play.h
index 60317cd479..97810e3be9 100644
--- a/Gui/mplayer/play.h
+++ b/Gui/mplayer/play.h
@@ -2,7 +2,7 @@
#ifndef __GUI_PLAY_H
#define __GUI_PLAY_H
-#include "../../config.h"
+#include "../config.h"
#include "./mplayer.h"
diff --git a/Gui/mplayer/sw.c b/Gui/mplayer/sw.c
index ed14e6455f..20b6807cac 100644
--- a/Gui/mplayer/sw.c
+++ b/Gui/mplayer/sw.c
@@ -3,13 +3,13 @@
#include <inttypes.h>
-#include "../../config.h"
-#include "../../libvo/x11_common.h"
-#include "../../libvo/fastmemcpy.h"
+#include "../config.h"
+#include "../libvo/x11_common.h"
+#include "../libvo/fastmemcpy.h"
-#include "../app.h"
-#include "../interface.h"
-#include "../../help_mp.h"
+#include "app.h"
+#include "interface.h"
+#include "../help_mp.h"
#include "widgets.h"
int mplSubRender = 0;
diff --git a/Gui/mplayer/widgets.c b/Gui/mplayer/widgets.c
index 907e7c990c..ac18b2d01a 100644
--- a/Gui/mplayer/widgets.c
+++ b/Gui/mplayer/widgets.c
@@ -18,17 +18,17 @@
#include "widgets.h"
#include "./mplayer.h"
-#include "../app.h"
-#include "../wm/ws.h"
+#include "app.h"
+#include "wm/ws.h"
#include "gtk/menu.h"
#include "play.h"
#include "gtk/fs.h"
-#include "../../config.h"
-#include "../../help_mp.h"
-#include "../../mp_msg.h"
+#include "../config.h"
+#include "../help_mp.h"
+#include "../mp_msg.h"
GtkWidget * PopUpMenu = NULL;
diff --git a/Gui/mplayer/widgets.h b/Gui/mplayer/widgets.h
index 6fe1313f77..4eebbf7f93 100644
--- a/Gui/mplayer/widgets.h
+++ b/Gui/mplayer/widgets.h
@@ -7,12 +7,12 @@
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
-#include "../../config.h"
-#include "../../osdep/shmem.h"
+#include "../config.h"
+#include "../osdep/shmem.h"
#include "play.h"
#include "mplayer.h"
-#include "../interface.h"
-#include "../wm/ws.h"
+#include "interface.h"
+#include "wm/ws.h"
#define GTK_MB_SIMPLE 0
#define GTK_MB_MODAL 1