summaryrefslogtreecommitdiffstats
path: root/libvo/vo_vdpau.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-19 18:00:22 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-26 13:04:17 +0200
commit8612c771fcb7321a2d6e0ba79f6f3cf26ee7f70c (patch)
tree9beda246875d7df74496c78f3dace0404260b6ff /libvo/vo_vdpau.c
parent6d65f6889af5c4ad8874f59d97e73053fa31aba5 (diff)
downloadmpv-8612c771fcb7321a2d6e0ba79f6f3cf26ee7f70c.tar.bz2
mpv-8612c771fcb7321a2d6e0ba79f6f3cf26ee7f70c.tar.xz
cleanup: some random minor code simplification and cleanup
Diffstat (limited to 'libvo/vo_vdpau.c')
-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 f8748b5574..68ff7c2573 100644
--- a/libvo/vo_vdpau.c
+++ b/libvo/vo_vdpau.c
@@ -1803,7 +1803,7 @@ static int control(struct vo *vo, uint32_t request, void *data)
draw_eosd(vo);
return VO_TRUE;
case VOCTRL_GET_EOSD_RES: {
- mp_eosd_res_t *r = data;
+ struct mp_eosd_res *r = data;
r->w = vo->dwidth;
r->h = vo->dheight;
r->ml = r->mr = vc->border_x;