From 35b0fb5056175dc548a994b8415c3f50b867228b Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 21 Mar 2006 22:31:49 +0000 Subject: 10l (forgot ...) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17909 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmenu/vf_menu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libmenu') diff --git a/libmenu/vf_menu.c b/libmenu/vf_menu.c index d7da845252..75203fcfdd 100644 --- a/libmenu/vf_menu.c +++ b/libmenu/vf_menu.c @@ -37,7 +37,7 @@ struct vf_priv_s { menu_t* current; }; -static int put_image(struct vf_instance_s* vf, mp_image_t *mpi); +static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts); static mp_image_t* alloc_mpi(int w, int h, uint32_t fmt) { mp_image_t* mpi = new_mp_image(w,h); @@ -76,7 +76,7 @@ static mp_image_t* alloc_mpi(int w, int h, uint32_t fmt) { void vf_menu_pause_update(struct vf_instance_s* vf) { if(pause_mpi) { - put_image(vf,pause_mpi); + put_image(vf,pause_mpi, MP_NOPTS_VALUE); // Don't draw the osd atm //vf->control(vf,VFCTRL_DRAW_OSD,NULL); video_out->flip_page(); @@ -169,7 +169,7 @@ inline static void copy_mpi(mp_image_t *dmpi, mp_image_t *mpi) { -static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ +static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ mp_image_t *dmpi = NULL; if(vf->priv->current->show @@ -231,7 +231,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ dmpi->planes[2] = mpi->planes[2]; dmpi->priv = mpi->priv; } - return vf_next_put_image(vf,dmpi); + return vf_next_put_image(vf,dmpi, pts); } static void uninit(vf_instance_t *vf) { -- cgit v1.2.3