changeset 1552:ce8e8c342004

changes made for vo_aa
author folke
date Thu, 16 Aug 2001 15:18:46 +0000
parents 267816fbdab3
children 12551899e83f
files DOCS/documentation.html libvo/Makefile libvo/sub.h
diffstat 3 files changed, 29 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/documentation.html	Thu Aug 16 15:17:44 2001 +0000
+++ b/DOCS/documentation.html	Thu Aug 16 15:18:46 2001 +0000
@@ -964,13 +964,15 @@
   If ./configure detects aalib installed, the aalib libvo driver will be built.
   
   You can use some keys in the AA Window to change rendering options:
-        1 : switch fast rendering on/off
-        2 : set dithering mode (none, error distribution, floyd steinberg)
-        3 : invert image
-        4 : decrease contrast
-        5 : increase contrast
-        6 : decrease brightness
-        7 : increase brightness
+        1 : decrease contrast
+        2 : increase contrast
+        3 : decrease brightness
+        4 : increase brightness
+	5 : switch fast rendering on/off
+        6 : set dithering mode (none, error distribution, floyd steinberg)
+        7 : invert image
+	a : toggles between aa and mplayer control)
+
   
 
   The following command line options can be used:
--- a/libvo/Makefile	Thu Aug 16 15:17:44 2001 +0000
+++ b/libvo/Makefile	Thu Aug 16 15:18:46 2001 +0000
@@ -10,7 +10,7 @@
 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
--- a/libvo/sub.h	Thu Aug 16 15:17:44 2001 +0000
+++ b/libvo/sub.h	Thu Aug 16 15:18:46 2001 +0000
@@ -38,6 +38,25 @@
 #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));