summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorfolke <folke@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-16 15:18:46 +0000
committerfolke <folke@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-16 15:18:46 +0000
commit6523f8ff3d91e1429a4dbccbb2af684a5557eb05 (patch)
treec50cca347378610b0de6d72c0c69466fb5d222f6 /libvo
parent51248df2578963433d04b75218c7c71e23292c46 (diff)
downloadmpv-6523f8ff3d91e1429a4dbccbb2af684a5557eb05.tar.bz2
mpv-6523f8ff3d91e1429a4dbccbb2af684a5557eb05.tar.xz
changes made for vo_aa
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1553 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/Makefile2
-rw-r--r--libvo/sub.h19
2 files changed, 20 insertions, 1 deletions
diff --git a/libvo/Makefile b/libvo/Makefile
index a442e8aa5e..b7e789bae8 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -10,7 +10,7 @@ ifeq ($(TARGET_ARCH_X86),yes)
SRCS += rgb15to16mmx.c yuv2rgb_mmx.c
endif
-CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) -DMPG12PLAY
+CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) -DMPG12PLAY #-Wall
# -I/usr/X11R6/include/
.SUFFIXES: .c .o
diff --git a/libvo/sub.h b/libvo/sub.h
index ad1d1a9b36..80f24a0883 100644
--- a/libvo/sub.h
+++ b/libvo/sub.h
@@ -38,6 +38,25 @@ extern subtitle* vo_sub;
#define OSD_PB_END 0x12
#define OSD_PB_1 0x13
+/* now in textform */
+static char * osd_names[]={
+ "Seekbar",
+ "Play",
+ "Pause",
+ "Stop",
+ "Rewind",
+ "Forward",
+ "Clock",
+ "Contrast",
+ "Saturation",
+ "Volume",
+ "Brightnes",
+ "Hue"
+};
+static char * osd_names_short[] ={ "", "|>", "||", "[]", "<<" , ">>", "", "", "", "", "", ""};
+
+
+
//extern void vo_draw_text_osd(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
//extern void vo_draw_text_progbar(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
//extern void vo_draw_text_sub(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));