summaryrefslogtreecommitdiffstats
path: root/libvo/sub.h
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-24 11:42:04 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-24 11:42:04 +0000
commit4ff11b99495e63895791171a82694ed51d62448c (patch)
treeb8c4fa4d36c147dacc0b7e09b132cdd6e3e8e569 /libvo/sub.h
parent9126c8286e950b45eaccccd7937184644ca2496f (diff)
downloadmpv-4ff11b99495e63895791171a82694ed51d62448c.tar.bz2
mpv-4ff11b99495e63895791171a82694ed51d62448c.tar.xz
clean up
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@617 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/sub.h')
-rw-r--r--libvo/sub.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libvo/sub.h b/libvo/sub.h
index 8ab0dcf000..8467cdd9a6 100644
--- a/libvo/sub.h
+++ b/libvo/sub.h
@@ -1,4 +1,9 @@
+#ifndef __MPLAYER_SUB_H
+#define __MPLAYER_SUB_H
+
+#include "../subreader.h"
+
extern font_desc_t* vo_font;
extern unsigned char* vo_osd_text;
@@ -25,4 +30,9 @@ extern subtitle* vo_sub;
#define OSD_PB_END 0x12
#define OSD_PB_1 0x13
+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));
+extern void vo_draw_text(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
+#endif