summaryrefslogtreecommitdiffstats
path: root/libvo/sub.h
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-27 00:32:24 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-27 00:32:24 +0000
commit180ba6b3554ca9c7b0955fb46738645a7f4b2b5f (patch)
tree9c22a6054a088fc2aeeac0643fd82c4fb179cadf /libvo/sub.h
parent3bdf0810d74da672d4a00ea88a3187e4e80efc04 (diff)
downloadmpv-180ba6b3554ca9c7b0955fb46738645a7f4b2b5f.tar.bz2
mpv-180ba6b3554ca9c7b0955fb46738645a7f4b2b5f.tar.xz
sub/osd interface changes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@219 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/sub.h')
-rw-r--r--libvo/sub.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/libvo/sub.h b/libvo/sub.h
new file mode 100644
index 0000000000..e464b11efc
--- /dev/null
+++ b/libvo/sub.h
@@ -0,0 +1,29 @@
+
+extern font_desc_t* vo_font;
+
+extern unsigned char* vo_osd_text;
+
+extern int vo_osd_progbar_type;
+extern int vo_osd_progbar_value; // 0..255
+
+extern int vo_sub_lines;
+extern unsigned char* vo_sub_text[8];
+
+#define OSD_PLAY 0x01
+#define OSD_PAUSE 0x02
+#define OSD_STOP 0x03
+#define OSD_REW 0x04
+#define OSD_FFW 0x05
+#define OSD_CLOCK 0x06
+#define OSD_CONTRAST 0x07
+#define OSD_SATURATION 0x08
+#define OSD_VOLUME 0x09
+#define OSD_BRIGHTNESS 0x0A
+#define OSD_HUE 0x0B
+
+#define OSD_PB_START 0x10
+#define OSD_PB_0 0x11
+#define OSD_PB_END 0x12
+#define OSD_PB_1 0x13
+
+