summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorgreg <greg@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-06 10:38:27 +0000
committergreg <greg@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-06 10:38:27 +0000
commit658bcd5e35b04de1a7fb0c2c8178ca8e37b2b1fa (patch)
tree582abc29da3593c718c5f07fa9babe1dc70ebae9 /libvo
parent397c4db88b78e67ad738eeb06ab8848fe79349dd (diff)
downloadmpv-658bcd5e35b04de1a7fb0c2c8178ca8e37b2b1fa.tar.bz2
mpv-658bcd5e35b04de1a7fb0c2c8178ca8e37b2b1fa.tar.xz
Draw EOSD with VOCTRL_DRAW_EOSD instead of along with OSD.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28839 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_vdpau.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_vdpau.c b/libvo/vo_vdpau.c
index 9c935c5f18..4f43c504bd 100644
--- a/libvo/vo_vdpau.c
+++ b/libvo/vo_vdpau.c
@@ -742,7 +742,6 @@ static void draw_osd(void)
{
mp_msg(MSGT_VO, MSGL_DBG2, "DRAW_OSD\n");
- draw_eosd();
vo_draw_text_ext(vo_dwidth, vo_dheight, border_x, border_y, border_x, border_y,
vid_width, vid_height, draw_osd_I8A8);
}
@@ -1140,6 +1139,7 @@ static int control(uint32_t request, void *data, ...)
if (!data)
return VO_FALSE;
generate_eosd(data);
+ draw_eosd();
return VO_TRUE;
case VOCTRL_GET_EOSD_RES: {
mp_eosd_res_t *r = data;