From 7d3a813f17f315ff61a063d6fd3d815bf3b8c71e Mon Sep 17 00:00:00 2001 From: reimar Date: Mon, 21 Jan 2008 19:59:27 +0000 Subject: Remove useless casts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25828 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vf_screenshot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmpcodecs') diff --git a/libmpcodecs/vf_screenshot.c b/libmpcodecs/vf_screenshot.c index 88cc8a6323..43e731db5e 100644 --- a/libmpcodecs/vf_screenshot.c +++ b/libmpcodecs/vf_screenshot.c @@ -119,7 +119,7 @@ static void scale_image(struct vf_priv_s* priv, mp_image_t *mpi) dst_stride[0] = priv->stride; dst_stride[1] = dst_stride[2] = 0; if (!priv->buffer) - priv->buffer = (uint8_t*)memalign(16, dst_stride[0]*priv->dh); + priv->buffer = memalign(16, dst_stride[0]*priv->dh); dst[0] = priv->buffer; dst[1] = dst[2] = 0; @@ -132,7 +132,7 @@ static void start_slice(struct vf_instance_s* vf, mp_image_t *mpi){ if (vf->priv->shot) { vf->priv->store_slices = 1; if (!vf->priv->buffer) - vf->priv->buffer = (uint8_t*)memalign(16, vf->priv->stride*vf->priv->dh); + vf->priv->buffer = memalign(16, vf->priv->stride*vf->priv->dh); } } -- cgit v1.2.3