summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-28 15:03:23 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-28 15:03:23 +0000
commit64c707788469809fd572ba24c967dd7e1fc2aed8 (patch)
treed6bced1b2eefe6e02512f23c31e2f55609ffe107 /libvo
parentff7fea6500baf2e9a7586f0f371bef2e59d3b855 (diff)
downloadmpv-64c707788469809fd572ba24c967dd7e1fc2aed8.tar.bz2
mpv-64c707788469809fd572ba24c967dd7e1fc2aed8.tar.xz
Me: -sub-bg-* would be nicer. "Background" is usually shortened as "bg", not "bkg".
Arpi: feel free to change... ASAP :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8618 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/sub.c8
-rw-r--r--libvo/sub.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/libvo/sub.c b/libvo/sub.c
index a7a2ec1b7b..fe9385ba93 100644
--- a/libvo/sub.c
+++ b/libvo/sub.c
@@ -40,8 +40,8 @@ int sub_pos=100;
int sub_width_p=100;
int sub_alignment=0; /* 0=top, 1=center, 2=bottom */
int sub_visibility=1;
-int sub_bkg_color=0; /* subtitles background color */
-int sub_bkg_alpha=0;
+int sub_bg_color=0; /* subtitles background color */
+int sub_bg_alpha=0;
// return the real height of a char:
static inline int get_height(int c,int h){
@@ -99,8 +99,8 @@ static void alloc_buf(mp_osd_obj_t* obj)
obj->bitmap_buffer = (unsigned char *)memalign(16, len);
obj->alpha_buffer = (unsigned char *)memalign(16, len);
}
- memset(obj->bitmap_buffer, sub_bkg_color, len);
- memset(obj->alpha_buffer, sub_bkg_alpha, len);
+ memset(obj->bitmap_buffer, sub_bg_color, len);
+ memset(obj->alpha_buffer, sub_bg_alpha, len);
}
// renders the buffer
diff --git a/libvo/sub.h b/libvo/sub.h
index 6e69c4c2e1..6868f59723 100644
--- a/libvo/sub.h
+++ b/libvo/sub.h
@@ -101,8 +101,8 @@ extern int sub_width_p;
extern int sub_alignment;
extern int sub_visibility;
extern int suboverlap_enabled;
-extern int sub_bkg_color; /* subtitles background color */
-extern int sub_bkg_alpha;
+extern int sub_bg_color; /* subtitles background color */
+extern int sub_bg_alpha;
//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));