From 91dd12b122e0877acb93f6829e708353c6d8903e Mon Sep 17 00:00:00 2001 From: reimar Date: Mon, 16 Mar 2009 14:25:03 +0000 Subject: Check mpi type before returning an DR buffer in get_image, fixes jerkiness with MPEG1/2 and -dr -slices git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28974 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_gl.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libvo') diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c index e1db6622bf..2fa0db5c69 100644 --- a/libvo/vo_gl.c +++ b/libvo/vo_gl.c @@ -765,6 +765,9 @@ static uint32_t get_image(mp_image_t *mpi) { return VO_FALSE; } if (mpi->flags & MP_IMGFLAG_READABLE) return VO_FALSE; + if (mpi->type != MP_IMGTYPE_STATIC && mpi->type != MP_IMGTYPE_TEMP && + (mpi->type != MP_IMGTYPE_NUMBERED || mpi->number)) + return VO_FALSE; if (mesa_buffer) mpi->width = texture_width; else if (ati_hack) { mpi->width = texture_width; -- cgit v1.2.3