# HG changeset patch # User reimar # Date 1227465749 0 # Node ID 7ddd69cf214f617a60cc4e0b4007b33243be5047 # Parent 1081658aa871704dee51599f8723605037e42f93 Lock/unlock surface only once even when drawing many slices. Patch originally by Jim Hauxwell [james dattrax co.uk] diff -r 1081658aa871 -r 7ddd69cf214f libvo/vo_direct3d.c --- a/libvo/vo_direct3d.c Sun Nov 23 18:24:53 2008 +0000 +++ b/libvo/vo_direct3d.c Sun Nov 23 18:42:29 2008 +0000 @@ -162,6 +162,11 @@ mp_msg(MSGT_VO,MSGL_V,"destroy_d3d_context called\r\n"); /* Let's destroy the old (if any) D3D Content */ + if (priv->locked_rect.pBits) { + IDirect3DSurface9_UnlockRect(priv->d3d_surface); + priv->locked_rect.pBits = NULL; + } + if (priv->d3d_surface != NULL) { IDirect3DSurface9_Release (priv->d3d_surface); priv->d3d_surface = NULL; @@ -295,22 +300,26 @@ goto skip_upload; } - /* If the previous if failed, we should draw a packed frame */ + /* If we're here, then we should lock the rect and copy a packed frame */ + if (!priv->locked_rect.pBits) { if (FAILED(IDirect3DSurface9_LockRect(priv->d3d_surface, &priv->locked_rect, NULL, 0))) { mp_msg(MSGT_VO,MSGL_ERR,"Surface lock failure\n"); return VO_ERROR; } + } memcpy_pic(priv->locked_rect.pBits, mpi->planes[0], mpi->stride[0], mpi->height, priv->locked_rect.Pitch, mpi->stride[0]); +skip_upload: + /* This unlock is used for both slice_draw path and render_d3d_frame path. */ if (FAILED(IDirect3DSurface9_UnlockRect(priv->d3d_surface))) { mp_msg(MSGT_VO,MSGL_V,"Surface unlock failure\n"); return VO_ERROR; } + priv->locked_rect.pBits = NULL; -skip_upload: if (FAILED(IDirect3DDevice9_BeginScene(priv->d3d_device))) { mp_msg(MSGT_VO,MSGL_ERR,"BeginScene failed\n"); return VO_ERROR; @@ -596,11 +605,14 @@ char *Dst; /**< Pointer to the destination image */ int UVstride; /**< Stride of the U/V planes */ + /* Lock the offscreen surface if it's not already locked. */ + if (!priv->locked_rect.pBits) { if (FAILED(IDirect3DSurface9_LockRect(priv->d3d_surface, &priv->locked_rect, NULL, 0))) { mp_msg(MSGT_VO,MSGL_V,"Surface lock failure\n"); return VO_FALSE; } + } UVstride = priv->locked_rect.Pitch / 2; @@ -634,11 +646,6 @@ memcpy_pic(Dst, Src, w, h, UVstride, stride[2]); - if (FAILED(IDirect3DSurface9_UnlockRect(priv->d3d_surface))) { - mp_msg(MSGT_VO,MSGL_V,"Surface unlock failure\n"); - return VO_ERROR; - } - return 0; /* Success */ }