From d8cfa5534a42f4713b4dedcdaf38f9992fce1943 Mon Sep 17 00:00:00 2001 From: Alan Curry Date: Sun, 23 Jul 2006 21:16:11 +0000 Subject: [PATCH] Fix typo introduced in the memalign->av_malloc conversion (there is no mv_malloc) Originally committed as revision 19174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/swscale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/swscale.c b/libswscale/swscale.c index b9e810d2c2..f45a4dfa46 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2129,7 +2129,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int origSrcFormat, int dstW, int #ifdef HAVE_ALTIVEC c->vYCoeffsBank = av_malloc(sizeof (vector signed short)*c->vLumFilterSize*c->dstH); - c->vCCoeffsBank = mv_malloc(sizeof (vector signed short)*c->vChrFilterSize*c->chrDstH); + c->vCCoeffsBank = av_malloc(sizeof (vector signed short)*c->vChrFilterSize*c->chrDstH); for (i=0;ivLumFilterSize*c->dstH;i++) { int j;